CfnIntegrationMixinProps

class aws_cdk.mixins_preview.aws_redshift.mixins.CfnIntegrationMixinProps(*, additional_encryption_context=None, integration_name=None, kms_key_id=None, source_arn=None, tags=None, target_arn=None)

Bases: object

Properties for CfnIntegrationPropsMixin.

Parameters:
  • additional_encryption_context (Union[Mapping[str, str], IResolvable, None]) – The encryption context for the integration. For more information, see Encryption context in the AWS Key Management Service Developer Guide .

  • integration_name (Optional[str]) – The name of the integration.

  • kms_key_id (Optional[str]) – The AWS Key Management Service ( AWS KMS) key identifier for the key used to encrypt the integration.

  • source_arn (Optional[str]) – The Amazon Resource Name (ARN) of the database used as the source for replication.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The list of tags associated with the integration.

  • target_arn (Optional[str]) – The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-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_redshift import mixins as redshift_mixins

cfn_integration_mixin_props = redshift_mixins.CfnIntegrationMixinProps(
    additional_encryption_context={
        "additional_encryption_context_key": "additionalEncryptionContext"
    },
    integration_name="integrationName",
    kms_key_id="kmsKeyId",
    source_arn="sourceArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    target_arn="targetArn"
)

Attributes

additional_encryption_context

The encryption context for the integration.

For more information, see Encryption context in the AWS Key Management Service Developer Guide .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-additionalencryptioncontext

integration_name

The name of the integration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-integrationname

kms_key_id

The AWS Key Management Service ( AWS KMS) key identifier for the key used to encrypt the integration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-kmskeyid

source_arn

The Amazon Resource Name (ARN) of the database used as the source for replication.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-sourcearn

tags

The list of tags associated with the integration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-tags

target_arn

The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-integration.html#cfn-redshift-integration-targetarn