interface CfnIntegrationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Redshift.CfnIntegrationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsredshift#CfnIntegrationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.redshift.CfnIntegrationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_redshift.CfnIntegrationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_redshift » 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 { aws_redshift as redshift } from '@aws-cdk/cfn-property-mixins';
const cfnIntegrationMixinProps: redshift.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