/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Input for the ListCACertificates operation.See Also:
AWS
* API Reference
The result page size.
*/ inline int GetPageSize() const{ return m_pageSize; } /** *The result page size.
*/ inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; } /** *The result page size.
*/ inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; } /** *The result page size.
*/ inline ListCACertificatesRequest& WithPageSize(int value) { SetPageSize(value); return *this;} /** *The marker for the next set of results.
*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *The marker for the next set of results.
*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *The marker for the next set of results.
*/ inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; } /** *The marker for the next set of results.
*/ inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); } /** *The marker for the next set of results.
*/ inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); } /** *The marker for the next set of results.
*/ inline ListCACertificatesRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *The marker for the next set of results.
*/ inline ListCACertificatesRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *The marker for the next set of results.
*/ inline ListCACertificatesRequest& WithMarker(const char* value) { SetMarker(value); return *this;} /** *Determines the order of the results.
*/ inline bool GetAscendingOrder() const{ return m_ascendingOrder; } /** *Determines the order of the results.
*/ inline bool AscendingOrderHasBeenSet() const { return m_ascendingOrderHasBeenSet; } /** *Determines the order of the results.
*/ inline void SetAscendingOrder(bool value) { m_ascendingOrderHasBeenSet = true; m_ascendingOrder = value; } /** *Determines the order of the results.
*/ inline ListCACertificatesRequest& WithAscendingOrder(bool value) { SetAscendingOrder(value); return *this;} /** *The name of the provisioning template.
*/ inline const Aws::String& GetTemplateName() const{ return m_templateName; } /** *The name of the provisioning template.
*/ inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; } /** *The name of the provisioning template.
*/ inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; } /** *The name of the provisioning template.
*/ inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); } /** *The name of the provisioning template.
*/ inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); } /** *The name of the provisioning template.
*/ inline ListCACertificatesRequest& WithTemplateName(const Aws::String& value) { SetTemplateName(value); return *this;} /** *The name of the provisioning template.
*/ inline ListCACertificatesRequest& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;} /** *The name of the provisioning template.
*/ inline ListCACertificatesRequest& WithTemplateName(const char* value) { SetTemplateName(value); return *this;} private: int m_pageSize; bool m_pageSizeHasBeenSet = false; Aws::String m_marker; bool m_markerHasBeenSet = false; bool m_ascendingOrder; bool m_ascendingOrderHasBeenSet = false; Aws::String m_templateName; bool m_templateNameHasBeenSet = false; }; } // namespace Model } // namespace IoT } // namespace Aws