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

GetAccessKeyLastUsedResponse

import type { GetAccessKeyLastUsedResponse } from "https://aws-api.deno.dev/v0.4/services/iam.ts?docs=full";

Contains the response to a successful "GetAccessKeyLastUsed" request. It is also returned as a member of the "AccessKeyMetaData" structure returned by the "ListAccessKeys" action.

interface GetAccessKeyLastUsedResponse {
AccessKeyLastUsed?: AccessKeyLastUsed | null;
UserName?: string | null;
}

§Properties

§
AccessKeyLastUsed?: AccessKeyLastUsed | null
[src]

Contains information about the last time the access key was used.

§
UserName?: string | null
[src]

The name of the IAM user that owns this access key.