/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An optional category of meeting features that contains audio-specific
* configurations, such as operating parameters for Amazon Voice Focus.
* See Also:
AWS
* API Reference
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