AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeSSLPoliciesRequest.h
1
6#pragma once
7#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2_EXPORTS.h>
8#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2Request.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/elasticloadbalancingv2/model/LoadBalancerTypeEnum.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ElasticLoadBalancingv2
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_ELASTICLOADBALANCINGV2_API DescribeSSLPoliciesRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "DescribeSSLPolicies"; }
33
34 AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override;
35
36 protected:
37 AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
38
39 public:
40
42
45 inline const Aws::Vector<Aws::String>& GetNames() const{ return m_names; }
46 inline bool NamesHasBeenSet() const { return m_namesHasBeenSet; }
47 inline void SetNames(const Aws::Vector<Aws::String>& value) { m_namesHasBeenSet = true; m_names = value; }
48 inline void SetNames(Aws::Vector<Aws::String>&& value) { m_namesHasBeenSet = true; m_names = std::move(value); }
49 inline DescribeSSLPoliciesRequest& WithNames(const Aws::Vector<Aws::String>& value) { SetNames(value); return *this;}
50 inline DescribeSSLPoliciesRequest& WithNames(Aws::Vector<Aws::String>&& value) { SetNames(std::move(value)); return *this;}
51 inline DescribeSSLPoliciesRequest& AddNames(const Aws::String& value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
52 inline DescribeSSLPoliciesRequest& AddNames(Aws::String&& value) { m_namesHasBeenSet = true; m_names.push_back(std::move(value)); return *this; }
53 inline DescribeSSLPoliciesRequest& AddNames(const char* value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
55
57
61 inline const Aws::String& GetMarker() const{ return m_marker; }
62 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
63 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
64 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
65 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
66 inline DescribeSSLPoliciesRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
67 inline DescribeSSLPoliciesRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
68 inline DescribeSSLPoliciesRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
70
72
75 inline int GetPageSize() const{ return m_pageSize; }
76 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
77 inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
78 inline DescribeSSLPoliciesRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
80
82
86 inline const LoadBalancerTypeEnum& GetLoadBalancerType() const{ return m_loadBalancerType; }
87 inline bool LoadBalancerTypeHasBeenSet() const { return m_loadBalancerTypeHasBeenSet; }
88 inline void SetLoadBalancerType(const LoadBalancerTypeEnum& value) { m_loadBalancerTypeHasBeenSet = true; m_loadBalancerType = value; }
89 inline void SetLoadBalancerType(LoadBalancerTypeEnum&& value) { m_loadBalancerTypeHasBeenSet = true; m_loadBalancerType = std::move(value); }
93 private:
94
96 bool m_namesHasBeenSet = false;
97
98 Aws::String m_marker;
99 bool m_markerHasBeenSet = false;
100
101 int m_pageSize;
102 bool m_pageSizeHasBeenSet = false;
103
104 LoadBalancerTypeEnum m_loadBalancerType;
105 bool m_loadBalancerTypeHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace ElasticLoadBalancingv2
110} // namespace Aws
DescribeSSLPoliciesRequest & WithMarker(Aws::String &&value)
AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeSSLPoliciesRequest & AddNames(const Aws::String &value)
AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override
DescribeSSLPoliciesRequest & WithNames(const Aws::Vector< Aws::String > &value)
DescribeSSLPoliciesRequest & WithMarker(const Aws::String &value)
DescribeSSLPoliciesRequest & WithLoadBalancerType(LoadBalancerTypeEnum &&value)
DescribeSSLPoliciesRequest & WithNames(Aws::Vector< Aws::String > &&value)
DescribeSSLPoliciesRequest & AddNames(Aws::String &&value)
DescribeSSLPoliciesRequest & WithLoadBalancerType(const LoadBalancerTypeEnum &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector