CfnIntegrationResourcePropertyMixinProps
- class aws_cdk.mixins_preview.aws_glue.mixins.CfnIntegrationResourcePropertyMixinProps(*, resource_arn=None, source_processing_properties=None, tags=None, target_processing_properties=None)
Bases:
objectProperties for CfnIntegrationResourcePropertyPropsMixin.
- Parameters:
resource_arn (
Optional[str]) – The connection ARN of the source, or the database ARN of the target.source_processing_properties (
Union[IResolvable,SourceProcessingPropertiesProperty,Dict[str,Any],None]) – The resource properties associated with the integration source.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.target_processing_properties (
Union[IResolvable,TargetProcessingPropertiesProperty,Dict[str,Any],None]) – The structure used to define the resource properties associated with the integration target.
- See:
- 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_glue import mixins as glue_mixins cfn_integration_resource_property_mixin_props = glue_mixins.CfnIntegrationResourcePropertyMixinProps( resource_arn="resourceArn", source_processing_properties=glue_mixins.CfnIntegrationResourcePropertyPropsMixin.SourceProcessingPropertiesProperty( role_arn="roleArn" ), tags=[CfnTag( key="key", value="value" )], target_processing_properties=glue_mixins.CfnIntegrationResourcePropertyPropsMixin.TargetProcessingPropertiesProperty( connection_name="connectionName", event_bus_arn="eventBusArn", kms_arn="kmsArn", role_arn="roleArn" ) )
Attributes
- resource_arn
The connection ARN of the source, or the database ARN of the target.
- source_processing_properties
The resource properties associated with the integration source.
- tags
An array of key-value pairs to apply to this resource.
- target_processing_properties
The structure used to define the resource properties associated with the integration target.