public static interface CfnInput.InputVpcRequestProperty
The parent of this entity is Input.
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.*; InputVpcRequestProperty inputVpcRequestProperty = InputVpcRequestProperty.builder() .securityGroupIds(List.of("securityGroupIds")) .subnetIds(List.of("subnetIds")) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnInput.InputVpcRequestProperty.Builder
A builder for
CfnInput.InputVpcRequestProperty |
static class |
CfnInput.InputVpcRequestProperty.Jsii$Proxy
An implementation for
CfnInput.InputVpcRequestProperty |
Modifier and Type | Method and Description |
---|---|
static CfnInput.InputVpcRequestProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getSecurityGroupIds()
The list of up to five VPC security group IDs to attach to the input VPC network interfaces.
|
default java.util.List<java.lang.String> |
getSubnetIds()
The list of two VPC subnet IDs from the same VPC.
|
default java.util.List<java.lang.String> getSecurityGroupIds()
The security groups require subnet IDs. If none are specified, MediaLive uses the VPC default security group.
default java.util.List<java.lang.String> getSubnetIds()
You must associate subnet IDs to two unique Availability Zones.
static CfnInput.InputVpcRequestProperty.Builder builder()