interface RedshiftSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DMS.Mixins.CfnDataProviderPropsMixin.RedshiftSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdms/mixins#CfnDataProviderPropsMixin_RedshiftSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.dms.mixins.CfnDataProviderPropsMixin.RedshiftSettingsProperty |
Python | aws_cdk.mixins_preview.aws_dms.mixins.CfnDataProviderPropsMixin.RedshiftSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dms » mixins » CfnDataProviderPropsMixin » 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 { mixins as dms_mixins } from '@aws-cdk/mixins-preview/aws-dms';
const redshiftSettingsProperty: dms_mixins.CfnDataProviderPropsMixin.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
(optional)
The name of the Amazon Redshift data warehouse (service) that you are working with.
port?
Type:
number
(optional)
The port number for Amazon Redshift.
The default value is 5439.
serverName?
Type:
string
(optional)
The name of the Amazon Redshift cluster you are using.

.NET
Go
Java
Python
TypeScript