AWS SDK for C++  0.14.3
AWS SDK for C++
DescribeSSLPoliciesRequest.h
Go to the documentation of this file.
1 /*
2 * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License").
5 * You may not use this file except in compliance with the License.
6 * A copy of the License is located at
7 *
8 * http://aws.amazon.com/apache2.0
9 *
10 * or in the "license" file accompanying this file. This file is distributed
11 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12 * express or implied. See the License for the specific language governing
13 * permissions and limitations under the License.
14 */
15 #pragma once
20 
21 namespace Aws
22 {
23 namespace ElasticLoadBalancingv2
24 {
25 namespace Model
26 {
27 
32  {
33  public:
35  Aws::String SerializePayload() const override;
36 
40  inline const Aws::Vector<Aws::String>& GetNames() const{ return m_names; }
41 
45  inline void SetNames(const Aws::Vector<Aws::String>& value) { m_namesHasBeenSet = true; m_names = value; }
46 
50  inline void SetNames(Aws::Vector<Aws::String>&& value) { m_namesHasBeenSet = true; m_names = value; }
51 
55  inline DescribeSSLPoliciesRequest& WithNames(const Aws::Vector<Aws::String>& value) { SetNames(value); return *this;}
56 
60  inline DescribeSSLPoliciesRequest& WithNames(Aws::Vector<Aws::String>&& value) { SetNames(value); return *this;}
61 
65  inline DescribeSSLPoliciesRequest& AddNames(const Aws::String& value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
66 
70  inline DescribeSSLPoliciesRequest& AddNames(Aws::String&& value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
71 
75  inline DescribeSSLPoliciesRequest& AddNames(const char* value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
76 
81  inline const Aws::String& GetMarker() const{ return m_marker; }
82 
87  inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
88 
93  inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = value; }
94 
99  inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
100 
105  inline DescribeSSLPoliciesRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
106 
111  inline DescribeSSLPoliciesRequest& WithMarker(Aws::String&& value) { SetMarker(value); return *this;}
112 
117  inline DescribeSSLPoliciesRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
118 
122  inline int GetPageSize() const{ return m_pageSize; }
123 
127  inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
128 
132  inline DescribeSSLPoliciesRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
133 
134  private:
135  Aws::Vector<Aws::String> m_names;
136  bool m_namesHasBeenSet;
137  Aws::String m_marker;
138  bool m_markerHasBeenSet;
139  int m_pageSize;
140  bool m_pageSizeHasBeenSet;
141  };
142 
143 } // namespace Model
144 } // namespace ElasticLoadBalancingv2
145 } // namespace Aws
DescribeSSLPoliciesRequest & WithMarker(const Aws::String &value)
DescribeSSLPoliciesRequest & WithMarker(Aws::String &&value)
std::vector< T, Aws::Allocator< T > > Vector
Definition: AWSVector.h:27
DescribeSSLPoliciesRequest & WithNames(const Aws::Vector< Aws::String > &value)
DescribeSSLPoliciesRequest & AddNames(Aws::String &&value)
DescribeSSLPoliciesRequest & AddNames(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Definition: AWSString.h:97
DescribeSSLPoliciesRequest & WithNames(Aws::Vector< Aws::String > &&value)
#define AWS_ELASTICLOADBALANCINGV2_API
JSON (JavaScript Object Notation).