/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Object for a group of fields and associated properties.See
* Also:
AWS
* API Reference
Represents an ordered list containing field related information.
*/ inline const Aws::VectorRepresents an ordered list containing field related information.
*/ inline bool FieldsHasBeenSet() const { return m_fieldsHasBeenSet; } /** *Represents an ordered list containing field related information.
*/ inline void SetFields(const Aws::VectorRepresents an ordered list containing field related information.
*/ inline void SetFields(Aws::VectorRepresents an ordered list containing field related information.
*/ inline FieldGroup& WithFields(const Aws::VectorRepresents an ordered list containing field related information.
*/ inline FieldGroup& WithFields(Aws::VectorRepresents an ordered list containing field related information.
*/ inline FieldGroup& AddFields(const FieldItem& value) { m_fieldsHasBeenSet = true; m_fields.push_back(value); return *this; } /** *Represents an ordered list containing field related information.
*/ inline FieldGroup& AddFields(FieldItem&& value) { m_fieldsHasBeenSet = true; m_fields.push_back(std::move(value)); return *this; } /** *Name of the field group.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *Name of the field group.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *Name of the field group.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *Name of the field group.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *Name of the field group.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *Name of the field group.
*/ inline FieldGroup& WithName(const Aws::String& value) { SetName(value); return *this;} /** *Name of the field group.
*/ inline FieldGroup& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *Name of the field group.
*/ inline FieldGroup& WithName(const char* value) { SetName(value); return *this;} private: Aws::Vector