AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
IngressVpcConfiguration.h
1
6#pragma once
7#include <aws/apprunner/AppRunner_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace AppRunner {
20namespace Model {
21
31 public:
32 AWS_APPRUNNER_API IngressVpcConfiguration() = default;
35 AWS_APPRUNNER_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::String& GetVpcId() const { return m_vpcId; }
42 inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; }
43 template <typename VpcIdT = Aws::String>
44 void SetVpcId(VpcIdT&& value) {
45 m_vpcIdHasBeenSet = true;
46 m_vpcId = std::forward<VpcIdT>(value);
47 }
48 template <typename VpcIdT = Aws::String>
50 SetVpcId(std::forward<VpcIdT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetVpcEndpointId() const { return m_vpcEndpointId; }
60 inline bool VpcEndpointIdHasBeenSet() const { return m_vpcEndpointIdHasBeenSet; }
61 template <typename VpcEndpointIdT = Aws::String>
62 void SetVpcEndpointId(VpcEndpointIdT&& value) {
63 m_vpcEndpointIdHasBeenSet = true;
64 m_vpcEndpointId = std::forward<VpcEndpointIdT>(value);
65 }
66 template <typename VpcEndpointIdT = Aws::String>
67 IngressVpcConfiguration& WithVpcEndpointId(VpcEndpointIdT&& value) {
68 SetVpcEndpointId(std::forward<VpcEndpointIdT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_vpcId;
74
75 Aws::String m_vpcEndpointId;
76 bool m_vpcIdHasBeenSet = false;
77 bool m_vpcEndpointIdHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace AppRunner
82} // namespace Aws
AWS_APPRUNNER_API IngressVpcConfiguration()=default
AWS_APPRUNNER_API Aws::Utils::Json::JsonValue Jsonize() const
IngressVpcConfiguration & WithVpcEndpointId(VpcEndpointIdT &&value)
IngressVpcConfiguration & WithVpcId(VpcIdT &&value)
AWS_APPRUNNER_API IngressVpcConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_APPRUNNER_API IngressVpcConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue