/** * 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 ChimeSDKMediaPipelines { namespace Model { /** *

A structure that holds the settings for recording media.

See * Also:

AWS * API Reference

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

The ARN of the recording stream.

*/ inline const Aws::String& GetStreamArn() const{ return m_streamArn; } /** *

The ARN of the recording stream.

*/ inline bool StreamArnHasBeenSet() const { return m_streamArnHasBeenSet; } /** *

The ARN of the recording stream.

*/ inline void SetStreamArn(const Aws::String& value) { m_streamArnHasBeenSet = true; m_streamArn = value; } /** *

The ARN of the recording stream.

*/ inline void SetStreamArn(Aws::String&& value) { m_streamArnHasBeenSet = true; m_streamArn = std::move(value); } /** *

The ARN of the recording stream.

*/ inline void SetStreamArn(const char* value) { m_streamArnHasBeenSet = true; m_streamArn.assign(value); } /** *

The ARN of the recording stream.

*/ inline RecordingStreamConfiguration& WithStreamArn(const Aws::String& value) { SetStreamArn(value); return *this;} /** *

The ARN of the recording stream.

*/ inline RecordingStreamConfiguration& WithStreamArn(Aws::String&& value) { SetStreamArn(std::move(value)); return *this;} /** *

The ARN of the recording stream.

*/ inline RecordingStreamConfiguration& WithStreamArn(const char* value) { SetStreamArn(value); return *this;} private: Aws::String m_streamArn; bool m_streamArnHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMediaPipelines } // namespace Aws