/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about a parameter object.See Also:
AWS
* API Reference
The ID of the parameter object.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The ID of the parameter object.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The ID of the parameter object.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The ID of the parameter object.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The ID of the parameter object.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The ID of the parameter object.
*/ inline ParameterObject& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The ID of the parameter object.
*/ inline ParameterObject& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The ID of the parameter object.
*/ inline ParameterObject& WithId(const char* value) { SetId(value); return *this;} /** *The attributes of the parameter object.
*/ inline const Aws::VectorThe attributes of the parameter object.
*/ inline bool AttributesHasBeenSet() const { return m_attributesHasBeenSet; } /** *The attributes of the parameter object.
*/ inline void SetAttributes(const Aws::VectorThe attributes of the parameter object.
*/ inline void SetAttributes(Aws::VectorThe attributes of the parameter object.
*/ inline ParameterObject& WithAttributes(const Aws::VectorThe attributes of the parameter object.
*/ inline ParameterObject& WithAttributes(Aws::VectorThe attributes of the parameter object.
*/ inline ParameterObject& AddAttributes(const ParameterAttribute& value) { m_attributesHasBeenSet = true; m_attributes.push_back(value); return *this; } /** *The attributes of the parameter object.
*/ inline ParameterObject& AddAttributes(ParameterAttribute&& value) { m_attributesHasBeenSet = true; m_attributes.push_back(std::move(value)); return *this; } private: Aws::String m_id; bool m_idHasBeenSet = false; Aws::Vector