/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Mathematical expression and a list of attribute items specified in that
* expression.See Also:
AWS
* API Reference
A list of attribute items specified in the mathematical expression.
*/ inline const Aws::VectorA list of attribute items specified in the mathematical expression.
*/ inline bool AttributesHasBeenSet() const { return m_attributesHasBeenSet; } /** *A list of attribute items specified in the mathematical expression.
*/ inline void SetAttributes(const Aws::VectorA list of attribute items specified in the mathematical expression.
*/ inline void SetAttributes(Aws::VectorA list of attribute items specified in the mathematical expression.
*/ inline AttributeDetails& WithAttributes(const Aws::VectorA list of attribute items specified in the mathematical expression.
*/ inline AttributeDetails& WithAttributes(Aws::VectorA list of attribute items specified in the mathematical expression.
*/ inline AttributeDetails& AddAttributes(const AttributeItem& value) { m_attributesHasBeenSet = true; m_attributes.push_back(value); return *this; } /** *A list of attribute items specified in the mathematical expression.
*/ inline AttributeDetails& AddAttributes(AttributeItem&& value) { m_attributesHasBeenSet = true; m_attributes.push_back(std::move(value)); return *this; } /** *Mathematical expression that is performed on attribute items provided in the * attribute list. Each element in the expression should follow the structure of * \"{ObjectTypeName.AttributeName}\".
*/ inline const Aws::String& GetExpression() const{ return m_expression; } /** *Mathematical expression that is performed on attribute items provided in the * attribute list. Each element in the expression should follow the structure of * \"{ObjectTypeName.AttributeName}\".
*/ inline bool ExpressionHasBeenSet() const { return m_expressionHasBeenSet; } /** *Mathematical expression that is performed on attribute items provided in the * attribute list. Each element in the expression should follow the structure of * \"{ObjectTypeName.AttributeName}\".
*/ inline void SetExpression(const Aws::String& value) { m_expressionHasBeenSet = true; m_expression = value; } /** *Mathematical expression that is performed on attribute items provided in the * attribute list. Each element in the expression should follow the structure of * \"{ObjectTypeName.AttributeName}\".
*/ inline void SetExpression(Aws::String&& value) { m_expressionHasBeenSet = true; m_expression = std::move(value); } /** *Mathematical expression that is performed on attribute items provided in the * attribute list. Each element in the expression should follow the structure of * \"{ObjectTypeName.AttributeName}\".
*/ inline void SetExpression(const char* value) { m_expressionHasBeenSet = true; m_expression.assign(value); } /** *Mathematical expression that is performed on attribute items provided in the * attribute list. Each element in the expression should follow the structure of * \"{ObjectTypeName.AttributeName}\".
*/ inline AttributeDetails& WithExpression(const Aws::String& value) { SetExpression(value); return *this;} /** *Mathematical expression that is performed on attribute items provided in the * attribute list. Each element in the expression should follow the structure of * \"{ObjectTypeName.AttributeName}\".
*/ inline AttributeDetails& WithExpression(Aws::String&& value) { SetExpression(std::move(value)); return *this;} /** *Mathematical expression that is performed on attribute items provided in the * attribute list. Each element in the expression should follow the structure of * \"{ObjectTypeName.AttributeName}\".
*/ inline AttributeDetails& WithExpression(const char* value) { SetExpression(value); return *this;} private: Aws::Vector