interface ConnectionsListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnJobPropsMixin.ConnectionsListProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnJobPropsMixin_ConnectionsListProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnJobPropsMixin.ConnectionsListProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnJobPropsMixin.ConnectionsListProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnJobPropsMixin » ConnectionsListProperty |
Specifies the connections used by a job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const connectionsListProperty: glue.CfnJobPropsMixin.ConnectionsListProperty = {
connections: ['connections'],
};
Properties
| Name | Type | Description |
|---|---|---|
| connections? | string[] | A list of connections used by the job. |
connections?
Type:
string[]
(optional)
A list of connections used by the job.

.NET
Go
Java
Python
TypeScript