AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
VpcDNSTarget.h
1
6#pragma once
7#include <aws/apprunner/AppRunner_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace AppRunner
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_APPRUNNER_API VpcDNSTarget() = default;
36 AWS_APPRUNNER_API VpcDNSTarget(Aws::Utils::Json::JsonView jsonValue);
37 AWS_APPRUNNER_API VpcDNSTarget& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_APPRUNNER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetVpcIngressConnectionArn() const { return m_vpcIngressConnectionArn; }
47 inline bool VpcIngressConnectionArnHasBeenSet() const { return m_vpcIngressConnectionArnHasBeenSet; }
48 template<typename VpcIngressConnectionArnT = Aws::String>
49 void SetVpcIngressConnectionArn(VpcIngressConnectionArnT&& value) { m_vpcIngressConnectionArnHasBeenSet = true; m_vpcIngressConnectionArn = std::forward<VpcIngressConnectionArnT>(value); }
50 template<typename VpcIngressConnectionArnT = Aws::String>
51 VpcDNSTarget& WithVpcIngressConnectionArn(VpcIngressConnectionArnT&& value) { SetVpcIngressConnectionArn(std::forward<VpcIngressConnectionArnT>(value)); return *this;}
53
55
59 inline const Aws::String& GetVpcId() const { return m_vpcId; }
60 inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; }
61 template<typename VpcIdT = Aws::String>
62 void SetVpcId(VpcIdT&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::forward<VpcIdT>(value); }
63 template<typename VpcIdT = Aws::String>
64 VpcDNSTarget& WithVpcId(VpcIdT&& value) { SetVpcId(std::forward<VpcIdT>(value)); return *this;}
66
68
72 inline const Aws::String& GetDomainName() const { return m_domainName; }
73 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
74 template<typename DomainNameT = Aws::String>
75 void SetDomainName(DomainNameT&& value) { m_domainNameHasBeenSet = true; m_domainName = std::forward<DomainNameT>(value); }
76 template<typename DomainNameT = Aws::String>
77 VpcDNSTarget& WithDomainName(DomainNameT&& value) { SetDomainName(std::forward<DomainNameT>(value)); return *this;}
79 private:
80
81 Aws::String m_vpcIngressConnectionArn;
82 bool m_vpcIngressConnectionArnHasBeenSet = false;
83
84 Aws::String m_vpcId;
85 bool m_vpcIdHasBeenSet = false;
86
87 Aws::String m_domainName;
88 bool m_domainNameHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace AppRunner
93} // namespace Aws
void SetVpcIngressConnectionArn(VpcIngressConnectionArnT &&value)
AWS_APPRUNNER_API VpcDNSTarget()=default
const Aws::String & GetVpcId() const
AWS_APPRUNNER_API VpcDNSTarget & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetDomainName(DomainNameT &&value)
AWS_APPRUNNER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_APPRUNNER_API VpcDNSTarget(Aws::Utils::Json::JsonView jsonValue)
VpcDNSTarget & WithVpcIngressConnectionArn(VpcIngressConnectionArnT &&value)
VpcDNSTarget & WithDomainName(DomainNameT &&value)
VpcDNSTarget & WithVpcId(VpcIdT &&value)
const Aws::String & GetVpcIngressConnectionArn() const
const Aws::String & GetDomainName() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue