/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include 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
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