AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
AssociateIdentityProviderConfigResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSMap.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/eks/EKS_EXPORTS.h>
10#include <aws/eks/model/Update.h>
11
12#include <utility>
13
14namespace Aws {
15template <typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils {
19namespace Json {
20class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace EKS {
24namespace Model {
26 public:
30
32
33 inline const Update& GetUpdate() const { return m_update; }
34 template <typename UpdateT = Update>
35 void SetUpdate(UpdateT&& value) {
36 m_updateHasBeenSet = true;
37 m_update = std::forward<UpdateT>(value);
38 }
39 template <typename UpdateT = Update>
41 SetUpdate(std::forward<UpdateT>(value));
42 return *this;
43 }
45
47
50 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const { return m_tags; }
51 template <typename TagsT = Aws::Map<Aws::String, Aws::String>>
52 void SetTags(TagsT&& value) {
53 m_tagsHasBeenSet = true;
54 m_tags = std::forward<TagsT>(value);
55 }
56 template <typename TagsT = Aws::Map<Aws::String, Aws::String>>
58 SetTags(std::forward<TagsT>(value));
59 return *this;
60 }
61 template <typename TagsKeyT = Aws::String, typename TagsValueT = Aws::String>
62 AssociateIdentityProviderConfigResult& AddTags(TagsKeyT&& key, TagsValueT&& value) {
63 m_tagsHasBeenSet = true;
64 m_tags.emplace(std::forward<TagsKeyT>(key), std::forward<TagsValueT>(value));
65 return *this;
66 }
68
70
71 inline const Aws::String& GetRequestId() const { return m_requestId; }
72 template <typename RequestIdT = Aws::String>
73 void SetRequestId(RequestIdT&& value) {
74 m_requestIdHasBeenSet = true;
75 m_requestId = std::forward<RequestIdT>(value);
76 }
77 template <typename RequestIdT = Aws::String>
79 SetRequestId(std::forward<RequestIdT>(value));
80 return *this;
81 }
83 private:
84 Update m_update;
85
87
88 Aws::String m_requestId;
89 bool m_updateHasBeenSet = false;
90 bool m_tagsHasBeenSet = false;
91 bool m_requestIdHasBeenSet = false;
92};
93
94} // namespace Model
95} // namespace EKS
96} // namespace Aws
AssociateIdentityProviderConfigResult & WithRequestId(RequestIdT &&value)
AssociateIdentityProviderConfigResult & WithTags(TagsT &&value)
AssociateIdentityProviderConfigResult & WithUpdate(UpdateT &&value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
AWS_EKS_API AssociateIdentityProviderConfigResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_EKS_API AssociateIdentityProviderConfigResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AssociateIdentityProviderConfigResult & AddTags(TagsKeyT &&key, TagsValueT &&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
Aws::Utils::Json::JsonValue JsonValue