Interface HlsStaticKeyProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HlsStaticKeyProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.144Z")
@Stability(Experimental)
public interface HlsStaticKeyProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for HLS static key encryption.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.medialive.alpha.*;
import software.amazon.awscdk.*;
SecretValue secretValue;
HlsStaticKeyProps hlsStaticKeyProps = HlsStaticKeyProps.builder()
.keyProviderServerUrl("keyProviderServerUrl")
.staticKeyValue(secretValue)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHlsStaticKeyPropsstatic final classAn implementation forHlsStaticKeyProps -
Method Summary
Modifier and TypeMethodDescriptionstatic HlsStaticKeyProps.Builderbuilder()(experimental) The URL of the license server that serves the static key.(experimental) The static key value as a 32-character hexadecimal string.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKeyProviderServerUrl
(experimental) The URL of the license server that serves the static key.Required — MediaLive rejects this without a server URL, even though the underlying CloudFormation property is typed as optional.
-
getStaticKeyValue
(experimental) The static key value as a 32-character hexadecimal string. -
builder
- Returns:
- a
HlsStaticKeyProps.BuilderofHlsStaticKeyProps
-