/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The configuration settings of the features available to a
* meeting.See Also:
AWS
* API Reference
The configuration settings for the audio features available to a meeting.
*/ inline const AudioFeatures& GetAudio() const{ return m_audio; } /** *The configuration settings for the audio features available to a meeting.
*/ inline bool AudioHasBeenSet() const { return m_audioHasBeenSet; } /** *The configuration settings for the audio features available to a meeting.
*/ inline void SetAudio(const AudioFeatures& value) { m_audioHasBeenSet = true; m_audio = value; } /** *The configuration settings for the audio features available to a meeting.
*/ inline void SetAudio(AudioFeatures&& value) { m_audioHasBeenSet = true; m_audio = std::move(value); } /** *The configuration settings for the audio features available to a meeting.
*/ inline MeetingFeaturesConfiguration& WithAudio(const AudioFeatures& value) { SetAudio(value); return *this;} /** *The configuration settings for the audio features available to a meeting.
*/ inline MeetingFeaturesConfiguration& WithAudio(AudioFeatures&& value) { SetAudio(std::move(value)); return *this;} private: AudioFeatures m_audio; bool m_audioHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMeetings } // namespace Aws