interface ConnectionsListProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnSessionPropsMixin.ConnectionsListProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnSessionPropsMixin_ConnectionsListProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnSessionPropsMixin.ConnectionsListProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnSessionPropsMixin.ConnectionsListProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnSessionPropsMixin » 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/cfn-property-mixins';
const connectionsListProperty: glue.CfnSessionPropsMixin.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