AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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 inline void SetApplicationArn(const Aws::String& value) { m_applicationArnHasBeenSet = true; m_applicationArn = value; }
46 inline void SetApplicationArn(Aws::String&& value) { m_applicationArnHasBeenSet = true; m_applicationArn = std::move(value); }
47 inline void SetApplicationArn(const char* value) { m_applicationArnHasBeenSet = true; m_applicationArn.assign(value); }
50 inline DeleteApplicationAuthenticationMethodRequest& WithApplicationArn(const char* value) { SetApplicationArn(value); return *this;}
52
54
57 inline const AuthenticationMethodType& GetAuthenticationMethodType() const{ return m_authenticationMethodType; }
58 inline bool AuthenticationMethodTypeHasBeenSet() const { return m_authenticationMethodTypeHasBeenSet; }
59 inline void SetAuthenticationMethodType(const AuthenticationMethodType& value) { m_authenticationMethodTypeHasBeenSet = true; m_authenticationMethodType = value; }
60 inline void SetAuthenticationMethodType(AuthenticationMethodType&& value) { m_authenticationMethodTypeHasBeenSet = true; m_authenticationMethodType = std::move(value); }
64 private:
65
66 Aws::String m_applicationArn;
67 bool m_applicationArnHasBeenSet = false;
68
69 AuthenticationMethodType m_authenticationMethodType;
70 bool m_authenticationMethodTypeHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace SSOAdmin
75} // namespace Aws
DeleteApplicationAuthenticationMethodRequest & WithApplicationArn(const Aws::String &value)
DeleteApplicationAuthenticationMethodRequest & WithAuthenticationMethodType(AuthenticationMethodType &&value)
DeleteApplicationAuthenticationMethodRequest & WithApplicationArn(Aws::String &&value)
DeleteApplicationAuthenticationMethodRequest & WithAuthenticationMethodType(const AuthenticationMethodType &value)
AWS_SSOADMIN_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteApplicationAuthenticationMethodRequest & WithApplicationArn(const char *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