Class CallApiGatewayHttpApiEndpoint

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.CallApiGatewayHttpApiEndpoint
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-22T22:42:58.910Z") @Stability(Stable) public class CallApiGatewayHttpApiEndpoint extends TaskStateBase
Call HTTP API endpoint as a Task.

Example:

 import software.amazon.awscdk.services.apigatewayv2.*;
 HttpApi httpApi = new HttpApi(this, "MyHttpApi");
 CallApiGatewayHttpApiEndpoint invokeTask = CallApiGatewayHttpApiEndpoint.Builder.create(this, "Call HTTP API")
         .apiId(httpApi.getApiId())
         .apiStack(Stack.of(httpApi))
         .method(HttpMethod.GET)
         .build();
 

See Also:
  • Constructor Details

    • CallApiGatewayHttpApiEndpoint

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

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

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

    • createPolicyStatements

      @Stability(Stable) @NotNull protected List<PolicyStatement> createPolicyStatements()
    • getApiEndpoint

      @Stability(Stable) @NotNull protected String getApiEndpoint()
    • getArnForExecuteApi

      @Stability(Stable) @NotNull protected String getArnForExecuteApi()
    • getStageName

      @Stability(Stable) @Nullable protected String getStageName()
    • getTaskMetrics

      @Stability(Stable) @Nullable protected TaskMetricsConfig getTaskMetrics()
      Specified by:
      getTaskMetrics in class TaskStateBase
    • getTaskPolicies

      @Stability(Stable) @Nullable protected List<PolicyStatement> getTaskPolicies()
      Specified by:
      getTaskPolicies in class TaskStateBase