import Stigg from '@stigg/typescript';
const client = new Stigg({
apiKey: process.env['STIGG_API_KEY'], // This is the default and can be omitted
});
const eventQueueResponse = await client.internal.beta.eventQueues.retrieve('x');
console.log(eventQueueResponse.data);{
"data": {
"status": "PROVISIONING",
"queueName": "<string>",
"region": "us-east-1",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"suffix": "<string>",
"queueUrl": "<string>",
"roleArn": "<string>"
}
}Get event queue by queue name
import Stigg from '@stigg/typescript';
const client = new Stigg({
apiKey: process.env['STIGG_API_KEY'], // This is the default and can be omitted
});
const eventQueueResponse = await client.internal.beta.eventQueues.retrieve('x');
console.log(eventQueueResponse.data);{
"data": {
"status": "PROVISIONING",
"queueName": "<string>",
"region": "us-east-1",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"suffix": "<string>",
"queueUrl": "<string>",
"roleArn": "<string>"
}
}Server API Key
API key for authentication
The queue name identifier
1 - 255Event queue details
Response object
Event queue provisioning status and details
Show child attributes