@aws-cdk_aws-redshift-alpha.ClusterAttributes

interface ClusterAttributes ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Redshift.Alpha.ClusterAttributes
Gogithub.com/aws/aws-cdk-go/awscdkredshiftalpha/v2#ClusterAttributes
Javasoftware.amazon.awscdk.services.redshift.alpha.ClusterAttributes
Pythonaws_cdk.aws_redshift_alpha.ClusterAttributes
TypeScript (source)@aws-cdk/aws-redshift-alpha ยป ClusterAttributes

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 * as redshift_alpha from '@aws-cdk/aws-redshift-alpha';
import { aws_ec2 as ec2 } from 'aws-cdk-lib';

declare const securityGroup: ec2.SecurityGroup;
const clusterAttributes: redshift_alpha.ClusterAttributes = {
  clusterEndpointAddress: 'clusterEndpointAddress',
  clusterEndpointPort: 123,
  clusterName: 'clusterName',

  // the properties below are optional
  securityGroups: [securityGroup],
};

Properties

NameTypeDescription
clusterEndpointAddress๐Ÿ”นstringCluster endpoint address.
clusterEndpointPort๐Ÿ”นnumberCluster endpoint port.
clusterName๐Ÿ”นstringIdentifier for the cluster.
securityGroups?๐Ÿ”นISecurityGroup[]The security groups of the redshift cluster.

clusterEndpointAddress๐Ÿ”น

Type: string

Cluster endpoint address.


clusterEndpointPort๐Ÿ”น

Type: number

Cluster endpoint port.


clusterName๐Ÿ”น

Type: string

Identifier for the cluster.


securityGroups?๐Ÿ”น

Type: ISecurityGroup[] (optional, default: no security groups will be attached to the import)

The security groups of the redshift cluster.