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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.VpcOutputSettingsProperty
static final class
An implementation forCfnChannel.VpcOutputSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
List of public address allocation IDs to associate with ENIs that will be created in Output VPC.A list of up to 5 EC2 VPC security group IDs to attach to the Output VPC network interfaces.A list of VPC subnet IDs from the same VPC.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
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
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
-