@Stability(value=Stable)
public static interface CfnChannel.VpcOutputSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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 List<String> |
getPublicAddressAllocationIds()
List of public address allocation IDs to associate with ENIs that will be created in Output VPC.
|
default List<String> |
getSecurityGroupIds()
A list of up to 5 EC2 VPC security group IDs to attach to the Output VPC network interfaces.
|
default List<String> |
getSubnetIds()
A list of VPC subnet IDs from the same VPC.
|
@Stability(value=Stable) @Nullable default List<String> getPublicAddressAllocationIds()
Must specify one for SINGLE_PIPELINE, two for STANDARD channels
@Stability(value=Stable) @Nullable default List<String> getSecurityGroupIds()
If none are specified then the VPC default security group will be used
@Stability(value=Stable) @Nullable default List<String> getSubnetIds()
If STANDARD channel, subnet IDs must be mapped to two unique availability zones (AZ).
@Stability(value=Stable) static CfnChannel.VpcOutputSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.