AWS SDK for C++

AWS SDK for C++ Version 1.11.612

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#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
35 {
36 public:
37 AWS_APPRUNNER_API IngressVpcConfiguration() = default;
40 AWS_APPRUNNER_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const Aws::String& GetVpcId() const { return m_vpcId; }
48 inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; }
49 template<typename VpcIdT = Aws::String>
50 void SetVpcId(VpcIdT&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::forward<VpcIdT>(value); }
51 template<typename VpcIdT = Aws::String>
52 IngressVpcConfiguration& WithVpcId(VpcIdT&& value) { SetVpcId(std::forward<VpcIdT>(value)); return *this;}
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) { m_vpcEndpointIdHasBeenSet = true; m_vpcEndpointId = std::forward<VpcEndpointIdT>(value); }
63 template<typename VpcEndpointIdT = Aws::String>
64 IngressVpcConfiguration& WithVpcEndpointId(VpcEndpointIdT&& value) { SetVpcEndpointId(std::forward<VpcEndpointIdT>(value)); return *this;}
66 private:
67
68 Aws::String m_vpcId;
69 bool m_vpcIdHasBeenSet = false;
70
71 Aws::String m_vpcEndpointId;
72 bool m_vpcEndpointIdHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace AppRunner
77} // 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