Interface CfnRouterInput.RouterInputTransitEncryptionKeyConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterInput.RouterInputTransitEncryptionKeyConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterInput
@Stability(Stable)
public static interface CfnRouterInput.RouterInputTransitEncryptionKeyConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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;
RouterInputTransitEncryptionKeyConfigurationProperty routerInputTransitEncryptionKeyConfigurationProperty = RouterInputTransitEncryptionKeyConfigurationProperty.builder()
.automatic(automatic)
.secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterInput.RouterInputTransitEncryptionKeyConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectConfiguration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.default ObjectThe 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
-
getAutomatic
Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.- See Also:
-
getSecretsManager
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
@Stability(Stable) static CfnRouterInput.RouterInputTransitEncryptionKeyConfigurationProperty.Builder builder()
-