AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AssociateMacSecKeyRequest.h
1
6#pragma once
7#include <aws/directconnect/DirectConnect_EXPORTS.h>
8#include <aws/directconnect/DirectConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace DirectConnect
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_DIRECTCONNECT_API AssociateMacSecKeyRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "AssociateMacSecKey"; }
31
32 AWS_DIRECTCONNECT_API Aws::String SerializePayload() const override;
33
34 AWS_DIRECTCONNECT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
36
38
43 inline const Aws::String& GetConnectionId() const{ return m_connectionId; }
44 inline bool ConnectionIdHasBeenSet() const { return m_connectionIdHasBeenSet; }
45 inline void SetConnectionId(const Aws::String& value) { m_connectionIdHasBeenSet = true; m_connectionId = value; }
46 inline void SetConnectionId(Aws::String&& value) { m_connectionIdHasBeenSet = true; m_connectionId = std::move(value); }
47 inline void SetConnectionId(const char* value) { m_connectionIdHasBeenSet = true; m_connectionId.assign(value); }
48 inline AssociateMacSecKeyRequest& WithConnectionId(const Aws::String& value) { SetConnectionId(value); return *this;}
49 inline AssociateMacSecKeyRequest& WithConnectionId(Aws::String&& value) { SetConnectionId(std::move(value)); return *this;}
50 inline AssociateMacSecKeyRequest& WithConnectionId(const char* value) { SetConnectionId(value); return *this;}
52
54
61 inline const Aws::String& GetSecretARN() const{ return m_secretARN; }
62 inline bool SecretARNHasBeenSet() const { return m_secretARNHasBeenSet; }
63 inline void SetSecretARN(const Aws::String& value) { m_secretARNHasBeenSet = true; m_secretARN = value; }
64 inline void SetSecretARN(Aws::String&& value) { m_secretARNHasBeenSet = true; m_secretARN = std::move(value); }
65 inline void SetSecretARN(const char* value) { m_secretARNHasBeenSet = true; m_secretARN.assign(value); }
66 inline AssociateMacSecKeyRequest& WithSecretARN(const Aws::String& value) { SetSecretARN(value); return *this;}
67 inline AssociateMacSecKeyRequest& WithSecretARN(Aws::String&& value) { SetSecretARN(std::move(value)); return *this;}
68 inline AssociateMacSecKeyRequest& WithSecretARN(const char* value) { SetSecretARN(value); return *this;}
70
72
79 inline const Aws::String& GetCkn() const{ return m_ckn; }
80 inline bool CknHasBeenSet() const { return m_cknHasBeenSet; }
81 inline void SetCkn(const Aws::String& value) { m_cknHasBeenSet = true; m_ckn = value; }
82 inline void SetCkn(Aws::String&& value) { m_cknHasBeenSet = true; m_ckn = std::move(value); }
83 inline void SetCkn(const char* value) { m_cknHasBeenSet = true; m_ckn.assign(value); }
84 inline AssociateMacSecKeyRequest& WithCkn(const Aws::String& value) { SetCkn(value); return *this;}
85 inline AssociateMacSecKeyRequest& WithCkn(Aws::String&& value) { SetCkn(std::move(value)); return *this;}
86 inline AssociateMacSecKeyRequest& WithCkn(const char* value) { SetCkn(value); return *this;}
88
90
97 inline const Aws::String& GetCak() const{ return m_cak; }
98 inline bool CakHasBeenSet() const { return m_cakHasBeenSet; }
99 inline void SetCak(const Aws::String& value) { m_cakHasBeenSet = true; m_cak = value; }
100 inline void SetCak(Aws::String&& value) { m_cakHasBeenSet = true; m_cak = std::move(value); }
101 inline void SetCak(const char* value) { m_cakHasBeenSet = true; m_cak.assign(value); }
102 inline AssociateMacSecKeyRequest& WithCak(const Aws::String& value) { SetCak(value); return *this;}
103 inline AssociateMacSecKeyRequest& WithCak(Aws::String&& value) { SetCak(std::move(value)); return *this;}
104 inline AssociateMacSecKeyRequest& WithCak(const char* value) { SetCak(value); return *this;}
106 private:
107
108 Aws::String m_connectionId;
109 bool m_connectionIdHasBeenSet = false;
110
111 Aws::String m_secretARN;
112 bool m_secretARNHasBeenSet = false;
113
114 Aws::String m_ckn;
115 bool m_cknHasBeenSet = false;
116
117 Aws::String m_cak;
118 bool m_cakHasBeenSet = false;
119 };
120
121} // namespace Model
122} // namespace DirectConnect
123} // namespace Aws
AssociateMacSecKeyRequest & WithCkn(const Aws::String &value)
AWS_DIRECTCONNECT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AssociateMacSecKeyRequest & WithCak(const char *value)
AssociateMacSecKeyRequest & WithConnectionId(const char *value)
AssociateMacSecKeyRequest & WithSecretARN(const Aws::String &value)
AssociateMacSecKeyRequest & WithConnectionId(Aws::String &&value)
AssociateMacSecKeyRequest & WithConnectionId(const Aws::String &value)
AssociateMacSecKeyRequest & WithSecretARN(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
AWS_DIRECTCONNECT_API Aws::String SerializePayload() const override
AssociateMacSecKeyRequest & WithSecretARN(const char *value)
AssociateMacSecKeyRequest & WithCkn(Aws::String &&value)
AssociateMacSecKeyRequest & WithCkn(const char *value)
AssociateMacSecKeyRequest & WithCak(Aws::String &&value)
AssociateMacSecKeyRequest & WithCak(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String