java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.95.0 (build f1ff514)", date="2024-03-26T18:09:30.745Z") @Stability(Stable) public class EksCall extends TaskStateBase
Call a EKS endpoint as a Task.

Example:

 import software.amazon.awscdk.services.eks.*;
 Cluster myEksCluster = Cluster.Builder.create(this, "my sample cluster")
         .version(KubernetesVersion.V1_18)
         .clusterName("myEksCluster")
         .build();
 EksCall.Builder.create(this, "Call a EKS Endpoint")
         .cluster(myEksCluster)
         .httpMethod(HttpMethods.GET)
         .httpPath("/api/v1/namespaces/default/pods")
         .build();
 

See Also:
  • Constructor Details

    • EksCall

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

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

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