/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Metadata associated with a network package. A network package is a
* .zip file in CSAR (Cloud Service Archive) format defines the function packages
* you want to deploy and the Amazon Web Services infrastructure you want to deploy
* them on.See Also:
AWS
* API Reference
The date that the resource was created.
*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *The date that the resource was created.
*/ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** *The date that the resource was created.
*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** *The date that the resource was created.
*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** *The date that the resource was created.
*/ inline GetSolNetworkPackageMetadata& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *The date that the resource was created.
*/ inline GetSolNetworkPackageMetadata& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *The date that the resource was last modified.
*/ inline const Aws::Utils::DateTime& GetLastModified() const{ return m_lastModified; } /** *The date that the resource was last modified.
*/ inline bool LastModifiedHasBeenSet() const { return m_lastModifiedHasBeenSet; } /** *The date that the resource was last modified.
*/ inline void SetLastModified(const Aws::Utils::DateTime& value) { m_lastModifiedHasBeenSet = true; m_lastModified = value; } /** *The date that the resource was last modified.
*/ inline void SetLastModified(Aws::Utils::DateTime&& value) { m_lastModifiedHasBeenSet = true; m_lastModified = std::move(value); } /** *The date that the resource was last modified.
*/ inline GetSolNetworkPackageMetadata& WithLastModified(const Aws::Utils::DateTime& value) { SetLastModified(value); return *this;} /** *The date that the resource was last modified.
*/ inline GetSolNetworkPackageMetadata& WithLastModified(Aws::Utils::DateTime&& value) { SetLastModified(std::move(value)); return *this;} /** *Metadata related to the onboarded network service descriptor in the network * package.
*/ inline const NetworkArtifactMeta& GetNsd() const{ return m_nsd; } /** *Metadata related to the onboarded network service descriptor in the network * package.
*/ inline bool NsdHasBeenSet() const { return m_nsdHasBeenSet; } /** *Metadata related to the onboarded network service descriptor in the network * package.
*/ inline void SetNsd(const NetworkArtifactMeta& value) { m_nsdHasBeenSet = true; m_nsd = value; } /** *Metadata related to the onboarded network service descriptor in the network * package.
*/ inline void SetNsd(NetworkArtifactMeta&& value) { m_nsdHasBeenSet = true; m_nsd = std::move(value); } /** *Metadata related to the onboarded network service descriptor in the network * package.
*/ inline GetSolNetworkPackageMetadata& WithNsd(const NetworkArtifactMeta& value) { SetNsd(value); return *this;} /** *Metadata related to the onboarded network service descriptor in the network * package.
*/ inline GetSolNetworkPackageMetadata& WithNsd(NetworkArtifactMeta&& value) { SetNsd(std::move(value)); return *this;} private: Aws::Utils::DateTime m_createdAt; bool m_createdAtHasBeenSet = false; Aws::Utils::DateTime m_lastModified; bool m_lastModifiedHasBeenSet = false; NetworkArtifactMeta m_nsd; bool m_nsdHasBeenSet = false; }; } // namespace Model } // namespace tnb } // namespace Aws