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

The Kinesis data stream Amazon Rekognition to which the analysis results of a * Amazon Rekognition stream processor are streamed. For more information, see * CreateStreamProcessor in the Amazon Rekognition Developer Guide.

See * Also:

AWS * API Reference

*/ class KinesisDataStream { public: AWS_REKOGNITION_API KinesisDataStream(); AWS_REKOGNITION_API KinesisDataStream(Aws::Utils::Json::JsonView jsonValue); AWS_REKOGNITION_API KinesisDataStream& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

ARN of the output Amazon Kinesis Data Streams stream.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

ARN of the output Amazon Kinesis Data Streams stream.

*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *

ARN of the output Amazon Kinesis Data Streams stream.

*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *

ARN of the output Amazon Kinesis Data Streams stream.

*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *

ARN of the output Amazon Kinesis Data Streams stream.

*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *

ARN of the output Amazon Kinesis Data Streams stream.

*/ inline KinesisDataStream& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

ARN of the output Amazon Kinesis Data Streams stream.

*/ inline KinesisDataStream& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

ARN of the output Amazon Kinesis Data Streams stream.

*/ inline KinesisDataStream& WithArn(const char* value) { SetArn(value); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; }; } // namespace Model } // namespace Rekognition } // namespace Aws