AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateTrustedTokenIssuerRequest.h
1
6#pragma once
7#include <aws/sso-admin/SSOAdmin_EXPORTS.h>
8#include <aws/sso-admin/SSOAdminRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/sso-admin/model/TrustedTokenIssuerUpdateConfiguration.h>
11#include <utility>
12
13namespace Aws
14{
15namespace SSOAdmin
16{
17namespace Model
18{
19
23 {
24 public:
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateTrustedTokenIssuer"; }
32
33 AWS_SSOADMIN_API Aws::String SerializePayload() const override;
34
36
37
39
43 inline const Aws::String& GetName() const{ return m_name; }
44 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
45 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
46 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
47 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
48 inline UpdateTrustedTokenIssuerRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
49 inline UpdateTrustedTokenIssuerRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
50 inline UpdateTrustedTokenIssuerRequest& WithName(const char* value) { SetName(value); return *this;}
52
54
58 inline const Aws::String& GetTrustedTokenIssuerArn() const{ return m_trustedTokenIssuerArn; }
59 inline bool TrustedTokenIssuerArnHasBeenSet() const { return m_trustedTokenIssuerArnHasBeenSet; }
60 inline void SetTrustedTokenIssuerArn(const Aws::String& value) { m_trustedTokenIssuerArnHasBeenSet = true; m_trustedTokenIssuerArn = value; }
61 inline void SetTrustedTokenIssuerArn(Aws::String&& value) { m_trustedTokenIssuerArnHasBeenSet = true; m_trustedTokenIssuerArn = std::move(value); }
62 inline void SetTrustedTokenIssuerArn(const char* value) { m_trustedTokenIssuerArnHasBeenSet = true; m_trustedTokenIssuerArn.assign(value); }
67
69
74 inline const TrustedTokenIssuerUpdateConfiguration& GetTrustedTokenIssuerConfiguration() const{ return m_trustedTokenIssuerConfiguration; }
75 inline bool TrustedTokenIssuerConfigurationHasBeenSet() const { return m_trustedTokenIssuerConfigurationHasBeenSet; }
76 inline void SetTrustedTokenIssuerConfiguration(const TrustedTokenIssuerUpdateConfiguration& value) { m_trustedTokenIssuerConfigurationHasBeenSet = true; m_trustedTokenIssuerConfiguration = value; }
77 inline void SetTrustedTokenIssuerConfiguration(TrustedTokenIssuerUpdateConfiguration&& value) { m_trustedTokenIssuerConfigurationHasBeenSet = true; m_trustedTokenIssuerConfiguration = std::move(value); }
81 private:
82
83 Aws::String m_name;
84 bool m_nameHasBeenSet = false;
85
86 Aws::String m_trustedTokenIssuerArn;
87 bool m_trustedTokenIssuerArnHasBeenSet = false;
88
89 TrustedTokenIssuerUpdateConfiguration m_trustedTokenIssuerConfiguration;
90 bool m_trustedTokenIssuerConfigurationHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace SSOAdmin
95} // namespace Aws
UpdateTrustedTokenIssuerRequest & WithTrustedTokenIssuerArn(Aws::String &&value)
UpdateTrustedTokenIssuerRequest & WithName(const Aws::String &value)
void SetTrustedTokenIssuerConfiguration(TrustedTokenIssuerUpdateConfiguration &&value)
UpdateTrustedTokenIssuerRequest & WithName(Aws::String &&value)
AWS_SSOADMIN_API Aws::String SerializePayload() const override
UpdateTrustedTokenIssuerRequest & WithTrustedTokenIssuerConfiguration(const TrustedTokenIssuerUpdateConfiguration &value)
void SetTrustedTokenIssuerConfiguration(const TrustedTokenIssuerUpdateConfiguration &value)
const TrustedTokenIssuerUpdateConfiguration & GetTrustedTokenIssuerConfiguration() const
UpdateTrustedTokenIssuerRequest & WithTrustedTokenIssuerArn(const char *value)
UpdateTrustedTokenIssuerRequest & WithName(const char *value)
UpdateTrustedTokenIssuerRequest & WithTrustedTokenIssuerArn(const Aws::String &value)
AWS_SSOADMIN_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateTrustedTokenIssuerRequest & WithTrustedTokenIssuerConfiguration(TrustedTokenIssuerUpdateConfiguration &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String