AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateIdentityProviderSettingsRequest.h
1
6#pragma once
7#include <aws/license-manager-user-subscriptions/LicenseManagerUserSubscriptions_EXPORTS.h>
8#include <aws/license-manager-user-subscriptions/LicenseManagerUserSubscriptionsRequest.h>
9#include <aws/license-manager-user-subscriptions/model/IdentityProvider.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/license-manager-user-subscriptions/model/UpdateSettings.h>
12#include <utility>
13
14namespace Aws
15{
16namespace LicenseManagerUserSubscriptions
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_LICENSEMANAGERUSERSUBSCRIPTIONS_API UpdateIdentityProviderSettingsRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "UpdateIdentityProviderSettings"; }
33
34 AWS_LICENSEMANAGERUSERSUBSCRIPTIONS_API Aws::String SerializePayload() const override;
35
36
38
39 inline const IdentityProvider& GetIdentityProvider() const{ return m_identityProvider; }
40 inline bool IdentityProviderHasBeenSet() const { return m_identityProviderHasBeenSet; }
41 inline void SetIdentityProvider(const IdentityProvider& value) { m_identityProviderHasBeenSet = true; m_identityProvider = value; }
42 inline void SetIdentityProvider(IdentityProvider&& value) { m_identityProviderHasBeenSet = true; m_identityProvider = std::move(value); }
46
48
51 inline const Aws::String& GetProduct() const{ return m_product; }
52 inline bool ProductHasBeenSet() const { return m_productHasBeenSet; }
53 inline void SetProduct(const Aws::String& value) { m_productHasBeenSet = true; m_product = value; }
54 inline void SetProduct(Aws::String&& value) { m_productHasBeenSet = true; m_product = std::move(value); }
55 inline void SetProduct(const char* value) { m_productHasBeenSet = true; m_product.assign(value); }
56 inline UpdateIdentityProviderSettingsRequest& WithProduct(const Aws::String& value) { SetProduct(value); return *this;}
57 inline UpdateIdentityProviderSettingsRequest& WithProduct(Aws::String&& value) { SetProduct(std::move(value)); return *this;}
58 inline UpdateIdentityProviderSettingsRequest& WithProduct(const char* value) { SetProduct(value); return *this;}
60
62
70 inline const UpdateSettings& GetUpdateSettings() const{ return m_updateSettings; }
71 inline bool UpdateSettingsHasBeenSet() const { return m_updateSettingsHasBeenSet; }
72 inline void SetUpdateSettings(const UpdateSettings& value) { m_updateSettingsHasBeenSet = true; m_updateSettings = value; }
73 inline void SetUpdateSettings(UpdateSettings&& value) { m_updateSettingsHasBeenSet = true; m_updateSettings = std::move(value); }
77 private:
78
79 IdentityProvider m_identityProvider;
80 bool m_identityProviderHasBeenSet = false;
81
82 Aws::String m_product;
83 bool m_productHasBeenSet = false;
84
85 UpdateSettings m_updateSettings;
86 bool m_updateSettingsHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace LicenseManagerUserSubscriptions
91} // namespace Aws
UpdateIdentityProviderSettingsRequest & WithUpdateSettings(const UpdateSettings &value)
UpdateIdentityProviderSettingsRequest & WithIdentityProvider(const IdentityProvider &value)
AWS_LICENSEMANAGERUSERSUBSCRIPTIONS_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String