/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains an array.See Also:
AWS
* API Reference
An array of Boolean values.
*/ inline const Aws::VectorAn array of Boolean values.
*/ inline bool BooleanValuesHasBeenSet() const { return m_booleanValuesHasBeenSet; } /** *An array of Boolean values.
*/ inline void SetBooleanValues(const Aws::VectorAn array of Boolean values.
*/ inline void SetBooleanValues(Aws::VectorAn array of Boolean values.
*/ inline ArrayValue& WithBooleanValues(const Aws::VectorAn array of Boolean values.
*/ inline ArrayValue& WithBooleanValues(Aws::VectorAn array of Boolean values.
*/ inline ArrayValue& AddBooleanValues(bool value) { m_booleanValuesHasBeenSet = true; m_booleanValues.push_back(value); return *this; } /** *An array of integers.
*/ inline const Aws::VectorAn array of integers.
*/ inline bool LongValuesHasBeenSet() const { return m_longValuesHasBeenSet; } /** *An array of integers.
*/ inline void SetLongValues(const Aws::VectorAn array of integers.
*/ inline void SetLongValues(Aws::VectorAn array of integers.
*/ inline ArrayValue& WithLongValues(const Aws::VectorAn array of integers.
*/ inline ArrayValue& WithLongValues(Aws::VectorAn array of integers.
*/ inline ArrayValue& AddLongValues(long long value) { m_longValuesHasBeenSet = true; m_longValues.push_back(value); return *this; } /** *An array of floating-point numbers.
*/ inline const Aws::VectorAn array of floating-point numbers.
*/ inline bool DoubleValuesHasBeenSet() const { return m_doubleValuesHasBeenSet; } /** *An array of floating-point numbers.
*/ inline void SetDoubleValues(const Aws::VectorAn array of floating-point numbers.
*/ inline void SetDoubleValues(Aws::VectorAn array of floating-point numbers.
*/ inline ArrayValue& WithDoubleValues(const Aws::VectorAn array of floating-point numbers.
*/ inline ArrayValue& WithDoubleValues(Aws::VectorAn array of floating-point numbers.
*/ inline ArrayValue& AddDoubleValues(double value) { m_doubleValuesHasBeenSet = true; m_doubleValues.push_back(value); return *this; } /** *An array of strings.
*/ inline const Aws::VectorAn array of strings.
*/ inline bool StringValuesHasBeenSet() const { return m_stringValuesHasBeenSet; } /** *An array of strings.
*/ inline void SetStringValues(const Aws::VectorAn array of strings.
*/ inline void SetStringValues(Aws::VectorAn array of strings.
*/ inline ArrayValue& WithStringValues(const Aws::VectorAn array of strings.
*/ inline ArrayValue& WithStringValues(Aws::VectorAn array of strings.
*/ inline ArrayValue& AddStringValues(const Aws::String& value) { m_stringValuesHasBeenSet = true; m_stringValues.push_back(value); return *this; } /** *An array of strings.
*/ inline ArrayValue& AddStringValues(Aws::String&& value) { m_stringValuesHasBeenSet = true; m_stringValues.push_back(std::move(value)); return *this; } /** *An array of strings.
*/ inline ArrayValue& AddStringValues(const char* value) { m_stringValuesHasBeenSet = true; m_stringValues.push_back(value); return *this; } /** *An array of arrays.
*/ inline const Aws::VectorAn array of arrays.
*/ inline bool ArrayValuesHasBeenSet() const { return m_arrayValuesHasBeenSet; } /** *An array of arrays.
*/ inline void SetArrayValues(const Aws::VectorAn array of arrays.
*/ inline void SetArrayValues(Aws::VectorAn array of arrays.
*/ inline ArrayValue& WithArrayValues(const Aws::VectorAn array of arrays.
*/ inline ArrayValue& WithArrayValues(Aws::VectorAn array of arrays.
*/ inline ArrayValue& AddArrayValues(const ArrayValue& value) { m_arrayValuesHasBeenSet = true; m_arrayValues.push_back(value); return *this; } /** *An array of arrays.
*/ inline ArrayValue& AddArrayValues(ArrayValue&& value) { m_arrayValuesHasBeenSet = true; m_arrayValues.push_back(std::move(value)); return *this; } private: Aws::Vector