AWS SDK for C++

AWS SDK for C++ Version 1.11.787

Loading...
Searching...
No Matches
IdCConfiguration.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/securityagent/SecurityAgent_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace SecurityAgent {
20namespace Model {
21
29 public:
30 AWS_SECURITYAGENT_API IdCConfiguration() = default;
31 AWS_SECURITYAGENT_API IdCConfiguration(Aws::Utils::Json::JsonView jsonValue);
32 AWS_SECURITYAGENT_API IdCConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_SECURITYAGENT_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetIdcApplicationArn() const { return m_idcApplicationArn; }
41 inline bool IdcApplicationArnHasBeenSet() const { return m_idcApplicationArnHasBeenSet; }
42 template <typename IdcApplicationArnT = Aws::String>
43 void SetIdcApplicationArn(IdcApplicationArnT&& value) {
44 m_idcApplicationArnHasBeenSet = true;
45 m_idcApplicationArn = std::forward<IdcApplicationArnT>(value);
46 }
47 template <typename IdcApplicationArnT = Aws::String>
48 IdCConfiguration& WithIdcApplicationArn(IdcApplicationArnT&& value) {
49 SetIdcApplicationArn(std::forward<IdcApplicationArnT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetIdcInstanceArn() const { return m_idcInstanceArn; }
59 inline bool IdcInstanceArnHasBeenSet() const { return m_idcInstanceArnHasBeenSet; }
60 template <typename IdcInstanceArnT = Aws::String>
61 void SetIdcInstanceArn(IdcInstanceArnT&& value) {
62 m_idcInstanceArnHasBeenSet = true;
63 m_idcInstanceArn = std::forward<IdcInstanceArnT>(value);
64 }
65 template <typename IdcInstanceArnT = Aws::String>
66 IdCConfiguration& WithIdcInstanceArn(IdcInstanceArnT&& value) {
67 SetIdcInstanceArn(std::forward<IdcInstanceArnT>(value));
68 return *this;
69 }
71 private:
72 Aws::String m_idcApplicationArn;
73
74 Aws::String m_idcInstanceArn;
75 bool m_idcApplicationArnHasBeenSet = false;
76 bool m_idcInstanceArnHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace SecurityAgent
81} // namespace Aws
AWS_SECURITYAGENT_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetIdcInstanceArn() const
void SetIdcApplicationArn(IdcApplicationArnT &&value)
AWS_SECURITYAGENT_API IdCConfiguration(Aws::Utils::Json::JsonView jsonValue)
IdCConfiguration & WithIdcInstanceArn(IdcInstanceArnT &&value)
void SetIdcInstanceArn(IdcInstanceArnT &&value)
AWS_SECURITYAGENT_API IdCConfiguration()=default
AWS_SECURITYAGENT_API IdCConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
IdCConfiguration & WithIdcApplicationArn(IdcApplicationArnT &&value)
const Aws::String & GetIdcApplicationArn() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue