/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MediaPackage { namespace Model { /** * An HTTP Live Streaming (HLS) encryption configuration.

See Also:

AWS * API Reference

*/ class HlsEncryption { public: AWS_MEDIAPACKAGE_API HlsEncryption(); AWS_MEDIAPACKAGE_API HlsEncryption(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIAPACKAGE_API HlsEncryption& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIAPACKAGE_API Aws::Utils::Json::JsonValue Jsonize() const; /** * A constant initialization vector for encryption (optional). When not specified * the initialization vector will be periodically rotated. */ inline const Aws::String& GetConstantInitializationVector() const{ return m_constantInitializationVector; } /** * A constant initialization vector for encryption (optional). When not specified * the initialization vector will be periodically rotated. */ inline bool ConstantInitializationVectorHasBeenSet() const { return m_constantInitializationVectorHasBeenSet; } /** * A constant initialization vector for encryption (optional). When not specified * the initialization vector will be periodically rotated. */ inline void SetConstantInitializationVector(const Aws::String& value) { m_constantInitializationVectorHasBeenSet = true; m_constantInitializationVector = value; } /** * A constant initialization vector for encryption (optional). When not specified * the initialization vector will be periodically rotated. */ inline void SetConstantInitializationVector(Aws::String&& value) { m_constantInitializationVectorHasBeenSet = true; m_constantInitializationVector = std::move(value); } /** * A constant initialization vector for encryption (optional). When not specified * the initialization vector will be periodically rotated. */ inline void SetConstantInitializationVector(const char* value) { m_constantInitializationVectorHasBeenSet = true; m_constantInitializationVector.assign(value); } /** * A constant initialization vector for encryption (optional). When not specified * the initialization vector will be periodically rotated. */ inline HlsEncryption& WithConstantInitializationVector(const Aws::String& value) { SetConstantInitializationVector(value); return *this;} /** * A constant initialization vector for encryption (optional). When not specified * the initialization vector will be periodically rotated. */ inline HlsEncryption& WithConstantInitializationVector(Aws::String&& value) { SetConstantInitializationVector(std::move(value)); return *this;} /** * A constant initialization vector for encryption (optional). When not specified * the initialization vector will be periodically rotated. */ inline HlsEncryption& WithConstantInitializationVector(const char* value) { SetConstantInitializationVector(value); return *this;} /** * The encryption method to use. */ inline const EncryptionMethod& GetEncryptionMethod() const{ return m_encryptionMethod; } /** * The encryption method to use. */ inline bool EncryptionMethodHasBeenSet() const { return m_encryptionMethodHasBeenSet; } /** * The encryption method to use. */ inline void SetEncryptionMethod(const EncryptionMethod& value) { m_encryptionMethodHasBeenSet = true; m_encryptionMethod = value; } /** * The encryption method to use. */ inline void SetEncryptionMethod(EncryptionMethod&& value) { m_encryptionMethodHasBeenSet = true; m_encryptionMethod = std::move(value); } /** * The encryption method to use. */ inline HlsEncryption& WithEncryptionMethod(const EncryptionMethod& value) { SetEncryptionMethod(value); return *this;} /** * The encryption method to use. */ inline HlsEncryption& WithEncryptionMethod(EncryptionMethod&& value) { SetEncryptionMethod(std::move(value)); return *this;} /** * Interval (in seconds) between each encryption key rotation. */ inline int GetKeyRotationIntervalSeconds() const{ return m_keyRotationIntervalSeconds; } /** * Interval (in seconds) between each encryption key rotation. */ inline bool KeyRotationIntervalSecondsHasBeenSet() const { return m_keyRotationIntervalSecondsHasBeenSet; } /** * Interval (in seconds) between each encryption key rotation. */ inline void SetKeyRotationIntervalSeconds(int value) { m_keyRotationIntervalSecondsHasBeenSet = true; m_keyRotationIntervalSeconds = value; } /** * Interval (in seconds) between each encryption key rotation. */ inline HlsEncryption& WithKeyRotationIntervalSeconds(int value) { SetKeyRotationIntervalSeconds(value); return *this;} /** * When enabled, the EXT-X-KEY tag will be repeated in output manifests. */ inline bool GetRepeatExtXKey() const{ return m_repeatExtXKey; } /** * When enabled, the EXT-X-KEY tag will be repeated in output manifests. */ inline bool RepeatExtXKeyHasBeenSet() const { return m_repeatExtXKeyHasBeenSet; } /** * When enabled, the EXT-X-KEY tag will be repeated in output manifests. */ inline void SetRepeatExtXKey(bool value) { m_repeatExtXKeyHasBeenSet = true; m_repeatExtXKey = value; } /** * When enabled, the EXT-X-KEY tag will be repeated in output manifests. */ inline HlsEncryption& WithRepeatExtXKey(bool value) { SetRepeatExtXKey(value); return *this;} inline const SpekeKeyProvider& GetSpekeKeyProvider() const{ return m_spekeKeyProvider; } inline bool SpekeKeyProviderHasBeenSet() const { return m_spekeKeyProviderHasBeenSet; } inline void SetSpekeKeyProvider(const SpekeKeyProvider& value) { m_spekeKeyProviderHasBeenSet = true; m_spekeKeyProvider = value; } inline void SetSpekeKeyProvider(SpekeKeyProvider&& value) { m_spekeKeyProviderHasBeenSet = true; m_spekeKeyProvider = std::move(value); } inline HlsEncryption& WithSpekeKeyProvider(const SpekeKeyProvider& value) { SetSpekeKeyProvider(value); return *this;} inline HlsEncryption& WithSpekeKeyProvider(SpekeKeyProvider&& value) { SetSpekeKeyProvider(std::move(value)); return *this;} private: Aws::String m_constantInitializationVector; bool m_constantInitializationVectorHasBeenSet = false; EncryptionMethod m_encryptionMethod; bool m_encryptionMethodHasBeenSet = false; int m_keyRotationIntervalSeconds; bool m_keyRotationIntervalSecondsHasBeenSet = false; bool m_repeatExtXKey; bool m_repeatExtXKeyHasBeenSet = false; SpekeKeyProvider m_spekeKeyProvider; bool m_spekeKeyProviderHasBeenSet = false; }; } // namespace Model } // namespace MediaPackage } // namespace Aws