/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

Secure Socket Layer (SSL) properties that apply when Amazon QuickSight * connects to your underlying data source.

See Also:

AWS * API Reference

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

A Boolean option to control whether SSL should be disabled.

*/ inline bool GetDisableSsl() const{ return m_disableSsl; } /** *

A Boolean option to control whether SSL should be disabled.

*/ inline bool DisableSslHasBeenSet() const { return m_disableSslHasBeenSet; } /** *

A Boolean option to control whether SSL should be disabled.

*/ inline void SetDisableSsl(bool value) { m_disableSslHasBeenSet = true; m_disableSsl = value; } /** *

A Boolean option to control whether SSL should be disabled.

*/ inline SslProperties& WithDisableSsl(bool value) { SetDisableSsl(value); return *this;} private: bool m_disableSsl; bool m_disableSslHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws