Interface CfnRouterOutput.SrtEncryptionConfigurationProperty

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

@Stability(Stable) public static interface CfnRouterOutput.SrtEncryptionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.

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.*;
 SrtEncryptionConfigurationProperty srtEncryptionConfigurationProperty = SrtEncryptionConfigurationProperty.builder()
         .encryptionKey(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                 .roleArn("roleArn")
                 .secretArn("secretArn")
                 .build())
         .build();
 

See Also: