Class EmrModifyInstanceGroupByName

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.services.stepfunctions.State
software.amazon.awscdk.services.stepfunctions.TaskStateBase
software.amazon.awscdk.services.stepfunctions.tasks.EmrModifyInstanceGroupByName
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:24.449Z") @Stability(Stable) public class EmrModifyInstanceGroupByName extends TaskStateBase
A Step Functions Task to to modify an InstanceGroup on an EMR Cluster.

Example:

 EmrModifyInstanceGroupByName.Builder.create(this, "Task")
         .clusterId("ClusterId")
         .instanceGroupName(JsonPath.stringAt("$.InstanceGroupName"))
         .instanceGroup(InstanceGroupModifyConfigProperty.builder()
                 .instanceCount(1)
                 .build())
         .build();
 
  • Constructor Details

    • EmrModifyInstanceGroupByName

      protected EmrModifyInstanceGroupByName(software.amazon.jsii.JsiiObjectRef objRef)
    • EmrModifyInstanceGroupByName

      protected EmrModifyInstanceGroupByName(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • EmrModifyInstanceGroupByName

      @Stability(Stable) public EmrModifyInstanceGroupByName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull EmrModifyInstanceGroupByNameProps props)
      Parameters:
      scope - This parameter is required.
      id - Descriptive identifier for this chainable. This parameter is required.
      props - This parameter is required.
  • Method Details