@Stability(value=Stable)
public static interface CfnCluster.ResourcesVpcConfigProperty
extends software.amazon.jsii.JsiiSerializable
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.eks.*;
ResourcesVpcConfigProperty resourcesVpcConfigProperty = ResourcesVpcConfigProperty.builder()
.subnetIds(List.of("subnetIds"))
// the properties below are optional
.endpointPrivateAccess(false)
.endpointPublicAccess(false)
.publicAccessCidrs(List.of("publicAccessCidrs"))
.securityGroupIds(List.of("securityGroupIds"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCluster.ResourcesVpcConfigProperty.Builder
A builder for
CfnCluster.ResourcesVpcConfigProperty |
static class |
CfnCluster.ResourcesVpcConfigProperty.Jsii$Proxy
An implementation for
CfnCluster.ResourcesVpcConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCluster.ResourcesVpcConfigProperty.Builder |
builder() |
default Object |
getEndpointPrivateAccess()
`CfnCluster.ResourcesVpcConfigProperty.EndpointPrivateAccess`.
|
default Object |
getEndpointPublicAccess()
`CfnCluster.ResourcesVpcConfigProperty.EndpointPublicAccess`.
|
default List<String> |
getPublicAccessCidrs()
`CfnCluster.ResourcesVpcConfigProperty.PublicAccessCidrs`.
|
default List<String> |
getSecurityGroupIds()
`CfnCluster.ResourcesVpcConfigProperty.SecurityGroupIds`.
|
List<String> |
getSubnetIds()
`CfnCluster.ResourcesVpcConfigProperty.SubnetIds`.
|
@Stability(value=Stable) @Nullable default Object getEndpointPrivateAccess()
@Stability(value=Stable) @Nullable default Object getEndpointPublicAccess()
@Stability(value=Stable) @Nullable default List<String> getPublicAccessCidrs()
@Stability(value=Stable) @Nullable default List<String> getSecurityGroupIds()
@Stability(value=Stable) @NotNull List<String> getSubnetIds()
@Stability(value=Stable) static CfnCluster.ResourcesVpcConfigProperty.Builder builder()
Copyright © 2021. All rights reserved.