Interface CfnEndpointAccessProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointAccessProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.796Z")
@Stability(Stable)
public interface CfnEndpointAccessProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEndpointAccess
.
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.*; CfnEndpointAccessProps cfnEndpointAccessProps = CfnEndpointAccessProps.builder() .clusterIdentifier("clusterIdentifier") .endpointName("endpointName") .subnetGroupName("subnetGroupName") .vpcSecurityGroupIds(List.of("vpcSecurityGroupIds")) // the properties below are optional .resourceOwner("resourceOwner") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEndpointAccessProps
static final class
An implementation forCfnEndpointAccessProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The cluster identifier of the cluster associated with the endpoint.The name of the endpoint.default String
The AWS account ID of the owner of the cluster.The subnet group name where Amazon Redshift chooses to deploy the endpoint.The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterIdentifier
The cluster identifier of the cluster associated with the endpoint. -
getEndpointName
The name of the endpoint. -
getSubnetGroupName
The subnet group name where Amazon Redshift chooses to deploy the endpoint. -
getVpcSecurityGroupIds
The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint. -
getResourceOwner
The AWS account ID of the owner of the cluster. -
builder
- Returns:
- a
CfnEndpointAccessProps.Builder
ofCfnEndpointAccessProps
-