Interface CfnRouterInput.SrtDecryptionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterInput.SrtDecryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterInput
@Stability(Stable)
public static interface CfnRouterInput.SrtDecryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains the configuration settings for decrypting SRT streams, including the encryption key details and decryption 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.*;
SrtDecryptionConfigurationProperty srtDecryptionConfigurationProperty = SrtDecryptionConfigurationProperty.builder()
.encryptionKey(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRouterInput.SrtDecryptionConfigurationPropertystatic final classAn implementation forCfnRouterInput.SrtDecryptionConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionKey
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.Returns union: either
IResolvableorCfnRouterInput.SecretsManagerEncryptionKeyConfigurationProperty- See Also:
-
builder
-