CfnIntegrationProps
- class aws_cdk.aws_redshift.CfnIntegrationProps(*, source_arn, target_arn, additional_encryption_context=None, integration_name=None, kms_key_id=None, tags=None)
Bases:
object
Properties for defining a
CfnIntegration
.- Parameters:
source_arn (
str
) – The Amazon Resource Name (ARN) of the database used as the source for replication.target_arn (
str
) – The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.additional_encryption_context (
Union
[IResolvable
,Mapping
[str
,str
],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.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The list of tags associated with the integration.
- 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 import aws_redshift as redshift cfn_integration_props = redshift.CfnIntegrationProps( source_arn="sourceArn", target_arn="targetArn", # the properties below are optional additional_encryption_context={ "additional_encryption_context_key": "additionalEncryptionContext" }, integration_name="integrationName", kms_key_id="kmsKeyId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- additional_encryption_context
The encryption context for the integration.
For more information, see Encryption context in the AWS Key Management Service Developer Guide .
- integration_name
The name of the integration.
- kms_key_id
The AWS Key Management Service ( AWS KMS ) key identifier for the key used to encrypt the integration.
- source_arn
The Amazon Resource Name (ARN) of the database used as the source for replication.
- tags
The list of tags associated with the integration.
- target_arn
The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.