Interface ZixiPullOutputConfig

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.239Z") @Stability(Experimental) public interface ZixiPullOutputConfig extends software.amazon.jsii.JsiiSerializable
(experimental) Configuration options for Zixi Pull outputs.

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.alpha.*;
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.ec2.*;
 import software.amazon.awscdk.services.iam.*;
 import software.amazon.awscdk.services.secretsmanager.*;
 EncryptionAlgorithm encryptionAlgorithm;
 NetworkInterface networkInterface;
 Role role;
 Secret secret;
 SecurityGroup securityGroup;
 Subnet subnet;
 ZixiPullOutputConfig zixiPullOutputConfig = ZixiPullOutputConfig.builder()
         .cidrAllowList(List.of("cidrAllowList"))
         .maxLatency(Duration.minutes(30))
         .remoteId("remoteId")
         .streamId("streamId")
         // the properties below are optional
         .encryption(StaticKeyEncryption.builder()
                 .algorithm(encryptionAlgorithm)
                 .secret(secret)
                 // the properties below are optional
                 .role(role)
                 .build())
         .vpcInterfaceAttachment(VpcInterfaceConfig.builder()
                 .name("name")
                 .role(role)
                 .securityGroups(List.of(securityGroup))
                 .subnet(subnet)
                 // the properties below are optional
                 .networkInterfaceIds(List.of("networkInterfaceIds"))
                 .networkInterfaceType(networkInterface)
                 .build())
         .build();
 
  • Method Details

    • getCidrAllowList

      @Stability(Experimental) @NotNull List<String> getCidrAllowList()
      (experimental) The range of IP addresses that should be allowed to initiate output requests to this flow.

      These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.

      Required by the MediaConnect service for Zixi Pull outputs.

    • getMaxLatency

      @Stability(Experimental) @NotNull Duration getMaxLatency()
      (experimental) The maximum latency for Zixi-based streams.
    • getRemoteId

      @Stability(Experimental) @NotNull String getRemoteId()
      (experimental) The remote ID for the Zixi-pull stream.
    • getStreamId

      @Stability(Experimental) @NotNull String getStreamId()
      (experimental) The stream ID that you want to use for this transport.
    • getEncryption

      @Stability(Experimental) @Nullable default StaticKeyEncryption getEncryption()
      (experimental) Static key encryption for this output.

      Default: - no encryption

    • getVpcInterfaceAttachment

      @Stability(Experimental) @Nullable default VpcInterfaceConfig getVpcInterfaceAttachment()
      (experimental) The VPC interface attachment to use for this output.

      Default: - no VPC interface attachment

    • builder

      @Stability(Experimental) static ZixiPullOutputConfig.Builder builder()
      Returns:
      a ZixiPullOutputConfig.Builder of ZixiPullOutputConfig