/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The details related to the resource. See Also:
AWS
* API Reference
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