interface CfnIntegrationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Redshift.Mixins.CfnIntegrationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshift/mixins#CfnIntegrationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.redshift.mixins.CfnIntegrationMixinProps |
Python | aws_cdk.mixins_preview.aws_redshift.mixins.CfnIntegrationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_redshift » mixins » CfnIntegrationMixinProps |
Properties for CfnIntegrationPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as redshift_mixins } from '@aws-cdk/mixins-preview/aws-redshift';
const cfnIntegrationMixinProps: redshift_mixins.CfnIntegrationMixinProps = {
additionalEncryptionContext: {
additionalEncryptionContextKey: 'additionalEncryptionContext',
},
integrationName: 'integrationName',
kmsKeyId: 'kmsKeyId',
sourceArn: 'sourceArn',
tags: [{
key: 'key',
value: 'value',
}],
targetArn: 'targetArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | { [string]: string } | IResolvable | The encryption context for the integration. |
| integration | string | The name of the integration. |
| kms | string | The AWS Key Management Service ( AWS KMS) key identifier for the key used to encrypt the integration. |
| source | string | The Amazon Resource Name (ARN) of the database used as the source for replication. |
| tags? | Cfn[] | The list of tags associated with the integration. |
| target | string | The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication. |
additionalEncryptionContext?
Type:
{ [string]: string } | IResolvable
(optional)
The encryption context for the integration.
For more information, see Encryption context in the AWS Key Management Service Developer Guide .
integrationName?
Type:
string
(optional)
The name of the integration.
kmsKeyId?
Type:
string
(optional)
The AWS Key Management Service ( AWS KMS) key identifier for the key used to encrypt the integration.
sourceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the database used as the source for replication.
tags?
Type:
Cfn[]
(optional)
The list of tags associated with the integration.
targetArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.

.NET
Go
Java
Python
TypeScript