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();