Interface CfnRouterInput.MediaConnectFlowRouterInputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterInput.MediaConnectFlowRouterInputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterInput
@Stability(Stable)
public static interface CfnRouterInput.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.services.mediaconnect.*;
Object automatic;
MediaConnectFlowRouterInputConfigurationProperty mediaConnectFlowRouterInputConfigurationProperty = MediaConnectFlowRouterInputConfigurationProperty.builder()
.sourceTransitDecryption(FlowTransitEncryptionProperty.builder()
.encryptionKeyConfiguration(FlowTransitEncryptionKeyConfigurationProperty.builder()
.automatic(automatic)
.secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build())
// the properties below are optional
.encryptionKeyType("encryptionKeyType")
.build())
// the properties below are optional
.flowArn("flowArn")
.flowOutputArn("flowOutputArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterInput.MediaConnectFlowRouterInputConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceTransitDecryption
The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.Returns union: either
IResolvableorCfnRouterInput.FlowTransitEncryptionProperty- See Also:
-
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:
-
builder
@Stability(Stable) static CfnRouterInput.MediaConnectFlowRouterInputConfigurationProperty.Builder builder()
-