interface ConnectionsListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnSession.ConnectionsListProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnSession_ConnectionsListProperty |
Java | software.amazon.awscdk.services.glue.CfnSession.ConnectionsListProperty |
Python | aws_cdk.aws_glue.CfnSession.ConnectionsListProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnSession » ConnectionsListProperty |
Specifies the connections used by the session.
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-lib';
const connectionsListProperty: glue.CfnSession.ConnectionsListProperty = {
connections: ['connections'],
};
Properties
| Name | Type | Description |
|---|---|---|
| connections? | string[] | A list of connection names used by the session. |
connections?
Type:
string[]
(optional)
A list of connection names used by the session.

.NET
Go
Java
Python
TypeScript