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

An object that represents the details of the consumer you registered. When * you register a consumer, it gets an ARN that is generated by Kinesis Data * Streams.

*/ inline const Consumer& GetConsumer() const{ return m_consumer; } /** *

An object that represents the details of the consumer you registered. When * you register a consumer, it gets an ARN that is generated by Kinesis Data * Streams.

*/ inline void SetConsumer(const Consumer& value) { m_consumer = value; } /** *

An object that represents the details of the consumer you registered. When * you register a consumer, it gets an ARN that is generated by Kinesis Data * Streams.

*/ inline void SetConsumer(Consumer&& value) { m_consumer = std::move(value); } /** *

An object that represents the details of the consumer you registered. When * you register a consumer, it gets an ARN that is generated by Kinesis Data * Streams.

*/ inline RegisterStreamConsumerResult& WithConsumer(const Consumer& value) { SetConsumer(value); return *this;} /** *

An object that represents the details of the consumer you registered. When * you register a consumer, it gets an ARN that is generated by Kinesis Data * Streams.

*/ inline RegisterStreamConsumerResult& WithConsumer(Consumer&& value) { SetConsumer(std::move(value)); return *this;} private: Consumer m_consumer; }; } // namespace Model } // namespace Kinesis } // namespace Aws