Interface CfnFleet.VpcConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFleet.VpcConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFleet
@Stability(Stable)
public static interface CfnFleet.VpcConfigProperty
extends software.amazon.jsii.JsiiSerializable
The VPC configuration information for the fleet.
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.appstream.*; VpcConfigProperty vpcConfigProperty = VpcConfigProperty.builder() .securityGroupIds(List.of("securityGroupIds")) .subnetIds(List.of("subnetIds")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFleet.VpcConfigProperty
static final class
An implementation forCfnFleet.VpcConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The identifiers of the security groups for the fleet.The identifiers of the subnets to which a network interface is attached from the fleet instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroupIds
The identifiers of the security groups for the fleet. -
getSubnetIds
The identifiers of the subnets to which a network interface is attached from the fleet instance.Fleet instances can use one or two subnets.
-
builder
- Returns:
- a
CfnFleet.VpcConfigProperty.Builder
ofCfnFleet.VpcConfigProperty
-