{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetServiceLastAccessedDetailsWithEntitiesResponse", "title": "GetServiceLastAccessedDetailsWithEntitiesResponse", "type": "object", "required": [ "JobStatus", "JobCreationDate", "JobCompletionDate", "EntityDetailsList" ], "example": { "EntityDetailsList": [ { "EntityInfo": { "Arn": "arn:aws:iam::123456789012:user/AWSExampleUser01", "Id": "AIDAEX2EXAMPLEB6IGCDC", "Name": "AWSExampleUser01", "Path": "/", "Type": "USER" }, "LastAuthenticated": "2018-10-24 19:10:00+00:00" }, { "EntityInfo": { "Arn": "arn:aws:iam::123456789012:role/AWSExampleRole01", "Id": "AROAEAEXAMPLEIANXSIU4", "Name": "AWSExampleRole01", "Path": "/", "Type": "ROLE" } } ], "IsTruncated": false, "JobCompletionDate": "2018-10-24 19:47:35.241000+00:00", "JobCreationDate": "2018-10-24 19:47:31.466000+00:00", "JobStatus": "COMPLETED" }, "properties": { "JobStatus": { "allOf": [ { "$ref": "#/components/schemas/jobStatusType" }, { "description": "The status of the job." } ] }, "JobCreationDate": { "allOf": [ { "$ref": "#/components/schemas/dateType" }, { "description": "The date and time, in\u00c2 ISO 8601 date-time format, when the report job was created." } ] }, "JobCompletionDate": { "allOf": [ { "$ref": "#/components/schemas/dateType" }, { "description": "
The date and time, in\u00c2 ISO 8601 date-time format, when the generated report job was completed or failed.
This field is null if the job is still in progress, as indicated by a job status value of IN_PROGRESS.
EntityDetailsList object that contains details about when an IAM entity (user or role) used group or policy permissions in an attempt to access the specified Amazon Web Services service."
}
]
},
"IsTruncated": {
"allOf": [
{
"$ref": "#/components/schemas/booleanType"
},
{
"description": "A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the Marker request parameter to retrieve more items. Note that IAM might return fewer than the MaxItems number of results even when there are more results available. We recommend that you check IsTruncated after every call to ensure that you receive all your results."
}
]
},
"Marker": {
"allOf": [
{
"$ref": "#/components/schemas/responseMarkerType"
},
{
"description": "When IsTruncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent pagination request."
}
]
},
"Error": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorDetails"
},
{
"description": "An object that contains details about the reason the operation failed."
}
]
}
}
}