interface SparkGluePropertiesInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.CfnConnection.SparkGluePropertiesInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnConnection_SparkGluePropertiesInputProperty |
Java | software.amazon.awscdk.services.datazone.CfnConnection.SparkGluePropertiesInputProperty |
Python | aws_cdk.aws_datazone.CfnConnection.SparkGluePropertiesInputProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnConnection » 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 { aws_datazone as datazone } from 'aws-cdk-lib';
const sparkGluePropertiesInputProperty: datazone.CfnConnection.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