Interface CfnInput.InputVpcRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInput.InputVpcRequestProperty.Jsii$Proxy
- Enclosing class:
CfnInput
@Stability(Stable)
public static interface CfnInput.InputVpcRequestProperty
extends software.amazon.jsii.JsiiSerializable
Settings that apply only if the input is an push input where the source is on Amazon VPC.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInput.InputVpcRequestProperty
static final class
An implementation forCfnInput.InputVpcRequestProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The list of up to five VPC security group IDs to attach to the input VPC network interfaces.The list of two VPC subnet IDs from the same VPC.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The list of up to five VPC security group IDs to attach to the input VPC network interfaces.The security groups require subnet IDs. If none are specified, MediaLive uses the VPC default security group.
- See Also:
-
getSubnetIds
The list of two VPC subnet IDs from the same VPC.You must associate subnet IDs to two unique Availability Zones.
- See Also:
-
builder
-