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

The Amazon Resource Name (ARN) of the stream.

*/ inline const Aws::String& GetStreamARN() const{ return m_streamARN; } /** *

The Amazon Resource Name (ARN) of the stream.

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

The Amazon Resource Name (ARN) of the stream.

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

The Amazon Resource Name (ARN) of the stream.

*/ inline void SetStreamARN(const char* value) { m_streamARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the stream.

*/ inline CreateStreamResult& WithStreamARN(const Aws::String& value) { SetStreamARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the stream.

*/ inline CreateStreamResult& WithStreamARN(Aws::String&& value) { SetStreamARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the stream.

*/ inline CreateStreamResult& WithStreamARN(const char* value) { SetStreamARN(value); return *this;} private: Aws::String m_streamARN; }; } // namespace Model } // namespace KinesisVideo } // namespace Aws