AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 const CertificateField& GetCertificateField() const{ return m_certificateField; }
48 inline bool CertificateFieldHasBeenSet() const { return m_certificateFieldHasBeenSet; }
49 inline void SetCertificateField(const CertificateField& value) { m_certificateFieldHasBeenSet = true; m_certificateField = value; }
50 inline void SetCertificateField(CertificateField&& value) { m_certificateFieldHasBeenSet = true; m_certificateField = std::move(value); }
54
56
59 inline const Aws::String& GetProfileId() const{ return m_profileId; }
60 inline bool ProfileIdHasBeenSet() const { return m_profileIdHasBeenSet; }
61 inline void SetProfileId(const Aws::String& value) { m_profileIdHasBeenSet = true; m_profileId = value; }
62 inline void SetProfileId(Aws::String&& value) { m_profileIdHasBeenSet = true; m_profileId = std::move(value); }
63 inline void SetProfileId(const char* value) { m_profileIdHasBeenSet = true; m_profileId.assign(value); }
64 inline DeleteAttributeMappingRequest& WithProfileId(const Aws::String& value) { SetProfileId(value); return *this;}
65 inline DeleteAttributeMappingRequest& WithProfileId(Aws::String&& value) { SetProfileId(std::move(value)); return *this;}
66 inline DeleteAttributeMappingRequest& WithProfileId(const char* value) { SetProfileId(value); return *this;}
68
70
74 inline const Aws::Vector<Aws::String>& GetSpecifiers() const{ return m_specifiers; }
75 inline bool SpecifiersHasBeenSet() const { return m_specifiersHasBeenSet; }
76 inline void SetSpecifiers(const Aws::Vector<Aws::String>& value) { m_specifiersHasBeenSet = true; m_specifiers = value; }
77 inline void SetSpecifiers(Aws::Vector<Aws::String>&& value) { m_specifiersHasBeenSet = true; m_specifiers = std::move(value); }
79 inline DeleteAttributeMappingRequest& WithSpecifiers(Aws::Vector<Aws::String>&& value) { SetSpecifiers(std::move(value)); return *this;}
80 inline DeleteAttributeMappingRequest& AddSpecifiers(const Aws::String& value) { m_specifiersHasBeenSet = true; m_specifiers.push_back(value); return *this; }
81 inline DeleteAttributeMappingRequest& AddSpecifiers(Aws::String&& value) { m_specifiersHasBeenSet = true; m_specifiers.push_back(std::move(value)); return *this; }
82 inline DeleteAttributeMappingRequest& AddSpecifiers(const char* value) { m_specifiersHasBeenSet = true; m_specifiers.push_back(value); return *this; }
84 private:
85
86 CertificateField m_certificateField;
87 bool m_certificateFieldHasBeenSet = false;
88
89 Aws::String m_profileId;
90 bool m_profileIdHasBeenSet = false;
91
92 Aws::Vector<Aws::String> m_specifiers;
93 bool m_specifiersHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace RolesAnywhere
98} // namespace Aws
DeleteAttributeMappingRequest & WithSpecifiers(const Aws::Vector< Aws::String > &value)
DeleteAttributeMappingRequest & WithProfileId(Aws::String &&value)
DeleteAttributeMappingRequest & AddSpecifiers(Aws::String &&value)
void SetSpecifiers(const Aws::Vector< Aws::String > &value)
DeleteAttributeMappingRequest & WithProfileId(const char *value)
DeleteAttributeMappingRequest & WithCertificateField(CertificateField &&value)
DeleteAttributeMappingRequest & AddSpecifiers(const char *value)
AWS_ROLESANYWHERE_API Aws::String SerializePayload() const override
DeleteAttributeMappingRequest & WithCertificateField(const CertificateField &value)
DeleteAttributeMappingRequest & WithProfileId(const Aws::String &value)
DeleteAttributeMappingRequest & AddSpecifiers(const Aws::String &value)
AWS_ROLESANYWHERE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteAttributeMappingRequest & WithSpecifiers(Aws::Vector< Aws::String > &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector