AWS SDK for C++

AWS SDK for C++ Version 1.11.816

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
39 inline const Aws::String& GetIdcApplicationArn() const { return m_idcApplicationArn; }
40 inline bool IdcApplicationArnHasBeenSet() const { return m_idcApplicationArnHasBeenSet; }
41 template <typename IdcApplicationArnT = Aws::String>
42 void SetIdcApplicationArn(IdcApplicationArnT&& value) {
43 m_idcApplicationArnHasBeenSet = true;
44 m_idcApplicationArn = std::forward<IdcApplicationArnT>(value);
45 }
46 template <typename IdcApplicationArnT = Aws::String>
47 IdCConfiguration& WithIdcApplicationArn(IdcApplicationArnT&& value) {
48 SetIdcApplicationArn(std::forward<IdcApplicationArnT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetIdcInstanceArn() const { return m_idcInstanceArn; }
58 inline bool IdcInstanceArnHasBeenSet() const { return m_idcInstanceArnHasBeenSet; }
59 template <typename IdcInstanceArnT = Aws::String>
60 void SetIdcInstanceArn(IdcInstanceArnT&& value) {
61 m_idcInstanceArnHasBeenSet = true;
62 m_idcInstanceArn = std::forward<IdcInstanceArnT>(value);
63 }
64 template <typename IdcInstanceArnT = Aws::String>
65 IdCConfiguration& WithIdcInstanceArn(IdcInstanceArnT&& value) {
66 SetIdcInstanceArn(std::forward<IdcInstanceArnT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_idcApplicationArn;
72
73 Aws::String m_idcInstanceArn;
74 bool m_idcApplicationArnHasBeenSet = false;
75 bool m_idcInstanceArnHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace SecurityAgent
80} // 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