AWS SDK for C++

AWS SDK for C++ Version 1.11.690

Loading...
Searching...
No Matches
DescribeAuthenticationProfileRequest.h
1
6#pragma once
7#include <aws/connect/ConnectRequest.h>
8#include <aws/connect/Connect_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Connect {
15namespace Model {
16
20 public:
21 AWS_CONNECT_API DescribeAuthenticationProfileRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeAuthenticationProfile"; }
28
29 AWS_CONNECT_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetAuthenticationProfileId() const { return m_authenticationProfileId; }
36 inline bool AuthenticationProfileIdHasBeenSet() const { return m_authenticationProfileIdHasBeenSet; }
37 template <typename AuthenticationProfileIdT = Aws::String>
38 void SetAuthenticationProfileId(AuthenticationProfileIdT&& value) {
39 m_authenticationProfileIdHasBeenSet = true;
40 m_authenticationProfileId = std::forward<AuthenticationProfileIdT>(value);
41 }
42 template <typename AuthenticationProfileIdT = Aws::String>
44 SetAuthenticationProfileId(std::forward<AuthenticationProfileIdT>(value));
45 return *this;
46 }
48
50
55 inline const Aws::String& GetInstanceId() const { return m_instanceId; }
56 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
57 template <typename InstanceIdT = Aws::String>
58 void SetInstanceId(InstanceIdT&& value) {
59 m_instanceIdHasBeenSet = true;
60 m_instanceId = std::forward<InstanceIdT>(value);
61 }
62 template <typename InstanceIdT = Aws::String>
64 SetInstanceId(std::forward<InstanceIdT>(value));
65 return *this;
66 }
68 private:
69 Aws::String m_authenticationProfileId;
70 bool m_authenticationProfileIdHasBeenSet = false;
71
72 Aws::String m_instanceId;
73 bool m_instanceIdHasBeenSet = false;
74};
75
76} // namespace Model
77} // namespace Connect
78} // namespace Aws
DescribeAuthenticationProfileRequest & WithAuthenticationProfileId(AuthenticationProfileIdT &&value)
DescribeAuthenticationProfileRequest & WithInstanceId(InstanceIdT &&value)
AWS_CONNECT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String