Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AccessKeyLastUsed

import type { AccessKeyLastUsed } from "https://aws-api.deno.dev/v0.3/services/lightsail.ts?docs=full";

Describes the last time an access key was used.

Note: This object does not include data in the response of a "CreateBucketAccessKey" action.

interface AccessKeyLastUsed {
lastUsedDate?: Date | number | null;
region?: string | null;
serviceName?: string | null;
}

§Properties

§
lastUsedDate?: Date | number | null
[src]

The date and time when the access key was most recently used.

This value is null if the access key has not been used.

§
region?: string | null
[src]

The AWS Region where this access key was most recently used.

This value is N/A if the access key has not been used.

§
serviceName?: string | null
[src]

The name of the AWS service with which this access key was most recently used.

This value is N/A if the access key has not been used.