AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DeleteApplicationAuthenticationMethodRequest.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 "DeleteApplicationAuthenticationMethod"; }
32
33 AWS_SSOADMIN_API Aws::String SerializePayload() const override;
34
36
37
39
43 inline const Aws::String& GetApplicationArn() const { return m_applicationArn; }
44 inline bool ApplicationArnHasBeenSet() const { return m_applicationArnHasBeenSet; }
45 template<typename ApplicationArnT = Aws::String>
46 void SetApplicationArn(ApplicationArnT&& value) { m_applicationArnHasBeenSet = true; m_applicationArn = std::forward<ApplicationArnT>(value); }
47 template<typename ApplicationArnT = Aws::String>
48 DeleteApplicationAuthenticationMethodRequest& WithApplicationArn(ApplicationArnT&& value) { SetApplicationArn(std::forward<ApplicationArnT>(value)); return *this;}
50
52
55 inline AuthenticationMethodType GetAuthenticationMethodType() const { return m_authenticationMethodType; }
56 inline bool AuthenticationMethodTypeHasBeenSet() const { return m_authenticationMethodTypeHasBeenSet; }
57 inline void SetAuthenticationMethodType(AuthenticationMethodType value) { m_authenticationMethodTypeHasBeenSet = true; m_authenticationMethodType = value; }
60 private:
61
62 Aws::String m_applicationArn;
63 bool m_applicationArnHasBeenSet = false;
64
66 bool m_authenticationMethodTypeHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace SSOAdmin
71} // namespace Aws
DeleteApplicationAuthenticationMethodRequest & WithApplicationArn(ApplicationArnT &&value)
AWS_SSOADMIN_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_SSOADMIN_API Aws::String SerializePayload() const override
DeleteApplicationAuthenticationMethodRequest & WithAuthenticationMethodType(AuthenticationMethodType value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String