AWS SDK for C++

AWS SDK for C++ Version 1.11.612

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() = default;
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 template<typename NamesT = Aws::Vector<Aws::String>>
48 void SetNames(NamesT&& value) { m_namesHasBeenSet = true; m_names = std::forward<NamesT>(value); }
49 template<typename NamesT = Aws::Vector<Aws::String>>
50 DescribeSSLPoliciesRequest& WithNames(NamesT&& value) { SetNames(std::forward<NamesT>(value)); return *this;}
51 template<typename NamesT = Aws::String>
52 DescribeSSLPoliciesRequest& AddNames(NamesT&& value) { m_namesHasBeenSet = true; m_names.emplace_back(std::forward<NamesT>(value)); return *this; }
54
56
60 inline const Aws::String& GetMarker() const { return m_marker; }
61 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
62 template<typename MarkerT = Aws::String>
63 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
64 template<typename MarkerT = Aws::String>
65 DescribeSSLPoliciesRequest& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
67
69
72 inline int GetPageSize() const { return m_pageSize; }
73 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
74 inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
75 inline DescribeSSLPoliciesRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
77
79
83 inline LoadBalancerTypeEnum GetLoadBalancerType() const { return m_loadBalancerType; }
84 inline bool LoadBalancerTypeHasBeenSet() const { return m_loadBalancerTypeHasBeenSet; }
85 inline void SetLoadBalancerType(LoadBalancerTypeEnum value) { m_loadBalancerTypeHasBeenSet = true; m_loadBalancerType = value; }
88 private:
89
91 bool m_namesHasBeenSet = false;
92
93 Aws::String m_marker;
94 bool m_markerHasBeenSet = false;
95
96 int m_pageSize{0};
97 bool m_pageSizeHasBeenSet = false;
98
100 bool m_loadBalancerTypeHasBeenSet = false;
101 };
102
103} // namespace Model
104} // namespace ElasticLoadBalancingv2
105} // namespace Aws
DescribeSSLPoliciesRequest & WithLoadBalancerType(LoadBalancerTypeEnum value)
AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_ELASTICLOADBALANCINGV2_API DescribeSSLPoliciesRequest()=default
AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector