AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeleteAttributeMappingRequest.h
1
6#pragma once
7#include <aws/rolesanywhere/RolesAnywhere_EXPORTS.h>
8#include <aws/rolesanywhere/RolesAnywhereRequest.h>
9#include <aws/rolesanywhere/model/CertificateField.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Http
17{
18 class URI;
19} //namespace Http
20namespace RolesAnywhere
21{
22namespace Model
23{
24
28 {
29 public:
30 AWS_ROLESANYWHERE_API DeleteAttributeMappingRequest() = default;
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 "DeleteAttributeMapping"; }
37
38 AWS_ROLESANYWHERE_API Aws::String SerializePayload() const override;
39
40 AWS_ROLESANYWHERE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
41
42
44
47 inline CertificateField GetCertificateField() const { return m_certificateField; }
48 inline bool CertificateFieldHasBeenSet() const { return m_certificateFieldHasBeenSet; }
49 inline void SetCertificateField(CertificateField value) { m_certificateFieldHasBeenSet = true; m_certificateField = value; }
52
54
57 inline const Aws::String& GetProfileId() const { return m_profileId; }
58 inline bool ProfileIdHasBeenSet() const { return m_profileIdHasBeenSet; }
59 template<typename ProfileIdT = Aws::String>
60 void SetProfileId(ProfileIdT&& value) { m_profileIdHasBeenSet = true; m_profileId = std::forward<ProfileIdT>(value); }
61 template<typename ProfileIdT = Aws::String>
62 DeleteAttributeMappingRequest& WithProfileId(ProfileIdT&& value) { SetProfileId(std::forward<ProfileIdT>(value)); return *this;}
64
66
70 inline const Aws::Vector<Aws::String>& GetSpecifiers() const { return m_specifiers; }
71 inline bool SpecifiersHasBeenSet() const { return m_specifiersHasBeenSet; }
72 template<typename SpecifiersT = Aws::Vector<Aws::String>>
73 void SetSpecifiers(SpecifiersT&& value) { m_specifiersHasBeenSet = true; m_specifiers = std::forward<SpecifiersT>(value); }
74 template<typename SpecifiersT = Aws::Vector<Aws::String>>
75 DeleteAttributeMappingRequest& WithSpecifiers(SpecifiersT&& value) { SetSpecifiers(std::forward<SpecifiersT>(value)); return *this;}
76 template<typename SpecifiersT = Aws::String>
77 DeleteAttributeMappingRequest& AddSpecifiers(SpecifiersT&& value) { m_specifiersHasBeenSet = true; m_specifiers.emplace_back(std::forward<SpecifiersT>(value)); return *this; }
79 private:
80
82 bool m_certificateFieldHasBeenSet = false;
83
84 Aws::String m_profileId;
85 bool m_profileIdHasBeenSet = false;
86
87 Aws::Vector<Aws::String> m_specifiers;
88 bool m_specifiersHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace RolesAnywhere
93} // namespace Aws
AWS_ROLESANYWHERE_API DeleteAttributeMappingRequest()=default
DeleteAttributeMappingRequest & WithSpecifiers(SpecifiersT &&value)
DeleteAttributeMappingRequest & AddSpecifiers(SpecifiersT &&value)
AWS_ROLESANYWHERE_API Aws::String SerializePayload() const override
DeleteAttributeMappingRequest & WithCertificateField(CertificateField value)
AWS_ROLESANYWHERE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteAttributeMappingRequest & WithProfileId(ProfileIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector