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();
 
  • Method Details

    • getKeyProviderServerUrl

      @Stability(Experimental) @NotNull String 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

      @Stability(Experimental) @NotNull SecretValue getStaticKeyValue()
      (experimental) The static key value as a 32-character hexadecimal string.
    • builder

      @Stability(Experimental) static HlsStaticKeyProps.Builder builder()
      Returns:
      a HlsStaticKeyProps.Builder of HlsStaticKeyProps