/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include CancelRetrievalOutputSee Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the virtual tape for which retrieval was * canceled.
*/ inline const Aws::String& GetTapeARN() const{ return m_tapeARN; } /** *The Amazon Resource Name (ARN) of the virtual tape for which retrieval was * canceled.
*/ inline void SetTapeARN(const Aws::String& value) { m_tapeARN = value; } /** *The Amazon Resource Name (ARN) of the virtual tape for which retrieval was * canceled.
*/ inline void SetTapeARN(Aws::String&& value) { m_tapeARN = std::move(value); } /** *The Amazon Resource Name (ARN) of the virtual tape for which retrieval was * canceled.
*/ inline void SetTapeARN(const char* value) { m_tapeARN.assign(value); } /** *The Amazon Resource Name (ARN) of the virtual tape for which retrieval was * canceled.
*/ inline CancelRetrievalResult& WithTapeARN(const Aws::String& value) { SetTapeARN(value); return *this;} /** *The Amazon Resource Name (ARN) of the virtual tape for which retrieval was * canceled.
*/ inline CancelRetrievalResult& WithTapeARN(Aws::String&& value) { SetTapeARN(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the virtual tape for which retrieval was * canceled.
*/ inline CancelRetrievalResult& WithTapeARN(const char* value) { SetTapeARN(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CancelRetrievalResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CancelRetrievalResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CancelRetrievalResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_tapeARN; Aws::String m_requestId; }; } // namespace Model } // namespace StorageGateway } // namespace Aws