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

The configuration for a call analytics task.

See Also:

AWS * API Reference

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

Denotes the configration as enabled or disabled.

*/ inline bool GetDisabled() const{ return m_disabled; } /** *

Denotes the configration as enabled or disabled.

*/ inline bool DisabledHasBeenSet() const { return m_disabledHasBeenSet; } /** *

Denotes the configration as enabled or disabled.

*/ inline void SetDisabled(bool value) { m_disabledHasBeenSet = true; m_disabled = value; } /** *

Denotes the configration as enabled or disabled.

*/ inline MediaInsightsConfiguration& WithDisabled(bool value) { SetDisabled(value); return *this;} /** *

The configuration's ARN.

*/ inline const Aws::String& GetConfigurationArn() const{ return m_configurationArn; } /** *

The configuration's ARN.

*/ inline bool ConfigurationArnHasBeenSet() const { return m_configurationArnHasBeenSet; } /** *

The configuration's ARN.

*/ inline void SetConfigurationArn(const Aws::String& value) { m_configurationArnHasBeenSet = true; m_configurationArn = value; } /** *

The configuration's ARN.

*/ inline void SetConfigurationArn(Aws::String&& value) { m_configurationArnHasBeenSet = true; m_configurationArn = std::move(value); } /** *

The configuration's ARN.

*/ inline void SetConfigurationArn(const char* value) { m_configurationArnHasBeenSet = true; m_configurationArn.assign(value); } /** *

The configuration's ARN.

*/ inline MediaInsightsConfiguration& WithConfigurationArn(const Aws::String& value) { SetConfigurationArn(value); return *this;} /** *

The configuration's ARN.

*/ inline MediaInsightsConfiguration& WithConfigurationArn(Aws::String&& value) { SetConfigurationArn(std::move(value)); return *this;} /** *

The configuration's ARN.

*/ inline MediaInsightsConfiguration& WithConfigurationArn(const char* value) { SetConfigurationArn(value); return *this;} private: bool m_disabled; bool m_disabledHasBeenSet = false; Aws::String m_configurationArn; bool m_configurationArnHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKVoice } // namespace Aws