Interface CfnChannel.StaticKeySettingsProperty

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

@Stability(Stable) public static interface CfnChannel.StaticKeySettingsProperty extends software.amazon.jsii.JsiiSerializable
The static key settings.

The parent of this entity is KeyProviderSettings.

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

See Also: