Skip to content

Latest commit

 

History

History
69 lines (35 loc) · 2.1 KB

API.md

File metadata and controls

69 lines (35 loc) · 2.1 KB

API Reference

Classes

Name Description
StateMachineApiGatewayExample Converted from an AWS Blog post.

Structs

Name Description
StateMachineApiGatewayExampleProps No description

class StateMachineApiGatewayExample

Converted from an AWS Blog post.

It is the first example mentioned in https://aws.amazon.com/tw/blogs/compute/introducing-amazon-api-gateway-service-integration-for-aws-step-functions/. This constcut will create an API Gateway Rest API with two methods and are manipulated by a state machine managed in AWS StepFucntions.

Implements: IConstruct, IDependable Extends: Construct

Initializer

new StateMachineApiGatewayExample(parent: Construct, name: string, props: StateMachineApiGatewayExampleProps)
  • parent (Construct) No description
  • name (string) No description
  • props (StateMachineApiGatewayExampleProps) No description
    • partPath (string) The path part for the resource.
    • stageName (string) A stage name for the rest api.

Properties

Name Type Description
executionInput string sample input to start execution for the workflow.
stateMachine aws_stepfunctions.StateMachine the representation of a state machine.

struct StateMachineApiGatewayExampleProps

Name Type Description
partPath string The path part for the resource.
stageName string A stage name for the rest api.