/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Kinesis video stream stream that provides the source streaming video for a
* Amazon Rekognition Video stream processor. For more information, see
* CreateStreamProcessor in the Amazon Rekognition Developer Guide.See
* Also:
AWS
* API Reference
ARN of the Kinesis video stream stream that streams the source video.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *ARN of the Kinesis video stream stream that streams the source video.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *ARN of the Kinesis video stream stream that streams the source video.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *ARN of the Kinesis video stream stream that streams the source video.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *ARN of the Kinesis video stream stream that streams the source video.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *ARN of the Kinesis video stream stream that streams the source video.
*/ inline KinesisVideoStream& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *ARN of the Kinesis video stream stream that streams the source video.
*/ inline KinesisVideoStream& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *ARN of the Kinesis video stream stream that streams the source video.
*/ inline KinesisVideoStream& WithArn(const char* value) { SetArn(value); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; }; } // namespace Model } // namespace Rekognition } // namespace Aws