Interface CfnChannel.KeyProviderSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.KeyProviderSettingsProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.KeyProviderSettingsProperty extends software.amazon.jsii.JsiiSerializable
The configuration of key provider settings.

The parent of this entity is HlsGroupSettings.

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.*;
 KeyProviderSettingsProperty keyProviderSettingsProperty = KeyProviderSettingsProperty.builder()
         .staticKeySettings(StaticKeySettingsProperty.builder()
                 .keyProviderServer(InputLocationProperty.builder()
                         .passwordParam("passwordParam")
                         .uri("uri")
                         .username("username")
                         .build())
                 .staticKeyValue("staticKeyValue")
                 .build())
         .build();
 

See Also: