interface SessionCommandProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnSession.SessionCommandProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnSession_SessionCommandProperty |
Java | software.amazon.awscdk.services.glue.CfnSession.SessionCommandProperty |
Python | aws_cdk.aws_glue.CfnSession.SessionCommandProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnSession » SessionCommandProperty |
The SessionCommand that runs the 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-lib';
const sessionCommandProperty: glue.CfnSession.SessionCommandProperty = {
name: 'name',
pythonVersion: 'pythonVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Specifies the name of the SessionCommand. |
| python | string | Specifies the Python version. |
name?
Type:
string
(optional)
Specifies the name of the SessionCommand.
Can be 'glueetl' or 'gluestreaming'.
pythonVersion?
Type:
string
(optional)
Specifies the Python version.
The Python version indicates the version supported for jobs of type Spark.

.NET
Go
Java
Python
TypeScript