public static interface CfnImageBuilder.VpcConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnImageBuilder.VpcConfigProperty.Builder
A builder for
CfnImageBuilder.VpcConfigProperty |
static class |
CfnImageBuilder.VpcConfigProperty.Jsii$Proxy
An implementation for
CfnImageBuilder.VpcConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnImageBuilder.VpcConfigProperty.Builder |
builder() |
default java.util.List<java.lang.String> |
getSecurityGroupIds()
The identifiers of the security groups for the image builder.
|
default java.util.List<java.lang.String> |
getSubnetIds()
The identifier of the subnet to which a network interface is attached from the image builder instance.
|
default java.util.List<java.lang.String> getSecurityGroupIds()
default java.util.List<java.lang.String> getSubnetIds()
An image builder instance can use one subnet.
static CfnImageBuilder.VpcConfigProperty.Builder builder()