AWS SDK for C++

AWS SDK for C++ Version 1.11.607

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:
25 AWS_SSOADMIN_API GetApplicationAuthenticationMethodRequest() = default;
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 template<typename ApplicationArnT = Aws::String>
45 void SetApplicationArn(ApplicationArnT&& value) { m_applicationArnHasBeenSet = true; m_applicationArn = std::forward<ApplicationArnT>(value); }
46 template<typename ApplicationArnT = Aws::String>
47 GetApplicationAuthenticationMethodRequest& WithApplicationArn(ApplicationArnT&& value) { SetApplicationArn(std::forward<ApplicationArnT>(value)); return *this;}
49
51
54 inline AuthenticationMethodType GetAuthenticationMethodType() const { return m_authenticationMethodType; }
55 inline bool AuthenticationMethodTypeHasBeenSet() const { return m_authenticationMethodTypeHasBeenSet; }
56 inline void SetAuthenticationMethodType(AuthenticationMethodType value) { m_authenticationMethodTypeHasBeenSet = true; m_authenticationMethodType = value; }
59 private:
60
61 Aws::String m_applicationArn;
62 bool m_applicationArnHasBeenSet = false;
63
65 bool m_authenticationMethodTypeHasBeenSet = false;
66 };
67
68} // namespace Model
69} // namespace SSOAdmin
70} // namespace Aws
GetApplicationAuthenticationMethodRequest & WithAuthenticationMethodType(AuthenticationMethodType value)
AWS_SSOADMIN_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetApplicationAuthenticationMethodRequest & WithApplicationArn(ApplicationArnT &&value)
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