Amazon Macie · Schema

SessionContextAttributes

Provides information about the context in which temporary security credentials were issued to an entity.

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
creationDate object
mfaAuthenticated object
View JSON Schema on GitHub

JSON Schema

amazon-macie-session-context-attributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-schema/amazon-macie-session-context-attributes-schema.json",
  "title": "SessionContextAttributes",
  "description": "Provides information about the context in which temporary security credentials were issued to an entity.",
  "type": "object",
  "properties": {
    "creationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__timestampIso8601"
        },
        {
          "description": "The date and time, in UTC and ISO 8601 format, when the credentials were issued."
        }
      ]
    },
    "mfaAuthenticated": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__boolean"
        },
        {
          "description": "Specifies whether the credentials were authenticated with a multi-factor authentication (MFA) device."
        }
      ]
    }
  }
}