AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetApplicationAuthenticationMethodRequest.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/AuthenticationMethodType.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 "GetApplicationAuthenticationMethod"; }
32
33 AWS_SSOADMIN_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetApplicationArn() const{ return m_applicationArn; }
43 inline bool ApplicationArnHasBeenSet() const { return m_applicationArnHasBeenSet; }
44 inline void SetApplicationArn(const Aws::String& value) { m_applicationArnHasBeenSet = true; m_applicationArn = value; }
45 inline void SetApplicationArn(Aws::String&& value) { m_applicationArnHasBeenSet = true; m_applicationArn = std::move(value); }
46 inline void SetApplicationArn(const char* value) { m_applicationArnHasBeenSet = true; m_applicationArn.assign(value); }
49 inline GetApplicationAuthenticationMethodRequest& WithApplicationArn(const char* value) { SetApplicationArn(value); return *this;}
51
53
56 inline const AuthenticationMethodType& GetAuthenticationMethodType() const{ return m_authenticationMethodType; }
57 inline bool AuthenticationMethodTypeHasBeenSet() const { return m_authenticationMethodTypeHasBeenSet; }
58 inline void SetAuthenticationMethodType(const AuthenticationMethodType& value) { m_authenticationMethodTypeHasBeenSet = true; m_authenticationMethodType = value; }
59 inline void SetAuthenticationMethodType(AuthenticationMethodType&& value) { m_authenticationMethodTypeHasBeenSet = true; m_authenticationMethodType = std::move(value); }
63 private:
64
65 Aws::String m_applicationArn;
66 bool m_applicationArnHasBeenSet = false;
67
68 AuthenticationMethodType m_authenticationMethodType;
69 bool m_authenticationMethodTypeHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace SSOAdmin
74} // namespace Aws
GetApplicationAuthenticationMethodRequest & WithApplicationArn(Aws::String &&value)
GetApplicationAuthenticationMethodRequest & WithAuthenticationMethodType(const AuthenticationMethodType &value)
GetApplicationAuthenticationMethodRequest & WithApplicationArn(const Aws::String &value)
GetApplicationAuthenticationMethodRequest & WithApplicationArn(const char *value)
GetApplicationAuthenticationMethodRequest & WithAuthenticationMethodType(AuthenticationMethodType &&value)
AWS_SSOADMIN_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_SSOADMIN_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String