action stream_io_api_check_sqs { label: "Check SQS" description: "Validates Amazon SQS credentials" provider: stream_io_api method: POST path: "/check_sqs" encoding: json input: { type: "object" properties: { sqs_key: { type: "string" description: "AWS SQS access key" } sqs_secret: { type: "string" description: "AWS SQS key secret" } sqs_url: { type: "string" description: "AWS SQS endpoint URL" } } } output: { type: "object" required: ["duration", "status"] properties: { data: { type: "object" description: "Error data" } duration: { type: "string" } error: { type: "string" description: "Error text" } status: { type: "string" description: "Validation result" enum: ["ok", "error"] } } } }