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

The name of the table being described.

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

The name of the table being described.

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

The name of the table being described.

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

The name of the table being described.

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

The name of the table being described.

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

The name of the table being described.

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

The name of the table being described.

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

The list of replica structures for the table being described.

*/ inline const Aws::Vector& GetKinesisDataStreamDestinations() const{ return m_kinesisDataStreamDestinations; } /** *

The list of replica structures for the table being described.

*/ inline void SetKinesisDataStreamDestinations(const Aws::Vector& value) { m_kinesisDataStreamDestinations = value; } /** *

The list of replica structures for the table being described.

*/ inline void SetKinesisDataStreamDestinations(Aws::Vector&& value) { m_kinesisDataStreamDestinations = std::move(value); } /** *

The list of replica structures for the table being described.

*/ inline DescribeKinesisStreamingDestinationResult& WithKinesisDataStreamDestinations(const Aws::Vector& value) { SetKinesisDataStreamDestinations(value); return *this;} /** *

The list of replica structures for the table being described.

*/ inline DescribeKinesisStreamingDestinationResult& WithKinesisDataStreamDestinations(Aws::Vector&& value) { SetKinesisDataStreamDestinations(std::move(value)); return *this;} /** *

The list of replica structures for the table being described.

*/ inline DescribeKinesisStreamingDestinationResult& AddKinesisDataStreamDestinations(const KinesisDataStreamDestination& value) { m_kinesisDataStreamDestinations.push_back(value); return *this; } /** *

The list of replica structures for the table being described.

*/ inline DescribeKinesisStreamingDestinationResult& AddKinesisDataStreamDestinations(KinesisDataStreamDestination&& value) { m_kinesisDataStreamDestinations.push_back(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 DescribeKinesisStreamingDestinationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeKinesisStreamingDestinationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeKinesisStreamingDestinationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_tableName; Aws::Vector m_kinesisDataStreamDestinations; Aws::String m_requestId; }; } // namespace Model } // namespace DynamoDB } // namespace Aws