interface ConnectionsListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnJobPropsMixin.ConnectionsListProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnJobPropsMixin_ConnectionsListProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnJobPropsMixin.ConnectionsListProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnJobPropsMixin.ConnectionsListProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const connectionsListProperty: glue_mixins.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