/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes an account attribute.See Also:
AWS
* API Reference
The name of the account attribute.
*/ inline const Aws::String& GetAttributeName() const{ return m_attributeName; } /** *The name of the account attribute.
*/ inline bool AttributeNameHasBeenSet() const { return m_attributeNameHasBeenSet; } /** *The name of the account attribute.
*/ inline void SetAttributeName(const Aws::String& value) { m_attributeNameHasBeenSet = true; m_attributeName = value; } /** *The name of the account attribute.
*/ inline void SetAttributeName(Aws::String&& value) { m_attributeNameHasBeenSet = true; m_attributeName = std::move(value); } /** *The name of the account attribute.
*/ inline void SetAttributeName(const char* value) { m_attributeNameHasBeenSet = true; m_attributeName.assign(value); } /** *The name of the account attribute.
*/ inline AccountAttribute& WithAttributeName(const Aws::String& value) { SetAttributeName(value); return *this;} /** *The name of the account attribute.
*/ inline AccountAttribute& WithAttributeName(Aws::String&& value) { SetAttributeName(std::move(value)); return *this;} /** *The name of the account attribute.
*/ inline AccountAttribute& WithAttributeName(const char* value) { SetAttributeName(value); return *this;} /** *The values for the account attribute.
*/ inline const Aws::VectorThe values for the account attribute.
*/ inline bool AttributeValuesHasBeenSet() const { return m_attributeValuesHasBeenSet; } /** *The values for the account attribute.
*/ inline void SetAttributeValues(const Aws::VectorThe values for the account attribute.
*/ inline void SetAttributeValues(Aws::VectorThe values for the account attribute.
*/ inline AccountAttribute& WithAttributeValues(const Aws::VectorThe values for the account attribute.
*/ inline AccountAttribute& WithAttributeValues(Aws::VectorThe values for the account attribute.
*/ inline AccountAttribute& AddAttributeValues(const AccountAttributeValue& value) { m_attributeValuesHasBeenSet = true; m_attributeValues.push_back(value); return *this; } /** *The values for the account attribute.
*/ inline AccountAttribute& AddAttributeValues(AccountAttributeValue&& value) { m_attributeValuesHasBeenSet = true; m_attributeValues.push_back(std::move(value)); return *this; } private: Aws::String m_attributeName; bool m_attributeNameHasBeenSet = false; Aws::Vector