AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RegisterIdentityProviderRequest.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/Settings.h>
12#include <utility>
13
14namespace Aws
15{
16namespace LicenseManagerUserSubscriptions
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_LICENSEMANAGERUSERSUBSCRIPTIONS_API RegisterIdentityProviderRequest();
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 "RegisterIdentityProvider"; }
33
34 AWS_LICENSEMANAGERUSERSUBSCRIPTIONS_API Aws::String SerializePayload() const override;
35
36
38
41 inline const IdentityProvider& GetIdentityProvider() const{ return m_identityProvider; }
42 inline bool IdentityProviderHasBeenSet() const { return m_identityProviderHasBeenSet; }
43 inline void SetIdentityProvider(const IdentityProvider& value) { m_identityProviderHasBeenSet = true; m_identityProvider = value; }
44 inline void SetIdentityProvider(IdentityProvider&& value) { m_identityProviderHasBeenSet = true; m_identityProvider = std::move(value); }
48
50
53 inline const Aws::String& GetProduct() const{ return m_product; }
54 inline bool ProductHasBeenSet() const { return m_productHasBeenSet; }
55 inline void SetProduct(const Aws::String& value) { m_productHasBeenSet = true; m_product = value; }
56 inline void SetProduct(Aws::String&& value) { m_productHasBeenSet = true; m_product = std::move(value); }
57 inline void SetProduct(const char* value) { m_productHasBeenSet = true; m_product.assign(value); }
58 inline RegisterIdentityProviderRequest& WithProduct(const Aws::String& value) { SetProduct(value); return *this;}
59 inline RegisterIdentityProviderRequest& WithProduct(Aws::String&& value) { SetProduct(std::move(value)); return *this;}
60 inline RegisterIdentityProviderRequest& WithProduct(const char* value) { SetProduct(value); return *this;}
62
64
68 inline const Settings& GetSettings() const{ return m_settings; }
69 inline bool SettingsHasBeenSet() const { return m_settingsHasBeenSet; }
70 inline void SetSettings(const Settings& value) { m_settingsHasBeenSet = true; m_settings = value; }
71 inline void SetSettings(Settings&& value) { m_settingsHasBeenSet = true; m_settings = std::move(value); }
72 inline RegisterIdentityProviderRequest& WithSettings(const Settings& value) { SetSettings(value); return *this;}
73 inline RegisterIdentityProviderRequest& WithSettings(Settings&& value) { SetSettings(std::move(value)); return *this;}
75 private:
76
77 IdentityProvider m_identityProvider;
78 bool m_identityProviderHasBeenSet = false;
79
80 Aws::String m_product;
81 bool m_productHasBeenSet = false;
82
83 Settings m_settings;
84 bool m_settingsHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace LicenseManagerUserSubscriptions
89} // namespace Aws
RegisterIdentityProviderRequest & WithIdentityProvider(const IdentityProvider &value)
AWS_LICENSEMANAGERUSERSUBSCRIPTIONS_API Aws::String SerializePayload() const override
AWS_LICENSEMANAGERUSERSUBSCRIPTIONS_API RegisterIdentityProviderRequest()
RegisterIdentityProviderRequest & WithIdentityProvider(IdentityProvider &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String