essentialworkflows.sf_validate_delete_structureDefinition.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
The newest version!
{
"name": "validateDeleteStructureDefinition",
"allowedRoles": ["ADMIN", "UNMANNED"],
"workflowVersion": 1,
"functionDefinition": {
"Comment": "Validate Delete Structure Definition",
"StartAt": "Validate JSON",
"States": {
"Validate JSON": {
"Type": "Task",
"Resource": "arn:aws:states:::apigateway:invoke",
"Parameters": {
"ApiEndpoint": "${var.structureEndpoint}",
"Method": "POST",
"Path": "/structure/validateDelete",
"Headers": {
"Content-Type": [
"application/json"
]
},
"RequestBody": {
"type": "structureDefinition",
"query.$": "$.query"
},
"AuthType": "IAM_ROLE"
},
"End": true
}
}
}
}