CfnIntegrationMixinProps
- class aws_cdk.mixins_preview.aws_rds.mixins.CfnIntegrationMixinProps(*, additional_encryption_context=None, data_filter=None, description=None, integration_name=None, kms_key_id=None, source_arn=None, tags=None, target_arn=None)
Bases:
objectProperties for CfnIntegrationPropsMixin.
- Parameters:
additional_encryption_context (
Union[Mapping[str,str],IResolvable,None]) – 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 theKMSKeyIdparameter.data_filter (
Optional[str]) – Data filters for the integration. These filters determine which tables from the source database are sent to the target Amazon Redshift data warehouse.description (
Optional[str]) – A description of the integration.integration_name (
Optional[str]) – The name of the integration.kms_key_id (
Optional[str]) – 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.source_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the database to use as the source for replication.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An optional array of key-value pairs to apply to this integration.target_arn (
Optional[str]) – The ARN of the Redshift data warehouse to use as the target for replication.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_rds import mixins as rds_mixins cfn_integration_mixin_props = rds_mixins.CfnIntegrationMixinProps( additional_encryption_context={ "additional_encryption_context_key": "additionalEncryptionContext" }, data_filter="dataFilter", description="description", integration_name="integrationName", kms_key_id="kmsKeyId", source_arn="sourceArn", tags=[CfnTag( key="key", value="value" )], target_arn="targetArn" )
Attributes
- additional_encryption_context
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
KMSKeyIdparameter.
- data_filter
Data filters for the integration.
These filters determine which tables from the source database are sent to the target Amazon Redshift data warehouse.
- description
A description of the integration.
- integration_name
The name of the integration.
- kms_key_id
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.
- source_arn
The Amazon Resource Name (ARN) of the database to use as the source for replication.
- tags
An optional array of key-value pairs to apply to this integration.
- target_arn
The ARN of the Redshift data warehouse to use as the target for replication.