/** * 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 updates to the execution property groups for a Flink-based Kinesis * Data Analytics application or a Studio notebook.

See Also:

AWS * API Reference

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

Describes updates to the execution property groups.

*/ inline const Aws::Vector& GetPropertyGroups() const{ return m_propertyGroups; } /** *

Describes updates to the execution property groups.

*/ inline bool PropertyGroupsHasBeenSet() const { return m_propertyGroupsHasBeenSet; } /** *

Describes updates to the execution property groups.

*/ inline void SetPropertyGroups(const Aws::Vector& value) { m_propertyGroupsHasBeenSet = true; m_propertyGroups = value; } /** *

Describes updates to the execution property groups.

*/ inline void SetPropertyGroups(Aws::Vector&& value) { m_propertyGroupsHasBeenSet = true; m_propertyGroups = std::move(value); } /** *

Describes updates to the execution property groups.

*/ inline EnvironmentPropertyUpdates& WithPropertyGroups(const Aws::Vector& value) { SetPropertyGroups(value); return *this;} /** *

Describes updates to the execution property groups.

*/ inline EnvironmentPropertyUpdates& WithPropertyGroups(Aws::Vector&& value) { SetPropertyGroups(std::move(value)); return *this;} /** *

Describes updates to the execution property groups.

*/ inline EnvironmentPropertyUpdates& AddPropertyGroups(const PropertyGroup& value) { m_propertyGroupsHasBeenSet = true; m_propertyGroups.push_back(value); return *this; } /** *

Describes updates to the execution property groups.

*/ inline EnvironmentPropertyUpdates& AddPropertyGroups(PropertyGroup&& value) { m_propertyGroupsHasBeenSet = true; m_propertyGroups.push_back(std::move(value)); return *this; } private: Aws::Vector m_propertyGroups; bool m_propertyGroupsHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws