/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include RetrieveTapeArchiveInputSee Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the virtual tape you want to retrieve from * the virtual tape shelf (VTS).
*/ inline const Aws::String& GetTapeARN() const{ return m_tapeARN; } /** *The Amazon Resource Name (ARN) of the virtual tape you want to retrieve from * the virtual tape shelf (VTS).
*/ inline bool TapeARNHasBeenSet() const { return m_tapeARNHasBeenSet; } /** *The Amazon Resource Name (ARN) of the virtual tape you want to retrieve from * the virtual tape shelf (VTS).
*/ inline void SetTapeARN(const Aws::String& value) { m_tapeARNHasBeenSet = true; m_tapeARN = value; } /** *The Amazon Resource Name (ARN) of the virtual tape you want to retrieve from * the virtual tape shelf (VTS).
*/ inline void SetTapeARN(Aws::String&& value) { m_tapeARNHasBeenSet = true; m_tapeARN = std::move(value); } /** *The Amazon Resource Name (ARN) of the virtual tape you want to retrieve from * the virtual tape shelf (VTS).
*/ inline void SetTapeARN(const char* value) { m_tapeARNHasBeenSet = true; m_tapeARN.assign(value); } /** *The Amazon Resource Name (ARN) of the virtual tape you want to retrieve from * the virtual tape shelf (VTS).
*/ inline RetrieveTapeArchiveRequest& WithTapeARN(const Aws::String& value) { SetTapeARN(value); return *this;} /** *The Amazon Resource Name (ARN) of the virtual tape you want to retrieve from * the virtual tape shelf (VTS).
*/ inline RetrieveTapeArchiveRequest& WithTapeARN(Aws::String&& value) { SetTapeARN(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the virtual tape you want to retrieve from * the virtual tape shelf (VTS).
*/ inline RetrieveTapeArchiveRequest& WithTapeARN(const char* value) { SetTapeARN(value); return *this;} /** *The Amazon Resource Name (ARN) of the gateway you want to retrieve the * virtual tape to. Use the ListGateways operation to return a list of * gateways for your account and Amazon Web Services Region.
You retrieve * archived virtual tapes to only one gateway and the gateway must be a tape * gateway.
*/ inline const Aws::String& GetGatewayARN() const{ return m_gatewayARN; } /** *The Amazon Resource Name (ARN) of the gateway you want to retrieve the * virtual tape to. Use the ListGateways operation to return a list of * gateways for your account and Amazon Web Services Region.
You retrieve * archived virtual tapes to only one gateway and the gateway must be a tape * gateway.
*/ inline bool GatewayARNHasBeenSet() const { return m_gatewayARNHasBeenSet; } /** *The Amazon Resource Name (ARN) of the gateway you want to retrieve the * virtual tape to. Use the ListGateways operation to return a list of * gateways for your account and Amazon Web Services Region.
You retrieve * archived virtual tapes to only one gateway and the gateway must be a tape * gateway.
*/ inline void SetGatewayARN(const Aws::String& value) { m_gatewayARNHasBeenSet = true; m_gatewayARN = value; } /** *The Amazon Resource Name (ARN) of the gateway you want to retrieve the * virtual tape to. Use the ListGateways operation to return a list of * gateways for your account and Amazon Web Services Region.
You retrieve * archived virtual tapes to only one gateway and the gateway must be a tape * gateway.
*/ inline void SetGatewayARN(Aws::String&& value) { m_gatewayARNHasBeenSet = true; m_gatewayARN = std::move(value); } /** *The Amazon Resource Name (ARN) of the gateway you want to retrieve the * virtual tape to. Use the ListGateways operation to return a list of * gateways for your account and Amazon Web Services Region.
You retrieve * archived virtual tapes to only one gateway and the gateway must be a tape * gateway.
*/ inline void SetGatewayARN(const char* value) { m_gatewayARNHasBeenSet = true; m_gatewayARN.assign(value); } /** *The Amazon Resource Name (ARN) of the gateway you want to retrieve the * virtual tape to. Use the ListGateways operation to return a list of * gateways for your account and Amazon Web Services Region.
You retrieve * archived virtual tapes to only one gateway and the gateway must be a tape * gateway.
*/ inline RetrieveTapeArchiveRequest& WithGatewayARN(const Aws::String& value) { SetGatewayARN(value); return *this;} /** *The Amazon Resource Name (ARN) of the gateway you want to retrieve the * virtual tape to. Use the ListGateways operation to return a list of * gateways for your account and Amazon Web Services Region.
You retrieve * archived virtual tapes to only one gateway and the gateway must be a tape * gateway.
*/ inline RetrieveTapeArchiveRequest& WithGatewayARN(Aws::String&& value) { SetGatewayARN(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the gateway you want to retrieve the * virtual tape to. Use the ListGateways operation to return a list of * gateways for your account and Amazon Web Services Region.
You retrieve * archived virtual tapes to only one gateway and the gateway must be a tape * gateway.
*/ inline RetrieveTapeArchiveRequest& WithGatewayARN(const char* value) { SetGatewayARN(value); return *this;} private: Aws::String m_tapeARN; bool m_tapeARNHasBeenSet = false; Aws::String m_gatewayARN; bool m_gatewayARNHasBeenSet = false; }; } // namespace Model } // namespace StorageGateway } // namespace Aws