@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:43.630Z") @Stability(value=Stable) public interface CfnEndpointAccessProps extends software.amazon.jsii.JsiiSerializable
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.redshift.*;
Object vpcEndpoint;
CfnEndpointAccessProps cfnEndpointAccessProps = CfnEndpointAccessProps.builder()
.clusterIdentifier("clusterIdentifier")
.endpointName("endpointName")
.subnetGroupName("subnetGroupName")
.vpcSecurityGroupIds(List.of("vpcSecurityGroupIds"))
// the properties below are optional
.resourceOwner("resourceOwner")
.vpcEndpoint(vpcEndpoint)
.vpcSecurityGroups(List.of(VpcSecurityGroupProperty.builder()
.status("status")
.vpcSecurityGroupId("vpcSecurityGroupId")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEndpointAccessProps.Builder
A builder for
CfnEndpointAccessProps |
static class |
CfnEndpointAccessProps.Jsii$Proxy
An implementation for
CfnEndpointAccessProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnEndpointAccessProps.Builder |
builder() |
String |
getClusterIdentifier()
The cluster identifier of the cluster associated with the endpoint.
|
String |
getEndpointName()
The name of the endpoint.
|
default String |
getResourceOwner()
The AWS account ID of the owner of the cluster.
|
String |
getSubnetGroupName()
The subnet group name where Amazon Redshift chooses to deploy the endpoint.
|
default Object |
getVpcEndpoint()
`AWS::Redshift::EndpointAccess.VpcEndpoint`.
|
List<String> |
getVpcSecurityGroupIds()
The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.
|
default Object |
getVpcSecurityGroups()
The security groups associated with the endpoint.
|
@Stability(value=Stable) @NotNull String getClusterIdentifier()
@Stability(value=Stable) @NotNull String getEndpointName()
@Stability(value=Stable) @NotNull String getSubnetGroupName()
@Stability(value=Stable) @NotNull List<String> getVpcSecurityGroupIds()
@Stability(value=Stable) @Nullable default String getResourceOwner()
@Stability(value=Stable) @Nullable default Object getVpcEndpoint()
@Stability(value=Stable) @Nullable default Object getVpcSecurityGroups()
@Stability(value=Stable) static CfnEndpointAccessProps.Builder builder()
CfnEndpointAccessProps.Builder of CfnEndpointAccessPropsCopyright © 2022. All rights reserved.