essentialworkflows.sf_create_application.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-structure-client Show documentation
Show all versions of common-structure-client Show documentation
structure Client for Five Faces
{
"name": "createApplication",
"functionDefinition": {
"Comment": "A description of my state machine",
"StartAt": "Validate Create Application",
"States": {
"Validate Create Application": {
"Type": "Task",
"Resource": "arn:aws:states:::states:startExecution.sync",
"Parameters": {
"StateMachineArn": "arn:aws:states:ap-southeast-2:705130463218:stateMachine:${var.environment}_validateCreateApplication",
"Input": {
"NeedCallback ": true,
"query.$": "$.query",
"AWS_STEP_FUNCTIONS_STARTED_BY_EXECUTION_ID.$": "$$.Execution.Id"
}
},
"Next": "Save Application",
"ResultPath": "$.input.validateCreateApplication"
},
"Save Application": {
"Type": "Task",
"ResultPath": "$.input.saveApplication",
"Resource": "arn:aws:states:::apigateway:invoke",
"Parameters": {
"ApiEndpoint": "${var.structureEndpoint}",
"Path": "/structure/insert",
"Method": "POST",
"Headers": {
"Content-Type": [
"application/json"
]
},
"RequestBody": {
"username.$": "$.query.authorization.username",
"type": "application",
"workflow": "createApplication",
"properties": {
"application": {
"description": "application value",
"type": "object"
}
},
"query": {
"application.$": "$.query.application"
}
},
"AuthType": "IAM_ROLE"
},
"End": true
}
}
}
}