AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
EnvironmentProperties.h
1
6#pragma once
7#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/kinesisanalyticsv2/model/PropertyGroup.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace KinesisAnalyticsV2
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_KINESISANALYTICSV2_API EnvironmentProperties();
37 AWS_KINESISANALYTICSV2_API EnvironmentProperties(Aws::Utils::Json::JsonView jsonValue);
38 AWS_KINESISANALYTICSV2_API EnvironmentProperties& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::Vector<PropertyGroup>& GetPropertyGroups() const{ return m_propertyGroups; }
47 inline bool PropertyGroupsHasBeenSet() const { return m_propertyGroupsHasBeenSet; }
48 inline void SetPropertyGroups(const Aws::Vector<PropertyGroup>& value) { m_propertyGroupsHasBeenSet = true; m_propertyGroups = value; }
49 inline void SetPropertyGroups(Aws::Vector<PropertyGroup>&& value) { m_propertyGroupsHasBeenSet = true; m_propertyGroups = std::move(value); }
51 inline EnvironmentProperties& WithPropertyGroups(Aws::Vector<PropertyGroup>&& value) { SetPropertyGroups(std::move(value)); return *this;}
52 inline EnvironmentProperties& AddPropertyGroups(const PropertyGroup& value) { m_propertyGroupsHasBeenSet = true; m_propertyGroups.push_back(value); return *this; }
53 inline EnvironmentProperties& AddPropertyGroups(PropertyGroup&& value) { m_propertyGroupsHasBeenSet = true; m_propertyGroups.push_back(std::move(value)); return *this; }
55 private:
56
57 Aws::Vector<PropertyGroup> m_propertyGroups;
58 bool m_propertyGroupsHasBeenSet = false;
59 };
60
61} // namespace Model
62} // namespace KinesisAnalyticsV2
63} // namespace Aws
AWS_KINESISANALYTICSV2_API EnvironmentProperties & operator=(Aws::Utils::Json::JsonView jsonValue)
EnvironmentProperties & AddPropertyGroups(PropertyGroup &&value)
void SetPropertyGroups(const Aws::Vector< PropertyGroup > &value)
EnvironmentProperties & WithPropertyGroups(Aws::Vector< PropertyGroup > &&value)
AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const
EnvironmentProperties & WithPropertyGroups(const Aws::Vector< PropertyGroup > &value)
AWS_KINESISANALYTICSV2_API EnvironmentProperties(Aws::Utils::Json::JsonView jsonValue)
EnvironmentProperties & AddPropertyGroups(const PropertyGroup &value)
const Aws::Vector< PropertyGroup > & GetPropertyGroups() const
void SetPropertyGroups(Aws::Vector< PropertyGroup > &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue