AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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:
25 AWS_APPRUNNER_API UpdateVpcIngressConnectionRequest() = default;
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 template<typename VpcIngressConnectionArnT = Aws::String>
46 void SetVpcIngressConnectionArn(VpcIngressConnectionArnT&& value) { m_vpcIngressConnectionArnHasBeenSet = true; m_vpcIngressConnectionArn = std::forward<VpcIngressConnectionArnT>(value); }
47 template<typename VpcIngressConnectionArnT = Aws::String>
48 UpdateVpcIngressConnectionRequest& WithVpcIngressConnectionArn(VpcIngressConnectionArnT&& value) { SetVpcIngressConnectionArn(std::forward<VpcIngressConnectionArnT>(value)); return *this;}
50
52
57 inline const IngressVpcConfiguration& GetIngressVpcConfiguration() const { return m_ingressVpcConfiguration; }
58 inline bool IngressVpcConfigurationHasBeenSet() const { return m_ingressVpcConfigurationHasBeenSet; }
59 template<typename IngressVpcConfigurationT = IngressVpcConfiguration>
60 void SetIngressVpcConfiguration(IngressVpcConfigurationT&& value) { m_ingressVpcConfigurationHasBeenSet = true; m_ingressVpcConfiguration = std::forward<IngressVpcConfigurationT>(value); }
61 template<typename IngressVpcConfigurationT = IngressVpcConfiguration>
62 UpdateVpcIngressConnectionRequest& WithIngressVpcConfiguration(IngressVpcConfigurationT&& value) { SetIngressVpcConfiguration(std::forward<IngressVpcConfigurationT>(value)); return *this;}
64 private:
65
66 Aws::String m_vpcIngressConnectionArn;
67 bool m_vpcIngressConnectionArnHasBeenSet = false;
68
69 IngressVpcConfiguration m_ingressVpcConfiguration;
70 bool m_ingressVpcConfigurationHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace AppRunner
75} // namespace Aws
AWS_APPRUNNER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateVpcIngressConnectionRequest & WithIngressVpcConfiguration(IngressVpcConfigurationT &&value)
UpdateVpcIngressConnectionRequest & WithVpcIngressConnectionArn(VpcIngressConnectionArnT &&value)
AWS_APPRUNNER_API UpdateVpcIngressConnectionRequest()=default
AWS_APPRUNNER_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String