/** * 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 AppRegistry { namespace Model { /** *

The details related to the resource.

See Also:

AWS * API Reference

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

The value of the tag.

*/ inline const Aws::String& GetTagValue() const{ return m_tagValue; } /** *

The value of the tag.

*/ inline bool TagValueHasBeenSet() const { return m_tagValueHasBeenSet; } /** *

The value of the tag.

*/ inline void SetTagValue(const Aws::String& value) { m_tagValueHasBeenSet = true; m_tagValue = value; } /** *

The value of the tag.

*/ inline void SetTagValue(Aws::String&& value) { m_tagValueHasBeenSet = true; m_tagValue = std::move(value); } /** *

The value of the tag.

*/ inline void SetTagValue(const char* value) { m_tagValueHasBeenSet = true; m_tagValue.assign(value); } /** *

The value of the tag.

*/ inline ResourceDetails& WithTagValue(const Aws::String& value) { SetTagValue(value); return *this;} /** *

The value of the tag.

*/ inline ResourceDetails& WithTagValue(Aws::String&& value) { SetTagValue(std::move(value)); return *this;} /** *

The value of the tag.

*/ inline ResourceDetails& WithTagValue(const char* value) { SetTagValue(value); return *this;} private: Aws::String m_tagValue; bool m_tagValueHasBeenSet = false; }; } // namespace Model } // namespace AppRegistry } // namespace Aws