public static interface CfnChannel.VpcOutputSettingsProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.VpcOutputSettingsProperty.Builder
A builder for
CfnChannel.VpcOutputSettingsProperty |
static class |
CfnChannel.VpcOutputSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.VpcOutputSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.VpcOutputSettingsProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getPublicAddressAllocationIds()
List of public address allocation IDs to associate with ENIs that will be created in Output VPC.
|
default java.util.List<java.lang.String> |
getSecurityGroupIds()
A list of up to 5 EC2 VPC security group IDs to attach to the Output VPC network interfaces.
|
default java.util.List<java.lang.String> |
getSubnetIds()
A list of VPC subnet IDs from the same VPC.
|
default java.util.List<java.lang.String> getPublicAddressAllocationIds()
Must specify one for SINGLE_PIPELINE, two for STANDARD channels
default java.util.List<java.lang.String> getSecurityGroupIds()
If none are specified then the VPC default security group will be used
default java.util.List<java.lang.String> getSubnetIds()
If STANDARD channel, subnet IDs must be mapped to two unique availability zones (AZ).
static CfnChannel.VpcOutputSettingsProperty.Builder builder()