interface SparkGluePropertiesInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnConnectionPropsMixin.SparkGluePropertiesInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnConnectionPropsMixin_SparkGluePropertiesInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnConnectionPropsMixin.SparkGluePropertiesInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnConnectionPropsMixin.SparkGluePropertiesInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » 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 { aws_datazone as datazone } from '@aws-cdk/cfn-property-mixins';
const sparkGluePropertiesInputProperty: datazone.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