Interface CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterInputPropsMixin
@Stability(Stable)
public static interface CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration settings for connecting a router input to a flow output.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.*;
Object automatic;
MediaConnectFlowRouterInputConfigurationProperty mediaConnectFlowRouterInputConfigurationProperty = MediaConnectFlowRouterInputConfigurationProperty.builder()
.flowArn("flowArn")
.flowOutputArn("flowOutputArn")
.sourceTransitDecryption(FlowTransitEncryptionProperty.builder()
.encryptionKeyConfiguration(FlowTransitEncryptionKeyConfigurationProperty.builder()
.automatic(automatic)
.secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build())
.encryptionKeyType("encryptionKeyType")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the flow to connect to.default StringThe ARN of the flow output to connect to this router input.default ObjectThe configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFlowArn
The ARN of the flow to connect to.- See Also:
-
getFlowOutputArn
The ARN of the flow output to connect to this router input.- See Also:
-
getSourceTransitDecryption
The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.Returns union: either
IResolvableorCfnRouterInputPropsMixin.FlowTransitEncryptionProperty- See Also:
-
builder
@Stability(Stable) static CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty.Builder builder()
-