/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace DynamoDB { namespace Model { class DisableKinesisStreamingDestinationResult { public: AWS_DYNAMODB_API DisableKinesisStreamingDestinationResult(); AWS_DYNAMODB_API DisableKinesisStreamingDestinationResult(const Aws::AmazonWebServiceResult& result); AWS_DYNAMODB_API DisableKinesisStreamingDestinationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The name of the table being modified.

*/ inline const Aws::String& GetTableName() const{ return m_tableName; } /** *

The name of the table being modified.

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

The name of the table being modified.

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

The name of the table being modified.

*/ inline void SetTableName(const char* value) { m_tableName.assign(value); } /** *

The name of the table being modified.

*/ inline DisableKinesisStreamingDestinationResult& WithTableName(const Aws::String& value) { SetTableName(value); return *this;} /** *

The name of the table being modified.

*/ inline DisableKinesisStreamingDestinationResult& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;} /** *

The name of the table being modified.

*/ inline DisableKinesisStreamingDestinationResult& WithTableName(const char* value) { SetTableName(value); return *this;} /** *

The ARN for the specific Kinesis data stream.

*/ inline const Aws::String& GetStreamArn() const{ return m_streamArn; } /** *

The ARN for the specific Kinesis data stream.

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

The ARN for the specific Kinesis data stream.

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

The ARN for the specific Kinesis data stream.

*/ inline void SetStreamArn(const char* value) { m_streamArn.assign(value); } /** *

The ARN for the specific Kinesis data stream.

*/ inline DisableKinesisStreamingDestinationResult& WithStreamArn(const Aws::String& value) { SetStreamArn(value); return *this;} /** *

The ARN for the specific Kinesis data stream.

*/ inline DisableKinesisStreamingDestinationResult& WithStreamArn(Aws::String&& value) { SetStreamArn(std::move(value)); return *this;} /** *

The ARN for the specific Kinesis data stream.

*/ inline DisableKinesisStreamingDestinationResult& WithStreamArn(const char* value) { SetStreamArn(value); return *this;} /** *

The current status of the replication.

*/ inline const DestinationStatus& GetDestinationStatus() const{ return m_destinationStatus; } /** *

The current status of the replication.

*/ inline void SetDestinationStatus(const DestinationStatus& value) { m_destinationStatus = value; } /** *

The current status of the replication.

*/ inline void SetDestinationStatus(DestinationStatus&& value) { m_destinationStatus = std::move(value); } /** *

The current status of the replication.

*/ inline DisableKinesisStreamingDestinationResult& WithDestinationStatus(const DestinationStatus& value) { SetDestinationStatus(value); return *this;} /** *

The current status of the replication.

*/ inline DisableKinesisStreamingDestinationResult& WithDestinationStatus(DestinationStatus&& value) { SetDestinationStatus(std::move(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 DisableKinesisStreamingDestinationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DisableKinesisStreamingDestinationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DisableKinesisStreamingDestinationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_tableName; Aws::String m_streamArn; DestinationStatus m_destinationStatus; Aws::String m_requestId; }; } // namespace Model } // namespace DynamoDB } // namespace Aws