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

Describes the execution properties for an Apache Flink runtime.

See * Also:

AWS * API Reference

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

Describes the execution property groups.

*/ inline const Aws::Vector& GetPropertyGroupDescriptions() const{ return m_propertyGroupDescriptions; } /** *

Describes the execution property groups.

*/ inline bool PropertyGroupDescriptionsHasBeenSet() const { return m_propertyGroupDescriptionsHasBeenSet; } /** *

Describes the execution property groups.

*/ inline void SetPropertyGroupDescriptions(const Aws::Vector& value) { m_propertyGroupDescriptionsHasBeenSet = true; m_propertyGroupDescriptions = value; } /** *

Describes the execution property groups.

*/ inline void SetPropertyGroupDescriptions(Aws::Vector&& value) { m_propertyGroupDescriptionsHasBeenSet = true; m_propertyGroupDescriptions = std::move(value); } /** *

Describes the execution property groups.

*/ inline EnvironmentPropertyDescriptions& WithPropertyGroupDescriptions(const Aws::Vector& value) { SetPropertyGroupDescriptions(value); return *this;} /** *

Describes the execution property groups.

*/ inline EnvironmentPropertyDescriptions& WithPropertyGroupDescriptions(Aws::Vector&& value) { SetPropertyGroupDescriptions(std::move(value)); return *this;} /** *

Describes the execution property groups.

*/ inline EnvironmentPropertyDescriptions& AddPropertyGroupDescriptions(const PropertyGroup& value) { m_propertyGroupDescriptionsHasBeenSet = true; m_propertyGroupDescriptions.push_back(value); return *this; } /** *

Describes the execution property groups.

*/ inline EnvironmentPropertyDescriptions& AddPropertyGroupDescriptions(PropertyGroup&& value) { m_propertyGroupDescriptionsHasBeenSet = true; m_propertyGroupDescriptions.push_back(std::move(value)); return *this; } private: Aws::Vector m_propertyGroupDescriptions; bool m_propertyGroupDescriptionsHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws