interface SqsPermissions {
    canManage?: boolean;
    canPublish?: boolean;
    canReceive?: boolean;
}

Properties

canManage?: boolean

Defines whether the credentials bearer can manage the associated SQS queues.

canPublish?: boolean

Defines whether the credentials bearer can publish messages to the service (send messages to SQS queues).

canReceive?: boolean

Defines whether the credentials bearer can receive messages from SQS queues.