java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.stepfunctions.tasks.EksClusterInput
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:47.969Z") @Stability(Stable) public class EksClusterInput extends software.amazon.jsii.JsiiObject
Class that supports methods which return the EKS cluster name depending on input type.

Example:

 EmrContainersCreateVirtualCluster.Builder.create(this, "Create a Virtual Cluster")
         .eksCluster(EksClusterInput.fromTaskInput(TaskInput.fromText("clusterId")))
         .eksNamespace("specified-namespace")
         .build();
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    EksClusterInput(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    EksClusterInput(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Specify an existing EKS Cluster as the name for this Cluster.
    Specify a Task Input as the name for this Cluster.
    The name of the EKS Cluster.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • EksClusterInput

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

      protected EksClusterInput(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
  • Method Details

    • fromCluster

      @Stability(Stable) @NotNull public static EksClusterInput fromCluster(@NotNull ICluster cluster)
      Specify an existing EKS Cluster as the name for this Cluster.

      Parameters:
      cluster - This parameter is required.
    • fromTaskInput

      @Stability(Stable) @NotNull public static EksClusterInput fromTaskInput(@NotNull TaskInput taskInput)
      Specify a Task Input as the name for this Cluster.

      Parameters:
      taskInput - This parameter is required.
    • getClusterName

      @Stability(Stable) @NotNull public String getClusterName()
      The name of the EKS Cluster.