TrackedActionLastAccessed

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.

APIs.ioEngineeringPlatform

Properties

Name Type Description
ActionName object
LastAccessedEntity object
LastAccessedTime object
LastAccessedRegion object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-trackedactionlastaccessed-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrackedActionLastAccessed",
  "title": "TrackedActionLastAccessed",
  "type": "object",
  "properties": {
    "ActionName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/stringType"
        },
        {
          "description": "The name of the tracked action to which access was attempted. Tracked actions are actions that report activity to IAM."
        }
      ]
    },
    "LastAccessedEntity": {
      "$ref": "#/components/schemas/arnType"
    },
    "LastAccessedTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/dateType"
        },
        {
          "description": "<p>The date and time, in\u00c2 <a href=\"http://www.iso.org/iso/iso8601\">ISO 8601 date-time format</a>, when an authenticated entity most recently attempted to access the tracked service. Amazon Web Services does not report unauthenticated requests.</p> <p>This field is null if no IAM entities attempted to access the service within the <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period\">tracking period</a>.</p>"
        }
      ]
    },
    "LastAccessedRegion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/stringType"
        },
        {
          "description": "<p>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.</p> <p>This field is null if no IAM entities attempted to access the service within the <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_access-advisor.html#service-last-accessed-reporting-period\">tracking period</a>.</p>"
        }
      ]
    }
  },
  "description": "<p>Contains details about the most recent attempt to access an action within the service.</p> <p>This data type is used as a response element in the <a>GetServiceLastAccessedDetails</a> operation.</p>"
}