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

Properties

canManage?: boolean

Defines whether the credentials bearer can manage the associated SNS topics or subscriptions.

canPublish?: boolean

Defines whether the credentials bearer can publish messages to the service (publish to SNS topics).

canReceive?: boolean

Defines whether the credentials bearer can receive messages from the service (configure subscriptions).