/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a value for a resource attribute that is a String.See
* Also:
AWS
* API Reference
The attribute value. The value is case-sensitive.
*/ inline const Aws::String& GetValue() const{ return m_value; } /** *The attribute value. The value is case-sensitive.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The attribute value. The value is case-sensitive.
*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *The attribute value. The value is case-sensitive.
*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The attribute value. The value is case-sensitive.
*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *The attribute value. The value is case-sensitive.
*/ inline AttributeValue& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *The attribute value. The value is case-sensitive.
*/ inline AttributeValue& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *The attribute value. The value is case-sensitive.
*/ inline AttributeValue& WithValue(const char* value) { SetValue(value); return *this;} private: Aws::String m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws