All Downloads are FREE. Search and download functionalities are using the official Maven repository.

essentialworkflows.sf_validate_create_application.json Maven / Gradle / Ivy

The newest version!
{
  "name": "validateCreateApplication",
  "allowedRoles": ["ADMIN", "UNMANNED"],
  "workflowVersion": 1,
  "functionDefinition": {
    "Comment": "Validate JSON",
    "StartAt": "Validate JSON",
    "States": {
      "Validate JSON": {
        "Type": "Task",
        "ResultPath": "$.input.validateJson",
        "Resource": "arn:aws:states:::apigateway:invoke",
        "Parameters": {
          "ApiEndpoint": "${var.structureEndpoint}",
          "Method": "POST",
          "Path": "/structure/validateCreate",
          "Headers": {
            "Content-Type": [
              "application/json"
            ]
          },
          "RequestBody": {
            "type": "application",
            "query.$": "$.query"
          },
          "AuthType": "IAM_ROLE"
        },
        "End": true
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy