Interface ClusterAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.816Z")
@Stability(Experimental)
public interface ClusterAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties that describe an existing cluster instance.
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.ec2.*; import software.amazon.awscdk.services.redshift.*; SecurityGroup securityGroup; ClusterAttributes clusterAttributes = ClusterAttributes.builder() .clusterEndpointAddress("clusterEndpointAddress") .clusterEndpointPort(123) .clusterName("clusterName") // the properties below are optional .securityGroups(List.of(securityGroup)) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forClusterAttributes
static final class
An implementation forClusterAttributes
-
Method Summary
Modifier and TypeMethodDescriptionstatic ClusterAttributes.Builder
builder()
(experimental) Cluster endpoint address.(experimental) Cluster endpoint port.(experimental) Identifier for the cluster.default List<ISecurityGroup>
(experimental) The security groups of the redshift cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterEndpointAddress
(experimental) Cluster endpoint address. -
getClusterEndpointPort
(experimental) Cluster endpoint port. -
getClusterName
(experimental) Identifier for the cluster. -
getSecurityGroups
(experimental) The security groups of the redshift cluster.Default: no security groups will be attached to the import
-
builder
- Returns:
- a
ClusterAttributes.Builder
ofClusterAttributes
-