/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure that holds the settings for recording media.See
* Also:
AWS
* API Reference
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