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