/** * 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 MediaLive { namespace Model { /** * Key Provider Settings

See Also:

AWS * API Reference

*/ class KeyProviderSettings { public: AWS_MEDIALIVE_API KeyProviderSettings(); AWS_MEDIALIVE_API KeyProviderSettings(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API KeyProviderSettings& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; inline const StaticKeySettings& GetStaticKeySettings() const{ return m_staticKeySettings; } inline bool StaticKeySettingsHasBeenSet() const { return m_staticKeySettingsHasBeenSet; } inline void SetStaticKeySettings(const StaticKeySettings& value) { m_staticKeySettingsHasBeenSet = true; m_staticKeySettings = value; } inline void SetStaticKeySettings(StaticKeySettings&& value) { m_staticKeySettingsHasBeenSet = true; m_staticKeySettings = std::move(value); } inline KeyProviderSettings& WithStaticKeySettings(const StaticKeySettings& value) { SetStaticKeySettings(value); return *this;} inline KeyProviderSettings& WithStaticKeySettings(StaticKeySettings&& value) { SetStaticKeySettings(std::move(value)); return *this;} private: StaticKeySettings m_staticKeySettings; bool m_staticKeySettingsHasBeenSet = false; }; } // namespace Model } // namespace MediaLive } // namespace Aws