AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
AssociateIdentityProviderConfigResult.h
1
6#pragma once
7#include <aws/eks/EKS_EXPORTS.h>
8#include <aws/eks/model/Update.h>
9#include <aws/core/utils/memory/stl/AWSMap.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace EKS
26{
27namespace Model
28{
30 {
31 public:
35
36
38
39 inline const Update& GetUpdate() const { return m_update; }
40 template<typename UpdateT = Update>
41 void SetUpdate(UpdateT&& value) { m_updateHasBeenSet = true; m_update = std::forward<UpdateT>(value); }
42 template<typename UpdateT = Update>
43 AssociateIdentityProviderConfigResult& WithUpdate(UpdateT&& value) { SetUpdate(std::forward<UpdateT>(value)); return *this;}
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) { m_tagsHasBeenSet = true; m_tags = std::forward<TagsT>(value); }
53 template<typename TagsT = Aws::Map<Aws::String, Aws::String>>
54 AssociateIdentityProviderConfigResult& WithTags(TagsT&& value) { SetTags(std::forward<TagsT>(value)); return *this;}
55 template<typename TagsKeyT = Aws::String, typename TagsValueT = Aws::String>
56 AssociateIdentityProviderConfigResult& AddTags(TagsKeyT&& key, TagsValueT&& value) {
57 m_tagsHasBeenSet = true; m_tags.emplace(std::forward<TagsKeyT>(key), std::forward<TagsValueT>(value)); return *this;
58 }
60
62
63 inline const Aws::String& GetRequestId() const { return m_requestId; }
64 template<typename RequestIdT = Aws::String>
65 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
66 template<typename RequestIdT = Aws::String>
67 AssociateIdentityProviderConfigResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
69 private:
70
71 Update m_update;
72 bool m_updateHasBeenSet = false;
73
75 bool m_tagsHasBeenSet = false;
76
77 Aws::String m_requestId;
78 bool m_requestIdHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace EKS
83} // 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