/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include DescribeTapesInputSee Also:
AWS
* API Reference
Specifies one or more unique Amazon Resource Names (ARNs) that represent the * virtual tapes you want to describe. If this parameter is not specified, Tape * gateway returns a description of all virtual tapes associated with the specified * gateway.
*/ inline const Aws::VectorSpecifies one or more unique Amazon Resource Names (ARNs) that represent the * virtual tapes you want to describe. If this parameter is not specified, Tape * gateway returns a description of all virtual tapes associated with the specified * gateway.
*/ inline bool TapeARNsHasBeenSet() const { return m_tapeARNsHasBeenSet; } /** *Specifies one or more unique Amazon Resource Names (ARNs) that represent the * virtual tapes you want to describe. If this parameter is not specified, Tape * gateway returns a description of all virtual tapes associated with the specified * gateway.
*/ inline void SetTapeARNs(const Aws::VectorSpecifies one or more unique Amazon Resource Names (ARNs) that represent the * virtual tapes you want to describe. If this parameter is not specified, Tape * gateway returns a description of all virtual tapes associated with the specified * gateway.
*/ inline void SetTapeARNs(Aws::VectorSpecifies one or more unique Amazon Resource Names (ARNs) that represent the * virtual tapes you want to describe. If this parameter is not specified, Tape * gateway returns a description of all virtual tapes associated with the specified * gateway.
*/ inline DescribeTapesRequest& WithTapeARNs(const Aws::VectorSpecifies one or more unique Amazon Resource Names (ARNs) that represent the * virtual tapes you want to describe. If this parameter is not specified, Tape * gateway returns a description of all virtual tapes associated with the specified * gateway.
*/ inline DescribeTapesRequest& WithTapeARNs(Aws::VectorSpecifies one or more unique Amazon Resource Names (ARNs) that represent the * virtual tapes you want to describe. If this parameter is not specified, Tape * gateway returns a description of all virtual tapes associated with the specified * gateway.
*/ inline DescribeTapesRequest& AddTapeARNs(const Aws::String& value) { m_tapeARNsHasBeenSet = true; m_tapeARNs.push_back(value); return *this; } /** *Specifies one or more unique Amazon Resource Names (ARNs) that represent the * virtual tapes you want to describe. If this parameter is not specified, Tape * gateway returns a description of all virtual tapes associated with the specified * gateway.
*/ inline DescribeTapesRequest& AddTapeARNs(Aws::String&& value) { m_tapeARNsHasBeenSet = true; m_tapeARNs.push_back(std::move(value)); return *this; } /** *Specifies one or more unique Amazon Resource Names (ARNs) that represent the * virtual tapes you want to describe. If this parameter is not specified, Tape * gateway returns a description of all virtual tapes associated with the specified * gateway.
*/ inline DescribeTapesRequest& AddTapeARNs(const char* value) { m_tapeARNsHasBeenSet = true; m_tapeARNs.push_back(value); return *this; } /** *A marker value, obtained in a previous call to DescribeTapes
.
* This marker indicates which page of results to retrieve.
If not * specified, the first page of results is retrieved.
*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *A marker value, obtained in a previous call to DescribeTapes
.
* This marker indicates which page of results to retrieve.
If not * specified, the first page of results is retrieved.
*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *A marker value, obtained in a previous call to DescribeTapes
.
* This marker indicates which page of results to retrieve.
If not * specified, the first page of results is retrieved.
*/ inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; } /** *A marker value, obtained in a previous call to DescribeTapes
.
* This marker indicates which page of results to retrieve.
If not * specified, the first page of results is retrieved.
*/ inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); } /** *A marker value, obtained in a previous call to DescribeTapes
.
* This marker indicates which page of results to retrieve.
If not * specified, the first page of results is retrieved.
*/ inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); } /** *A marker value, obtained in a previous call to DescribeTapes
.
* This marker indicates which page of results to retrieve.
If not * specified, the first page of results is retrieved.
*/ inline DescribeTapesRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *A marker value, obtained in a previous call to DescribeTapes
.
* This marker indicates which page of results to retrieve.
If not * specified, the first page of results is retrieved.
*/ inline DescribeTapesRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *A marker value, obtained in a previous call to DescribeTapes
.
* This marker indicates which page of results to retrieve.
If not * specified, the first page of results is retrieved.
*/ inline DescribeTapesRequest& WithMarker(const char* value) { SetMarker(value); return *this;} /** *Specifies that the number of virtual tapes described be limited to the * specified number.
Amazon Web Services may impose its own limit, if * this field is not set.
*/ inline int GetLimit() const{ return m_limit; } /** *Specifies that the number of virtual tapes described be limited to the * specified number.
Amazon Web Services may impose its own limit, if * this field is not set.
*/ inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; } /** *Specifies that the number of virtual tapes described be limited to the * specified number.
Amazon Web Services may impose its own limit, if * this field is not set.
*/ inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; } /** *Specifies that the number of virtual tapes described be limited to the * specified number.
Amazon Web Services may impose its own limit, if * this field is not set.
*/ inline DescribeTapesRequest& WithLimit(int value) { SetLimit(value); return *this;} private: Aws::String m_gatewayARN; bool m_gatewayARNHasBeenSet = false; Aws::Vector