/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include DescribeTapeRecoveryPointsInputSee Also:
AWS
* API Reference
An opaque string that indicates the position at which to begin describing the * virtual tape recovery points.
*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *An opaque string that indicates the position at which to begin describing the * virtual tape recovery points.
*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *An opaque string that indicates the position at which to begin describing the * virtual tape recovery points.
*/ inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; } /** *An opaque string that indicates the position at which to begin describing the * virtual tape recovery points.
*/ inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); } /** *An opaque string that indicates the position at which to begin describing the * virtual tape recovery points.
*/ inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); } /** *An opaque string that indicates the position at which to begin describing the * virtual tape recovery points.
*/ inline DescribeTapeRecoveryPointsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *An opaque string that indicates the position at which to begin describing the * virtual tape recovery points.
*/ inline DescribeTapeRecoveryPointsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *An opaque string that indicates the position at which to begin describing the * virtual tape recovery points.
*/ inline DescribeTapeRecoveryPointsRequest& WithMarker(const char* value) { SetMarker(value); return *this;} /** *Specifies that the number of virtual tape recovery points that are described * be limited to the specified number.
*/ inline int GetLimit() const{ return m_limit; } /** *Specifies that the number of virtual tape recovery points that are described * be limited to the specified number.
*/ inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; } /** *Specifies that the number of virtual tape recovery points that are described * be limited to the specified number.
*/ inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; } /** *Specifies that the number of virtual tape recovery points that are described * be limited to the specified number.
*/ inline DescribeTapeRecoveryPointsRequest& WithLimit(int value) { SetLimit(value); return *this;} private: Aws::String m_gatewayARN; bool m_gatewayARNHasBeenSet = false; Aws::String m_marker; bool m_markerHasBeenSet = false; int m_limit; bool m_limitHasBeenSet = false; }; } // namespace Model } // namespace StorageGateway } // namespace Aws