Interface CallApiGatewayHttpApiEndpointOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
CallApiGatewayHttpApiEndpointJsonataProps
,CallApiGatewayHttpApiEndpointJsonPathProps
,CallApiGatewayHttpApiEndpointProps
- All Known Implementing Classes:
CallApiGatewayHttpApiEndpointJsonataProps.Jsii$Proxy
,CallApiGatewayHttpApiEndpointJsonPathProps.Jsii$Proxy
,CallApiGatewayHttpApiEndpointOptions.Jsii$Proxy
,CallApiGatewayHttpApiEndpointProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; import software.amazon.awscdk.services.stepfunctions.tasks.*; Stack stack; CallApiGatewayHttpApiEndpointOptions callApiGatewayHttpApiEndpointOptions = CallApiGatewayHttpApiEndpointOptions.builder() .apiId("apiId") .apiStack(stack) // the properties below are optional .stageName("stageName") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCallApiGatewayHttpApiEndpointOptions
static final class
An implementation forCallApiGatewayHttpApiEndpointOptions
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiId
The Id of the API to call. -
getApiStack
The Stack in which the API is defined. -
getStageName
Name of the stage where the API is deployed to in API Gateway.Default: '$default'
-
builder
-