/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace DataPipeline { namespace Model { /** *

Contains information about a parameter object.

See Also:

AWS * API Reference

*/ class ParameterObject { public: AWS_DATAPIPELINE_API ParameterObject(); AWS_DATAPIPELINE_API ParameterObject(Aws::Utils::Json::JsonView jsonValue); AWS_DATAPIPELINE_API ParameterObject& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_DATAPIPELINE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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::Vector& GetAttributes() const{ return m_attributes; } /** *

The attributes of the parameter object.

*/ inline bool AttributesHasBeenSet() const { return m_attributesHasBeenSet; } /** *

The attributes of the parameter object.

*/ inline void SetAttributes(const Aws::Vector& value) { m_attributesHasBeenSet = true; m_attributes = value; } /** *

The attributes of the parameter object.

*/ inline void SetAttributes(Aws::Vector&& value) { m_attributesHasBeenSet = true; m_attributes = std::move(value); } /** *

The attributes of the parameter object.

*/ inline ParameterObject& WithAttributes(const Aws::Vector& value) { SetAttributes(value); return *this;} /** *

The attributes of the parameter object.

*/ inline ParameterObject& WithAttributes(Aws::Vector&& value) { SetAttributes(std::move(value)); return *this;} /** *

The 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 m_attributes; bool m_attributesHasBeenSet = false; }; } // namespace Model } // namespace DataPipeline } // namespace Aws