Interface CfnChannel.VpcOutputSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.VpcOutputSettingsProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.VpcOutputSettingsProperty extends software.amazon.jsii.JsiiSerializable
Settings to enable VPC mode in the channel, so that the endpoints for all outputs are in your VPC.

This entity is at the top level in the channel.

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.medialive.*;
 VpcOutputSettingsProperty vpcOutputSettingsProperty = VpcOutputSettingsProperty.builder()
         .publicAddressAllocationIds(List.of("publicAddressAllocationIds"))
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .build();
 
  • Method Details

    • getPublicAddressAllocationIds

      @Stability(Stable) @Nullable default List<String> getPublicAddressAllocationIds()
      List of public address allocation IDs to associate with ENIs that will be created in Output VPC.

      Must specify one for SINGLE_PIPELINE, two for STANDARD channels

    • getSecurityGroupIds

      @Stability(Stable) @Nullable default List<String> getSecurityGroupIds()
      A list of up to 5 EC2 VPC security group IDs to attach to the Output VPC network interfaces.

      If none are specified then the VPC default security group will be used

    • getSubnetIds

      @Stability(Stable) @Nullable default List<String> getSubnetIds()
      A list of VPC subnet IDs from the same VPC.

      If STANDARD channel, subnet IDs must be mapped to two unique availability zones (AZ).

    • builder

      @Stability(Stable) static CfnChannel.VpcOutputSettingsProperty.Builder builder()
      Returns:
      a CfnChannel.VpcOutputSettingsProperty.Builder of CfnChannel.VpcOutputSettingsProperty