Interface CfnRouterInput.RouterInputTransitEncryptionProperty

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

@Stability(Stable) public static interface CfnRouterInput.RouterInputTransitEncryptionProperty extends software.amazon.jsii.JsiiSerializable
The transit encryption settings for a router input.

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.mediaconnect.*;
 Object automatic;
 RouterInputTransitEncryptionProperty routerInputTransitEncryptionProperty = RouterInputTransitEncryptionProperty.builder()
         .encryptionKeyConfiguration(RouterInputTransitEncryptionKeyConfigurationProperty.builder()
                 .automatic(automatic)
                 .secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                         .roleArn("roleArn")
                         .secretArn("secretArn")
                         .build())
                 .build())
         // the properties below are optional
         .encryptionKeyType("encryptionKeyType")
         .build();
 

See Also: