AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
VpcIngressConnectionSummary.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
34 {
35 public:
36 AWS_APPRUNNER_API VpcIngressConnectionSummary();
39 AWS_APPRUNNER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetVpcIngressConnectionArn() const{ return m_vpcIngressConnectionArn; }
47 inline bool VpcIngressConnectionArnHasBeenSet() const { return m_vpcIngressConnectionArnHasBeenSet; }
48 inline void SetVpcIngressConnectionArn(const Aws::String& value) { m_vpcIngressConnectionArnHasBeenSet = true; m_vpcIngressConnectionArn = value; }
49 inline void SetVpcIngressConnectionArn(Aws::String&& value) { m_vpcIngressConnectionArnHasBeenSet = true; m_vpcIngressConnectionArn = std::move(value); }
50 inline void SetVpcIngressConnectionArn(const char* value) { m_vpcIngressConnectionArnHasBeenSet = true; m_vpcIngressConnectionArn.assign(value); }
55
57
61 inline const Aws::String& GetServiceArn() const{ return m_serviceArn; }
62 inline bool ServiceArnHasBeenSet() const { return m_serviceArnHasBeenSet; }
63 inline void SetServiceArn(const Aws::String& value) { m_serviceArnHasBeenSet = true; m_serviceArn = value; }
64 inline void SetServiceArn(Aws::String&& value) { m_serviceArnHasBeenSet = true; m_serviceArn = std::move(value); }
65 inline void SetServiceArn(const char* value) { m_serviceArnHasBeenSet = true; m_serviceArn.assign(value); }
66 inline VpcIngressConnectionSummary& WithServiceArn(const Aws::String& value) { SetServiceArn(value); return *this;}
67 inline VpcIngressConnectionSummary& WithServiceArn(Aws::String&& value) { SetServiceArn(std::move(value)); return *this;}
68 inline VpcIngressConnectionSummary& WithServiceArn(const char* value) { SetServiceArn(value); return *this;}
70 private:
71
72 Aws::String m_vpcIngressConnectionArn;
73 bool m_vpcIngressConnectionArnHasBeenSet = false;
74
75 Aws::String m_serviceArn;
76 bool m_serviceArnHasBeenSet = false;
77 };
78
79} // namespace Model
80} // namespace AppRunner
81} // namespace Aws
VpcIngressConnectionSummary & WithServiceArn(Aws::String &&value)
AWS_APPRUNNER_API VpcIngressConnectionSummary(Aws::Utils::Json::JsonView jsonValue)
VpcIngressConnectionSummary & WithServiceArn(const Aws::String &value)
VpcIngressConnectionSummary & WithVpcIngressConnectionArn(const Aws::String &value)
VpcIngressConnectionSummary & WithServiceArn(const char *value)
AWS_APPRUNNER_API VpcIngressConnectionSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_APPRUNNER_API Aws::Utils::Json::JsonValue Jsonize() const
VpcIngressConnectionSummary & WithVpcIngressConnectionArn(const char *value)
VpcIngressConnectionSummary & WithVpcIngressConnectionArn(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue