Interface CfnFlowOutputMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlowOutputMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:01.288Z") @Stability(Stable) public interface CfnFlowOutputMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnFlowOutputPropsMixin.

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;
 CfnFlowOutputMixinProps cfnFlowOutputMixinProps = CfnFlowOutputMixinProps.builder()
         .cidrAllowList(List.of("cidrAllowList"))
         .description("description")
         .destination("destination")
         .encryption(EncryptionProperty.builder()
                 .algorithm("algorithm")
                 .keyType("keyType")
                 .roleArn("roleArn")
                 .secretArn("secretArn")
                 .build())
         .flowArn("flowArn")
         .maxLatency(123)
         .mediaStreamOutputConfigurations(List.of(MediaStreamOutputConfigurationProperty.builder()
                 .destinationConfigurations(List.of(DestinationConfigurationProperty.builder()
                         .destinationIp("destinationIp")
                         .destinationPort(123)
                         .interface(InterfaceProperty.builder()
                                 .name("name")
                                 .build())
                         .build()))
                 .encodingName("encodingName")
                 .encodingParameters(EncodingParametersProperty.builder()
                         .compressionFactor(123)
                         .encoderProfile("encoderProfile")
                         .build())
                 .mediaStreamName("mediaStreamName")
                 .build()))
         .minLatency(123)
         .name("name")
         .ndiProgramName("ndiProgramName")
         .ndiSpeedHqQuality(123)
         .outputStatus("outputStatus")
         .port(123)
         .protocol("protocol")
         .remoteId("remoteId")
         .routerIntegrationState("routerIntegrationState")
         .routerIntegrationTransitEncryption(FlowTransitEncryptionProperty.builder()
                 .encryptionKeyConfiguration(FlowTransitEncryptionKeyConfigurationProperty.builder()
                         .automatic(automatic)
                         .secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                                 .roleArn("roleArn")
                                 .secretArn("secretArn")
                                 .build())
                         .build())
                 .encryptionKeyType("encryptionKeyType")
                 .build())
         .smoothingLatency(123)
         .streamId("streamId")
         .vpcInterfaceAttachment(VpcInterfaceAttachmentProperty.builder()
                 .vpcInterfaceName("vpcInterfaceName")
                 .build())
         .build();
 

See Also: