/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace StorageGateway { namespace Model { /** *

DeleteTapeOutput

See Also:

AWS * API Reference

*/ class DeleteTapeResult { public: AWS_STORAGEGATEWAY_API DeleteTapeResult(); AWS_STORAGEGATEWAY_API DeleteTapeResult(const Aws::AmazonWebServiceResult& result); AWS_STORAGEGATEWAY_API DeleteTapeResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the deleted virtual tape.

*/ inline const Aws::String& GetTapeARN() const{ return m_tapeARN; } /** *

The Amazon Resource Name (ARN) of the deleted virtual tape.

*/ inline void SetTapeARN(const Aws::String& value) { m_tapeARN = value; } /** *

The Amazon Resource Name (ARN) of the deleted virtual tape.

*/ inline void SetTapeARN(Aws::String&& value) { m_tapeARN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the deleted virtual tape.

*/ inline void SetTapeARN(const char* value) { m_tapeARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the deleted virtual tape.

*/ inline DeleteTapeResult& WithTapeARN(const Aws::String& value) { SetTapeARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the deleted virtual tape.

*/ inline DeleteTapeResult& WithTapeARN(Aws::String&& value) { SetTapeARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the deleted virtual tape.

*/ inline DeleteTapeResult& 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 DeleteTapeResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteTapeResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteTapeResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_tapeARN; Aws::String m_requestId; }; } // namespace Model } // namespace StorageGateway } // namespace Aws