java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnFlowOutputPropsMixin
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable, software.constructs.IMixin

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:01.289Z") @Stability(Stable) public class CfnFlowOutputPropsMixin extends Mixin implements software.constructs.IMixin
The AWS::MediaConnect::FlowOutput resource defines the destination address, protocol, and port that AWS Elemental MediaConnect sends the ingested video to.

Each flow can have up to 50 outputs. An output can have the same protocol or a different protocol from the source. The following protocols are supported: RIST, RTP, RTP-FEC, SRT-listener, SRT-caller, Zixi pull, and Zixi push. CDI and ST 2110 JPEG XS protocols are not currently supported by AWS CloudFormation.

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.*;
 import software.amazon.awscdk.*;
 Object automatic;
 IMergeStrategy mergeStrategy;
 CfnFlowOutputPropsMixin cfnFlowOutputPropsMixin = CfnFlowOutputPropsMixin.Builder.create(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())
 .strategy(mergeStrategy)
 .build();
 

See Also:
  • Field Details

    • CFN_PROPERTY_KEYS

      @Stability(Stable) protected static final List<String> CFN_PROPERTY_KEYS
  • Constructor Details

    • CfnFlowOutputPropsMixin

      protected CfnFlowOutputPropsMixin(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnFlowOutputPropsMixin

      protected CfnFlowOutputPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnFlowOutputPropsMixin

      @Stability(Stable) public CfnFlowOutputPropsMixin(@NotNull CfnFlowOutputMixinProps props, @Nullable CfnPropertyMixinOptions options)
      Create a mixin to apply properties to AWS::MediaConnect::FlowOutput.

      Parameters:
      props - L1 properties to apply. This parameter is required.
      options - Mixin options.
    • CfnFlowOutputPropsMixin

      @Stability(Stable) public CfnFlowOutputPropsMixin(@NotNull CfnFlowOutputMixinProps props)
      Create a mixin to apply properties to AWS::MediaConnect::FlowOutput.

      Parameters:
      props - L1 properties to apply. This parameter is required.
  • Method Details

    • applyTo

      @Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct)
      Apply the mixin properties to the construct.

      Specified by:
      applyTo in interface software.constructs.IMixin
      Specified by:
      applyTo in class Mixin
      Parameters:
      construct - This parameter is required.
    • supports

      @Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct)
      Check if this mixin supports the given construct.

      Specified by:
      supports in interface software.constructs.IMixin
      Overrides:
      supports in class Mixin
      Parameters:
      construct - This parameter is required.
    • getProps

      @Stability(Stable) @NotNull protected CfnFlowOutputMixinProps getProps()
    • getStrategy

      @Stability(Stable) @NotNull protected IMergeStrategy getStrategy()