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();
 
  • Method Details

    • getClusterEndpointAddress

      @Stability(Experimental) @NotNull String getClusterEndpointAddress()
      (experimental) Cluster endpoint address.
    • getClusterEndpointPort

      @Stability(Experimental) @NotNull Number getClusterEndpointPort()
      (experimental) Cluster endpoint port.
    • getClusterName

      @Stability(Experimental) @NotNull String getClusterName()
      (experimental) Identifier for the cluster.
    • getSecurityGroups

      @Stability(Experimental) @Nullable default List<ISecurityGroup> getSecurityGroups()
      (experimental) The security groups of the redshift cluster.

      Default: no security groups will be attached to the import

    • builder

      @Stability(Experimental) static ClusterAttributes.Builder builder()
      Returns:
      a ClusterAttributes.Builder of ClusterAttributes