/** * 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 Keyspaces { namespace Model { class RestoreTableResult { public: AWS_KEYSPACES_API RestoreTableResult(); AWS_KEYSPACES_API RestoreTableResult(const Aws::AmazonWebServiceResult& result); AWS_KEYSPACES_API RestoreTableResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the restored table.

*/ inline const Aws::String& GetRestoredTableARN() const{ return m_restoredTableARN; } /** *

The Amazon Resource Name (ARN) of the restored table.

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

The Amazon Resource Name (ARN) of the restored table.

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

The Amazon Resource Name (ARN) of the restored table.

*/ inline void SetRestoredTableARN(const char* value) { m_restoredTableARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the restored table.

*/ inline RestoreTableResult& WithRestoredTableARN(const Aws::String& value) { SetRestoredTableARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the restored table.

*/ inline RestoreTableResult& WithRestoredTableARN(Aws::String&& value) { SetRestoredTableARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the restored table.

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