AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateDataflowEndpointGroupRequest.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/GroundStationRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSMap.h>
11#include <aws/groundstation/model/EndpointDetails.h>
12#include <aws/core/utils/memory/stl/AWSString.h>
13#include <utility>
14
15namespace Aws
16{
17namespace GroundStation
18{
19namespace Model
20{
21
28 {
29 public:
30 AWS_GROUNDSTATION_API CreateDataflowEndpointGroupRequest();
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "CreateDataflowEndpointGroup"; }
37
38 AWS_GROUNDSTATION_API Aws::String SerializePayload() const override;
39
40
42
48 inline int GetContactPostPassDurationSeconds() const{ return m_contactPostPassDurationSeconds; }
49 inline bool ContactPostPassDurationSecondsHasBeenSet() const { return m_contactPostPassDurationSecondsHasBeenSet; }
50 inline void SetContactPostPassDurationSeconds(int value) { m_contactPostPassDurationSecondsHasBeenSet = true; m_contactPostPassDurationSeconds = value; }
53
55
61 inline int GetContactPrePassDurationSeconds() const{ return m_contactPrePassDurationSeconds; }
62 inline bool ContactPrePassDurationSecondsHasBeenSet() const { return m_contactPrePassDurationSecondsHasBeenSet; }
63 inline void SetContactPrePassDurationSeconds(int value) { m_contactPrePassDurationSecondsHasBeenSet = true; m_contactPrePassDurationSeconds = value; }
66
68
71 inline const Aws::Vector<EndpointDetails>& GetEndpointDetails() const{ return m_endpointDetails; }
72 inline bool EndpointDetailsHasBeenSet() const { return m_endpointDetailsHasBeenSet; }
73 inline void SetEndpointDetails(const Aws::Vector<EndpointDetails>& value) { m_endpointDetailsHasBeenSet = true; m_endpointDetails = value; }
74 inline void SetEndpointDetails(Aws::Vector<EndpointDetails>&& value) { m_endpointDetailsHasBeenSet = true; m_endpointDetails = std::move(value); }
77 inline CreateDataflowEndpointGroupRequest& AddEndpointDetails(const EndpointDetails& value) { m_endpointDetailsHasBeenSet = true; m_endpointDetails.push_back(value); return *this; }
78 inline CreateDataflowEndpointGroupRequest& AddEndpointDetails(EndpointDetails&& value) { m_endpointDetailsHasBeenSet = true; m_endpointDetails.push_back(std::move(value)); return *this; }
80
82
85 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
86 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
87 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
88 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
91 inline CreateDataflowEndpointGroupRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
92 inline CreateDataflowEndpointGroupRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
93 inline CreateDataflowEndpointGroupRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
94 inline CreateDataflowEndpointGroupRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
95 inline CreateDataflowEndpointGroupRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
96 inline CreateDataflowEndpointGroupRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
97 inline CreateDataflowEndpointGroupRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
99 private:
100
101 int m_contactPostPassDurationSeconds;
102 bool m_contactPostPassDurationSecondsHasBeenSet = false;
103
104 int m_contactPrePassDurationSeconds;
105 bool m_contactPrePassDurationSecondsHasBeenSet = false;
106
107 Aws::Vector<EndpointDetails> m_endpointDetails;
108 bool m_endpointDetailsHasBeenSet = false;
109
111 bool m_tagsHasBeenSet = false;
112 };
113
114} // namespace Model
115} // namespace GroundStation
116} // namespace Aws
CreateDataflowEndpointGroupRequest & AddTags(Aws::String &&key, const char *value)
CreateDataflowEndpointGroupRequest & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateDataflowEndpointGroupRequest & AddEndpointDetails(EndpointDetails &&value)
CreateDataflowEndpointGroupRequest & AddTags(const char *key, Aws::String &&value)
CreateDataflowEndpointGroupRequest & WithContactPrePassDurationSeconds(int value)
CreateDataflowEndpointGroupRequest & WithEndpointDetails(const Aws::Vector< EndpointDetails > &value)
CreateDataflowEndpointGroupRequest & AddEndpointDetails(const EndpointDetails &value)
AWS_GROUNDSTATION_API Aws::String SerializePayload() const override
CreateDataflowEndpointGroupRequest & AddTags(const char *key, const char *value)
CreateDataflowEndpointGroupRequest & AddTags(Aws::String &&key, Aws::String &&value)
CreateDataflowEndpointGroupRequest & WithContactPostPassDurationSeconds(int value)
CreateDataflowEndpointGroupRequest & AddTags(const Aws::String &key, Aws::String &&value)
CreateDataflowEndpointGroupRequest & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateDataflowEndpointGroupRequest & AddTags(const Aws::String &key, const Aws::String &value)
CreateDataflowEndpointGroupRequest & WithEndpointDetails(Aws::Vector< EndpointDetails > &&value)
CreateDataflowEndpointGroupRequest & AddTags(Aws::String &&key, const Aws::String &value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector