AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateVpcIngressConnectionRequest.h
1
6#pragma once
7#include <aws/apprunner/AppRunner_EXPORTS.h>
8#include <aws/apprunner/AppRunnerRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/apprunner/model/IngressVpcConfiguration.h>
11#include <utility>
12
13namespace Aws
14{
15namespace AppRunner
16{
17namespace Model
18{
19
23 {
24 public:
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateVpcIngressConnection"; }
32
33 AWS_APPRUNNER_API Aws::String SerializePayload() const override;
34
36
37
39
43 inline const Aws::String& GetVpcIngressConnectionArn() const{ return m_vpcIngressConnectionArn; }
44 inline bool VpcIngressConnectionArnHasBeenSet() const { return m_vpcIngressConnectionArnHasBeenSet; }
45 inline void SetVpcIngressConnectionArn(const Aws::String& value) { m_vpcIngressConnectionArnHasBeenSet = true; m_vpcIngressConnectionArn = value; }
46 inline void SetVpcIngressConnectionArn(Aws::String&& value) { m_vpcIngressConnectionArnHasBeenSet = true; m_vpcIngressConnectionArn = std::move(value); }
47 inline void SetVpcIngressConnectionArn(const char* value) { m_vpcIngressConnectionArnHasBeenSet = true; m_vpcIngressConnectionArn.assign(value); }
52
54
59 inline const IngressVpcConfiguration& GetIngressVpcConfiguration() const{ return m_ingressVpcConfiguration; }
60 inline bool IngressVpcConfigurationHasBeenSet() const { return m_ingressVpcConfigurationHasBeenSet; }
61 inline void SetIngressVpcConfiguration(const IngressVpcConfiguration& value) { m_ingressVpcConfigurationHasBeenSet = true; m_ingressVpcConfiguration = value; }
62 inline void SetIngressVpcConfiguration(IngressVpcConfiguration&& value) { m_ingressVpcConfigurationHasBeenSet = true; m_ingressVpcConfiguration = std::move(value); }
66 private:
67
68 Aws::String m_vpcIngressConnectionArn;
69 bool m_vpcIngressConnectionArnHasBeenSet = false;
70
71 IngressVpcConfiguration m_ingressVpcConfiguration;
72 bool m_ingressVpcConfigurationHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace AppRunner
77} // namespace Aws
AWS_APPRUNNER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateVpcIngressConnectionRequest & WithIngressVpcConfiguration(IngressVpcConfiguration &&value)
UpdateVpcIngressConnectionRequest & WithVpcIngressConnectionArn(const Aws::String &value)
UpdateVpcIngressConnectionRequest & WithVpcIngressConnectionArn(Aws::String &&value)
UpdateVpcIngressConnectionRequest & WithIngressVpcConfiguration(const IngressVpcConfiguration &value)
AWS_APPRUNNER_API Aws::String SerializePayload() const override
UpdateVpcIngressConnectionRequest & WithVpcIngressConnectionArn(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String