APIs.io Engineering Platform · Schema
GetOrganizationsAccessReportResponse
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| JobStatus | object | |
| JobCreationDate | object | |
| JobCompletionDate | object | |
| NumberOfServicesAccessible | object | |
| NumberOfServicesNotAccessed | object | |
| AccessDetails | object | |
| IsTruncated | object | |
| Marker | object | |
| ErrorDetails | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetOrganizationsAccessReportResponse",
"title": "GetOrganizationsAccessReportResponse",
"type": "object",
"required": [
"JobStatus",
"JobCreationDate"
],
"example": {
"AccessDetails": [
{
"EntityPath": "o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-1a2b3c-k9l8m7n6o5example/111122223333",
"LastAuthenticatedTime": "2019-05-25 16:29:52+00:00",
"Region": "us-east-1",
"ServiceName": "Amazon DynamoDB",
"ServiceNamespace": "dynamodb",
"TotalAuthenticatedEntities": 2
},
{
"EntityPath": "o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-1a2b3c-k9l8m7n6o5example/123456789012",
"LastAuthenticatedTime": "2019-06-15 13:12:06+00:00",
"Region": "us-east-1",
"ServiceName": "AWS Identity and Access Management",
"ServiceNamespace": "iam",
"TotalAuthenticatedEntities": 4
},
{
"ServiceName": "Amazon Simple Storage Service",
"ServiceNamespace": "s3",
"TotalAuthenticatedEntities": 0
}
],
"IsTruncated": false,
"JobCompletionDate": "2019-06-18 19:47:35.241000+00:00",
"JobCreationDate": "2019-06-18 19:47:31.466000+00:00",
"JobStatus": "COMPLETED",
"NumberOfServicesAccessible": 3,
"NumberOfServicesNotAccessed": 1
},
"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 <a href=\"http://www.iso.org/iso/iso8601\">ISO 8601 date-time format</a>, when the report job was created."
}
]
},
"JobCompletionDate": {
"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 the generated report job was completed or failed.</p> <p>This field is null if the job is still in progress, as indicated by a job status value of <code>IN_PROGRESS</code>.</p>"
}
]
},
"NumberOfServicesAccessible": {
"allOf": [
{
"$ref": "#/components/schemas/integerType"
},
{
"description": "The number of services that the applicable SCPs allow account principals to access."
}
]
},
"NumberOfServicesNotAccessed": {
"allOf": [
{
"$ref": "#/components/schemas/integerType"
},
{
"description": "The number of services that account principals are allowed but did not attempt to access."
}
]
},
"AccessDetails": {
"allOf": [
{
"$ref": "#/components/schemas/AccessDetails"
},
{
"description": "An\u00c2 object that contains details about the most recent attempt to access the 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 <code>Marker</code> request parameter to retrieve more items. Note that IAM might return fewer than the <code>MaxItems</code> number of results even when there are more results available. We recommend that you check <code>IsTruncated</code> after every call to ensure that you receive all your results."
}
]
},
"Marker": {
"allOf": [
{
"$ref": "#/components/schemas/markerType"
},
{
"description": "When <code>IsTruncated</code> is <code>true</code>, this element is present and contains the value to use for the <code>Marker</code> parameter in a subsequent pagination request."
}
]
},
"ErrorDetails": {
"$ref": "#/components/schemas/ErrorDetails"
}
}
}