CfnIntegrationProps
- class aws_cdk.aws_glue.CfnIntegrationProps(*, integration_name, source_arn, target_arn, additional_encryption_context=None, data_filter=None, description=None, integration_config=None, kms_key_id=None, tags=None)
Bases:
objectProperties for defining a
CfnIntegration.- Parameters:
integration_name (
str) – The name of the integration.source_arn (
str) – The Amazon Resource Name (ARN) of the database to use as the source for replication.target_arn (
str) – The Amazon Resource Name (ARN) of the Glue data warehouse to use as the target for replication.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.data_filter (
Optional[str])description (
Optional[str])integration_config (
Union[IResolvable,IntegrationConfigProperty,Dict[str,Any],None]) – The configuration settings for the integration.kms_key_id (
Optional[str]) – An KMS key identifier for the key to use to encrypt the integration. If you don’t specify an encryption key, the default AWS owned KMS key is used.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-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_glue as glue cfn_integration_props = glue.CfnIntegrationProps( integration_name="integrationName", source_arn="sourceArn", target_arn="targetArn", # the properties below are optional additional_encryption_context={ "additional_encryption_context_key": "additionalEncryptionContext" }, data_filter="dataFilter", description="description", integration_config=glue.CfnIntegration.IntegrationConfigProperty( continuous_sync=False, refresh_interval="refreshInterval", source_properties={ "source_properties_key": "sourceProperties" } ), kms_key_id="kmsKeyId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- additional_encryption_context
An optional set of non-secret key value pairs that contains additional contextual information about the data.
- data_filter
-
- Type:
see
- description
-
- Type:
see
- integration_config
The configuration settings for the integration.
- integration_name
The name of the integration.
- kms_key_id
An KMS key identifier for the key to use to encrypt the integration.
If you don’t specify an encryption key, the default AWS owned KMS key is used.
- source_arn
The Amazon Resource Name (ARN) of the database to use as the source for replication.
- tags
An array of key-value pairs to apply to this resource.
- target_arn
The Amazon Resource Name (ARN) of the Glue data warehouse to use as the target for replication.