interface CfnIntegrationResourcePropertyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnIntegrationResourcePropertyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnIntegrationResourcePropertyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnIntegrationResourcePropertyMixinProps |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnIntegrationResourcePropertyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnIntegrationResourcePropertyMixinProps |
Properties for CfnIntegrationResourcePropertyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const cfnIntegrationResourcePropertyMixinProps: glue_mixins.CfnIntegrationResourcePropertyMixinProps = {
resourceArn: 'resourceArn',
sourceProcessingProperties: {
roleArn: 'roleArn',
},
tags: [{
key: 'key',
value: 'value',
}],
targetProcessingProperties: {
connectionName: 'connectionName',
eventBusArn: 'eventBusArn',
kmsArn: 'kmsArn',
roleArn: 'roleArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The connection ARN of the source, or the database ARN of the target. |
| source | IResolvable | Source | The resource properties associated with the integration source. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| target | IResolvable | Target | The structure used to define the resource properties associated with the integration target. |
resourceArn?
Type:
string
(optional)
The connection ARN of the source, or the database ARN of the target.
sourceProcessingProperties?
Type:
IResolvable | Source
(optional)
The resource properties associated with the integration source.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
targetProcessingProperties?
Type:
IResolvable | Target
(optional)
The structure used to define the resource properties associated with the integration target.

.NET
Go
Java
Python
TypeScript