interface SparkGluePropertiesInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnConnectionPropsMixin.SparkGluePropertiesInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnConnectionPropsMixin_SparkGluePropertiesInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnConnectionPropsMixin.SparkGluePropertiesInputProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnConnectionPropsMixin.SparkGluePropertiesInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnConnectionPropsMixin » SparkGluePropertiesInputProperty |
The Spark AWS Glue properties.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const sparkGluePropertiesInputProperty: datazone_mixins.CfnConnectionPropsMixin.SparkGluePropertiesInputProperty = {
additionalArgs: {
connection: 'connection',
},
glueConnectionName: 'glueConnectionName',
glueVersion: 'glueVersion',
idleTimeout: 123,
javaVirtualEnv: 'javaVirtualEnv',
numberOfWorkers: 123,
pythonVirtualEnv: 'pythonVirtualEnv',
workerType: 'workerType',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | IResolvable | Spark | The additional args in the Spark AWS Glue properties. |
| glue | string | The AWS Glue connection name in the Spark AWS Glue properties. |
| glue | string | The AWS Glue version in the Spark AWS Glue properties. |
| idle | number | The idle timeout in the Spark AWS Glue properties. |
| java | string | The Java virtual env in the Spark AWS Glue properties. |
| number | number | The number of workers in the Spark AWS Glue properties. |
| python | string | The Python virtual env in the Spark AWS Glue properties. |
| worker | string | The worker type in the Spark AWS Glue properties. |
additionalArgs?
Type:
IResolvable | Spark
(optional)
The additional args in the Spark AWS Glue properties.
glueConnectionName?
Type:
string
(optional)
The AWS Glue connection name in the Spark AWS Glue properties.
glueVersion?
Type:
string
(optional)
The AWS Glue version in the Spark AWS Glue properties.
idleTimeout?
Type:
number
(optional)
The idle timeout in the Spark AWS Glue properties.
javaVirtualEnv?
Type:
string
(optional)
The Java virtual env in the Spark AWS Glue properties.
numberOfWorkers?
Type:
number
(optional)
The number of workers in the Spark AWS Glue properties.
pythonVirtualEnv?
Type:
string
(optional)
The Python virtual env in the Spark AWS Glue properties.
workerType?
Type:
string
(optional)
The worker type in the Spark AWS Glue properties.

.NET
Go
Java
Python
TypeScript