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

TrackedActionLastAccessed

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

Contains details about the most recent attempt to access an action within the service.

This data type is used as a response element in the "GetServiceLastAccessedDetails" operation.

interface TrackedActionLastAccessed {
ActionName?: string | null;
LastAccessedEntity?: string | null;
LastAccessedRegion?: string | null;
LastAccessedTime?: Date | number | null;
}

§Properties

§
ActionName?: string | null
[src]

The name of the tracked action to which access was attempted. Tracked actions are actions that report activity to IAM.

§
LastAccessedEntity?: string | null
[src]
§
LastAccessedRegion?: string | null
[src]

The Region from which the authenticated entity (user or role) last attempted to access the tracked action. Amazon Web Services does not report unauthenticated requests.

This field is null if no IAM entities attempted to access the service within the tracking period.

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

The date and time, in ISO 8601 date-time format, when an authenticated entity most recently attempted to access the tracked service. Amazon Web Services does not report unauthenticated requests.

This field is null if no IAM entities attempted to access the service within the tracking period.