interface SqsCredentials {
    accessKey: string;
    createdAt?: Date;
    id: string;
    name: string;
    permissions?: SqsPermissions;
    projectId: string;
    region: Region;
    secretChecksum: string;
    secretKey: string;
    updatedAt?: Date;
}

Properties

accessKey: string

Access key ID.

createdAt?: Date

Credentials creation date.

id: string

ID of the credentials.

name: string

Name of the credentials.

permissions?: SqsPermissions

Permissions associated with these credentials.

projectId: string

Project ID of the Project containing the credentials.

region: Region

Region where the credentials exists.

secretChecksum: string

Checksum of the Secret key.

secretKey: string

Secret key ID (Only returned by Create SQS Credentials call).

updatedAt?: Date

Credentials last modification date.