/** * 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 { /** *

An optional category of meeting features that contains audio-specific * configurations, such as operating parameters for Amazon Voice Focus. *

See Also:

AWS * API Reference

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

Makes echo reduction available to clients who connect to the meeting.

*/ inline const MeetingFeatureStatus& GetEchoReduction() const{ return m_echoReduction; } /** *

Makes echo reduction available to clients who connect to the meeting.

*/ inline bool EchoReductionHasBeenSet() const { return m_echoReductionHasBeenSet; } /** *

Makes echo reduction available to clients who connect to the meeting.

*/ inline void SetEchoReduction(const MeetingFeatureStatus& value) { m_echoReductionHasBeenSet = true; m_echoReduction = value; } /** *

Makes echo reduction available to clients who connect to the meeting.

*/ inline void SetEchoReduction(MeetingFeatureStatus&& value) { m_echoReductionHasBeenSet = true; m_echoReduction = std::move(value); } /** *

Makes echo reduction available to clients who connect to the meeting.

*/ inline AudioFeatures& WithEchoReduction(const MeetingFeatureStatus& value) { SetEchoReduction(value); return *this;} /** *

Makes echo reduction available to clients who connect to the meeting.

*/ inline AudioFeatures& WithEchoReduction(MeetingFeatureStatus&& value) { SetEchoReduction(std::move(value)); return *this;} private: MeetingFeatureStatus m_echoReduction; bool m_echoReductionHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMeetings } // namespace Aws