/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes an attribute value.See Also:
AWS
* API Reference
The value of the attribute.
*/ inline const Aws::String& GetAttributeValue() const{ return m_attributeValue; } /** *The value of the attribute.
*/ inline bool AttributeValueHasBeenSet() const { return m_attributeValueHasBeenSet; } /** *The value of the attribute.
*/ inline void SetAttributeValue(const Aws::String& value) { m_attributeValueHasBeenSet = true; m_attributeValue = value; } /** *The value of the attribute.
*/ inline void SetAttributeValue(Aws::String&& value) { m_attributeValueHasBeenSet = true; m_attributeValue = std::move(value); } /** *The value of the attribute.
*/ inline void SetAttributeValue(const char* value) { m_attributeValueHasBeenSet = true; m_attributeValue.assign(value); } /** *The value of the attribute.
*/ inline AttributeValueTarget& WithAttributeValue(const Aws::String& value) { SetAttributeValue(value); return *this;} /** *The value of the attribute.
*/ inline AttributeValueTarget& WithAttributeValue(Aws::String&& value) { SetAttributeValue(std::move(value)); return *this;} /** *The value of the attribute.
*/ inline AttributeValueTarget& WithAttributeValue(const char* value) { SetAttributeValue(value); return *this;} private: Aws::String m_attributeValue; bool m_attributeValueHasBeenSet = false; }; } // namespace Model } // namespace Redshift } // namespace Aws