interface RedshiftSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DMS.CfnDataProvider.RedshiftSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdms#CfnDataProvider_RedshiftSettingsProperty |
Java | software.amazon.awscdk.services.dms.CfnDataProvider.RedshiftSettingsProperty |
Python | aws_cdk.aws_dms.CfnDataProvider.RedshiftSettingsProperty |
TypeScript | aws-cdk-lib » aws_dms » CfnDataProvider » RedshiftSettingsProperty |
Provides information that defines an Amazon Redshift endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dms as dms } from 'aws-cdk-lib';
const redshiftSettingsProperty: dms.CfnDataProvider.RedshiftSettingsProperty = {
databaseName: 'databaseName',
port: 123,
serverName: 'serverName',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The name of the Amazon Redshift data warehouse (service) that you are working with. |
| port | number | The port number for Amazon Redshift. |
| server | string | The name of the Amazon Redshift cluster you are using. |
databaseName
Type:
string
The name of the Amazon Redshift data warehouse (service) that you are working with.
port
Type:
number
The port number for Amazon Redshift.
The default value is 5439.
serverName
Type:
string
The name of the Amazon Redshift cluster you are using.

.NET
Go
Java
Python
TypeScript