@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-09T19:25:26.067Z") @Stability(value=Experimental) public interface ClusterAttributes 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.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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ClusterAttributes.Builder
A builder for
ClusterAttributes |
static class |
ClusterAttributes.Jsii$Proxy
An implementation for
ClusterAttributes |
| Modifier and Type | Method and Description |
|---|---|
static ClusterAttributes.Builder |
builder() |
String |
getClusterEndpointAddress()
(experimental) Cluster endpoint address.
|
Number |
getClusterEndpointPort()
(experimental) Cluster endpoint port.
|
String |
getClusterName()
(experimental) Identifier for the cluster.
|
default List<ISecurityGroup> |
getSecurityGroups()
(experimental) The security groups of the redshift cluster.
|
@Stability(value=Experimental) @NotNull String getClusterEndpointAddress()
@Stability(value=Experimental) @NotNull Number getClusterEndpointPort()
@Stability(value=Experimental) @NotNull String getClusterName()
@Stability(value=Experimental) @Nullable default List<ISecurityGroup> getSecurityGroups()
Default: no security groups will be attached to the import
@Stability(value=Experimental) static ClusterAttributes.Builder builder()
ClusterAttributes.Builder of ClusterAttributesCopyright © 2022. All rights reserved.