/** * 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 QuickSight connects to * your underlying data source.

See Also:

AWS * API Reference

*/ class AWS_QUICKSIGHT_API SslProperties { public: SslProperties(); SslProperties(Aws::Utils::Json::JsonView jsonValue); SslProperties& operator=(Aws::Utils::Json::JsonView jsonValue); 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; }; } // namespace Model } // namespace QuickSight } // namespace Aws