/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace tnb { namespace Model { /** *

Details of resource associated with a network function.

A network * instance is a single network created in Amazon Web Services TNB that can be * deployed and on which life-cycle operations (like terminate, update, and delete) * can be performed.

See Also:

AWS * API Reference

*/ class GetSolVnfcResourceInfo { public: AWS_TNB_API GetSolVnfcResourceInfo(); AWS_TNB_API GetSolVnfcResourceInfo(Aws::Utils::Json::JsonView jsonValue); AWS_TNB_API GetSolVnfcResourceInfo& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_TNB_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The metadata of the network function compute.

*/ inline const GetSolVnfcResourceInfoMetadata& GetMetadata() const{ return m_metadata; } /** *

The metadata of the network function compute.

*/ inline bool MetadataHasBeenSet() const { return m_metadataHasBeenSet; } /** *

The metadata of the network function compute.

*/ inline void SetMetadata(const GetSolVnfcResourceInfoMetadata& value) { m_metadataHasBeenSet = true; m_metadata = value; } /** *

The metadata of the network function compute.

*/ inline void SetMetadata(GetSolVnfcResourceInfoMetadata&& value) { m_metadataHasBeenSet = true; m_metadata = std::move(value); } /** *

The metadata of the network function compute.

*/ inline GetSolVnfcResourceInfo& WithMetadata(const GetSolVnfcResourceInfoMetadata& value) { SetMetadata(value); return *this;} /** *

The metadata of the network function compute.

*/ inline GetSolVnfcResourceInfo& WithMetadata(GetSolVnfcResourceInfoMetadata&& value) { SetMetadata(std::move(value)); return *this;} private: GetSolVnfcResourceInfoMetadata m_metadata; bool m_metadataHasBeenSet = false; }; } // namespace Model } // namespace tnb } // namespace Aws