Class CfnConnection.SparkGluePropertiesInputProperty
The Spark AWS Glue properties.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnection.SparkGluePropertiesInputProperty : CfnConnection.ISparkGluePropertiesInputProperty
Syntax (vb)
Public Class CfnConnection.SparkGluePropertiesInputProperty Implements CfnConnection.ISparkGluePropertiesInputProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataZone;
var sparkGluePropertiesInputProperty = new SparkGluePropertiesInputProperty {
AdditionalArgs = new SparkGlueArgsProperty {
Connection = "connection"
},
GlueConnectionName = "glueConnectionName",
GlueVersion = "glueVersion",
IdleTimeout = 123,
JavaVirtualEnv = "javaVirtualEnv",
NumberOfWorkers = 123,
PythonVirtualEnv = "pythonVirtualEnv",
WorkerType = "workerType"
};
Synopsis
Constructors
| SparkGluePropertiesInputProperty() | The Spark AWS Glue properties. |
Properties
| AdditionalArgs | The additional args in the Spark AWS Glue properties. |
| GlueConnectionName | The AWS Glue connection name in the Spark AWS Glue properties. |
| GlueVersion | The AWS Glue version in the Spark AWS Glue properties. |
| IdleTimeout | The idle timeout in the Spark AWS Glue properties. |
| JavaVirtualEnv | The Java virtual env in the Spark AWS Glue properties. |
| NumberOfWorkers | The number of workers in the Spark AWS Glue properties. |
| PythonVirtualEnv | The Python virtual env in the Spark AWS Glue properties. |
| WorkerType | The worker type in the Spark AWS Glue properties. |
Constructors
SparkGluePropertiesInputProperty()
The Spark AWS Glue properties.
public SparkGluePropertiesInputProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataZone;
var sparkGluePropertiesInputProperty = new SparkGluePropertiesInputProperty {
AdditionalArgs = new SparkGlueArgsProperty {
Connection = "connection"
},
GlueConnectionName = "glueConnectionName",
GlueVersion = "glueVersion",
IdleTimeout = 123,
JavaVirtualEnv = "javaVirtualEnv",
NumberOfWorkers = 123,
PythonVirtualEnv = "pythonVirtualEnv",
WorkerType = "workerType"
};
Properties
AdditionalArgs
The additional args in the Spark AWS Glue properties.
public object? AdditionalArgs { get; set; }
Property Value
Remarks
GlueConnectionName
The AWS Glue connection name in the Spark AWS Glue properties.
public string? GlueConnectionName { get; set; }
Property Value
Remarks
GlueVersion
The AWS Glue version in the Spark AWS Glue properties.
public string? GlueVersion { get; set; }
Property Value
Remarks
IdleTimeout
The idle timeout in the Spark AWS Glue properties.
public double? IdleTimeout { get; set; }
Property Value
Remarks
JavaVirtualEnv
The Java virtual env in the Spark AWS Glue properties.
public string? JavaVirtualEnv { get; set; }
Property Value
Remarks
NumberOfWorkers
The number of workers in the Spark AWS Glue properties.
public double? NumberOfWorkers { get; set; }
Property Value
Remarks
PythonVirtualEnv
The Python virtual env in the Spark AWS Glue properties.
public string? PythonVirtualEnv { get; set; }
Property Value
Remarks
WorkerType
The worker type in the Spark AWS Glue properties.
public string? WorkerType { get; set; }