Interface WorkerConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WorkerConfigurationProperty.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:17.840Z")
@Stability(Stable)
public interface WorkerConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Properties for the worker configuration.
Example:
GlueStartJobRun.Builder.create(this, "Task")
.glueJobName("my-glue-job")
.workerConfiguration(WorkerConfigurationProperty.builder()
.workerType(WorkerType.G_1X) // Worker type
.numberOfWorkers(2)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forWorkerConfigurationPropertystatic final classAn implementation forWorkerConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The number of workers of a definedWorkerTypethat are allocated when a job runs.The type of predefined worker that is allocated when a job runs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNumberOfWorkers
The number of workers of a definedWorkerTypethat are allocated when a job runs. -
getWorkerType
The type of predefined worker that is allocated when a job runs. -
builder
-