AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AttachLoadBalancerToSubnetsRequest.h
1
6#pragma once
7#include <aws/elasticloadbalancing/ElasticLoadBalancing_EXPORTS.h>
8#include <aws/elasticloadbalancing/ElasticLoadBalancingRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ElasticLoadBalancing
16{
17namespace Model
18{
19
27 {
28 public:
29 AWS_ELASTICLOADBALANCING_API AttachLoadBalancerToSubnetsRequest();
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "AttachLoadBalancerToSubnets"; }
36
37 AWS_ELASTICLOADBALANCING_API Aws::String SerializePayload() const override;
38
39 protected:
40 AWS_ELASTICLOADBALANCING_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
41
42 public:
43
45
48 inline const Aws::String& GetLoadBalancerName() const{ return m_loadBalancerName; }
49 inline bool LoadBalancerNameHasBeenSet() const { return m_loadBalancerNameHasBeenSet; }
50 inline void SetLoadBalancerName(const Aws::String& value) { m_loadBalancerNameHasBeenSet = true; m_loadBalancerName = value; }
51 inline void SetLoadBalancerName(Aws::String&& value) { m_loadBalancerNameHasBeenSet = true; m_loadBalancerName = std::move(value); }
52 inline void SetLoadBalancerName(const char* value) { m_loadBalancerNameHasBeenSet = true; m_loadBalancerName.assign(value); }
55 inline AttachLoadBalancerToSubnetsRequest& WithLoadBalancerName(const char* value) { SetLoadBalancerName(value); return *this;}
57
59
63 inline const Aws::Vector<Aws::String>& GetSubnets() const{ return m_subnets; }
64 inline bool SubnetsHasBeenSet() const { return m_subnetsHasBeenSet; }
65 inline void SetSubnets(const Aws::Vector<Aws::String>& value) { m_subnetsHasBeenSet = true; m_subnets = value; }
66 inline void SetSubnets(Aws::Vector<Aws::String>&& value) { m_subnetsHasBeenSet = true; m_subnets = std::move(value); }
68 inline AttachLoadBalancerToSubnetsRequest& WithSubnets(Aws::Vector<Aws::String>&& value) { SetSubnets(std::move(value)); return *this;}
69 inline AttachLoadBalancerToSubnetsRequest& AddSubnets(const Aws::String& value) { m_subnetsHasBeenSet = true; m_subnets.push_back(value); return *this; }
70 inline AttachLoadBalancerToSubnetsRequest& AddSubnets(Aws::String&& value) { m_subnetsHasBeenSet = true; m_subnets.push_back(std::move(value)); return *this; }
71 inline AttachLoadBalancerToSubnetsRequest& AddSubnets(const char* value) { m_subnetsHasBeenSet = true; m_subnets.push_back(value); return *this; }
73 private:
74
75 Aws::String m_loadBalancerName;
76 bool m_loadBalancerNameHasBeenSet = false;
77
79 bool m_subnetsHasBeenSet = false;
80 };
81
82} // namespace Model
83} // namespace ElasticLoadBalancing
84} // namespace Aws
AttachLoadBalancerToSubnetsRequest & WithLoadBalancerName(const Aws::String &value)
AWS_ELASTICLOADBALANCING_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_ELASTICLOADBALANCING_API Aws::String SerializePayload() const override
AttachLoadBalancerToSubnetsRequest & WithSubnets(const Aws::Vector< Aws::String > &value)
AttachLoadBalancerToSubnetsRequest & WithLoadBalancerName(const char *value)
AttachLoadBalancerToSubnetsRequest & WithLoadBalancerName(Aws::String &&value)
AttachLoadBalancerToSubnetsRequest & WithSubnets(Aws::Vector< Aws::String > &&value)
AttachLoadBalancerToSubnetsRequest & AddSubnets(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector