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

The configuration settings of the features available to a * meeting.

See Also:

AWS * API Reference

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

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