interface CfnIntegrationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnIntegrationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnIntegrationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnIntegrationMixinProps |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnIntegrationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnIntegrationMixinProps |
Properties for CfnIntegrationPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-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 rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const cfnIntegrationMixinProps: rds_mixins.CfnIntegrationMixinProps = {
additionalEncryptionContext: {
additionalEncryptionContextKey: 'additionalEncryptionContext',
},
dataFilter: 'dataFilter',
description: 'description',
integrationName: 'integrationName',
kmsKeyId: 'kmsKeyId',
sourceArn: 'sourceArn',
tags: [{
key: 'key',
value: 'value',
}],
targetArn: 'targetArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | { [string]: string } | IResolvable | An optional set of non-secret key–value pairs that contains additional contextual information about the data. |
| data | string | Data filters for the integration. |
| description? | string | A description of the integration. |
| integration | string | The name of the integration. |
| kms | string | The AWS Key Management System ( AWS KMS) key identifier for the key to use to encrypt the integration. |
| source | string | The Amazon Resource Name (ARN) of the database to use as the source for replication. |
| tags? | Cfn[] | An optional array of key-value pairs to apply to this integration. |
| target | string | The ARN of the Redshift data warehouse to use as the target for replication. |
additionalEncryptionContext?
Type:
{ [string]: string } | IResolvable
(optional)
An optional set of non-secret key–value pairs that contains additional contextual information about the data.
For more information, see Encryption context in the AWS Key Management Service Developer Guide .
You can only include this parameter if you specify the KMSKeyId parameter.
dataFilter?
Type:
string
(optional)
Data filters for the integration.
These filters determine which tables from the source database are sent to the target Amazon Redshift data warehouse.
description?
Type:
string
(optional)
A description of the integration.
integrationName?
Type:
string
(optional)
The name of the integration.
kmsKeyId?
Type:
string
(optional)
The AWS Key Management System ( AWS KMS) key identifier for the key to use to encrypt the integration.
If you don't specify an encryption key, RDS uses a default AWS owned key.
sourceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the database to use as the source for replication.
tags?
Type:
Cfn[]
(optional)
An optional array of key-value pairs to apply to this integration.
targetArn?
Type:
string
(optional)
The ARN of the Redshift data warehouse to use as the target for replication.

.NET
Go
Java
Python
TypeScript