170 lines
5.4 KiB
C++
170 lines
5.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2_EXPORTS.h>
|
|
#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2Request.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ElasticLoadBalancingv2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_ELASTICLOADBALANCINGV2_API DescribeSSLPoliciesRequest : public ElasticLoadBalancingv2Request
|
|
{
|
|
public:
|
|
DescribeSSLPoliciesRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "DescribeSSLPolicies"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The names of the policies.</p>
|
|
*/
|
|
inline const Aws::Vector<Aws::String>& GetNames() const{ return m_names; }
|
|
|
|
/**
|
|
* <p>The names of the policies.</p>
|
|
*/
|
|
inline bool NamesHasBeenSet() const { return m_namesHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The names of the policies.</p>
|
|
*/
|
|
inline void SetNames(const Aws::Vector<Aws::String>& value) { m_namesHasBeenSet = true; m_names = value; }
|
|
|
|
/**
|
|
* <p>The names of the policies.</p>
|
|
*/
|
|
inline void SetNames(Aws::Vector<Aws::String>&& value) { m_namesHasBeenSet = true; m_names = std::move(value); }
|
|
|
|
/**
|
|
* <p>The names of the policies.</p>
|
|
*/
|
|
inline DescribeSSLPoliciesRequest& WithNames(const Aws::Vector<Aws::String>& value) { SetNames(value); return *this;}
|
|
|
|
/**
|
|
* <p>The names of the policies.</p>
|
|
*/
|
|
inline DescribeSSLPoliciesRequest& WithNames(Aws::Vector<Aws::String>&& value) { SetNames(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The names of the policies.</p>
|
|
*/
|
|
inline DescribeSSLPoliciesRequest& AddNames(const Aws::String& value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The names of the policies.</p>
|
|
*/
|
|
inline DescribeSSLPoliciesRequest& AddNames(Aws::String&& value) { m_namesHasBeenSet = true; m_names.push_back(std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The names of the policies.</p>
|
|
*/
|
|
inline DescribeSSLPoliciesRequest& AddNames(const char* value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The marker for the next set of results. (You received this marker from a
|
|
* previous call.)</p>
|
|
*/
|
|
inline const Aws::String& GetMarker() const{ return m_marker; }
|
|
|
|
/**
|
|
* <p>The marker for the next set of results. (You received this marker from a
|
|
* previous call.)</p>
|
|
*/
|
|
inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The marker for the next set of results. (You received this marker from a
|
|
* previous call.)</p>
|
|
*/
|
|
inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
|
|
|
|
/**
|
|
* <p>The marker for the next set of results. (You received this marker from a
|
|
* previous call.)</p>
|
|
*/
|
|
inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
|
|
|
|
/**
|
|
* <p>The marker for the next set of results. (You received this marker from a
|
|
* previous call.)</p>
|
|
*/
|
|
inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
|
|
|
|
/**
|
|
* <p>The marker for the next set of results. (You received this marker from a
|
|
* previous call.)</p>
|
|
*/
|
|
inline DescribeSSLPoliciesRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
|
|
|
|
/**
|
|
* <p>The marker for the next set of results. (You received this marker from a
|
|
* previous call.)</p>
|
|
*/
|
|
inline DescribeSSLPoliciesRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The marker for the next set of results. (You received this marker from a
|
|
* previous call.)</p>
|
|
*/
|
|
inline DescribeSSLPoliciesRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The maximum number of results to return with this call.</p>
|
|
*/
|
|
inline int GetPageSize() const{ return m_pageSize; }
|
|
|
|
/**
|
|
* <p>The maximum number of results to return with this call.</p>
|
|
*/
|
|
inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The maximum number of results to return with this call.</p>
|
|
*/
|
|
inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
|
|
|
|
/**
|
|
* <p>The maximum number of results to return with this call.</p>
|
|
*/
|
|
inline DescribeSSLPoliciesRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::Vector<Aws::String> m_names;
|
|
bool m_namesHasBeenSet;
|
|
|
|
Aws::String m_marker;
|
|
bool m_markerHasBeenSet;
|
|
|
|
int m_pageSize;
|
|
bool m_pageSizeHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ElasticLoadBalancingv2
|
|
} // namespace Aws
|