/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include RetrieveTapeRecoveryPointInputSee Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the virtual tape for which you want to * retrieve the recovery point.
*/ inline const Aws::String& GetTapeARN() const{ return m_tapeARN; } /** *The Amazon Resource Name (ARN) of the virtual tape for which you want to * retrieve the recovery point.
*/ inline bool TapeARNHasBeenSet() const { return m_tapeARNHasBeenSet; } /** *The Amazon Resource Name (ARN) of the virtual tape for which you want to * retrieve the recovery point.
*/ inline void SetTapeARN(const Aws::String& value) { m_tapeARNHasBeenSet = true; m_tapeARN = value; } /** *The Amazon Resource Name (ARN) of the virtual tape for which you want to * retrieve the recovery point.
*/ inline void SetTapeARN(Aws::String&& value) { m_tapeARNHasBeenSet = true; m_tapeARN = std::move(value); } /** *The Amazon Resource Name (ARN) of the virtual tape for which you want to * retrieve the recovery point.
*/ inline void SetTapeARN(const char* value) { m_tapeARNHasBeenSet = true; m_tapeARN.assign(value); } /** *The Amazon Resource Name (ARN) of the virtual tape for which you want to * retrieve the recovery point.
*/ inline RetrieveTapeRecoveryPointRequest& WithTapeARN(const Aws::String& value) { SetTapeARN(value); return *this;} /** *The Amazon Resource Name (ARN) of the virtual tape for which you want to * retrieve the recovery point.
*/ inline RetrieveTapeRecoveryPointRequest& WithTapeARN(Aws::String&& value) { SetTapeARN(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the virtual tape for which you want to * retrieve the recovery point.
*/ inline RetrieveTapeRecoveryPointRequest& WithTapeARN(const char* value) { SetTapeARN(value); return *this;} inline const Aws::String& GetGatewayARN() const{ return m_gatewayARN; } inline bool GatewayARNHasBeenSet() const { return m_gatewayARNHasBeenSet; } inline void SetGatewayARN(const Aws::String& value) { m_gatewayARNHasBeenSet = true; m_gatewayARN = value; } inline void SetGatewayARN(Aws::String&& value) { m_gatewayARNHasBeenSet = true; m_gatewayARN = std::move(value); } inline void SetGatewayARN(const char* value) { m_gatewayARNHasBeenSet = true; m_gatewayARN.assign(value); } inline RetrieveTapeRecoveryPointRequest& WithGatewayARN(const Aws::String& value) { SetGatewayARN(value); return *this;} inline RetrieveTapeRecoveryPointRequest& WithGatewayARN(Aws::String&& value) { SetGatewayARN(std::move(value)); return *this;} inline RetrieveTapeRecoveryPointRequest& 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