APIs.io Engineering Platform · Schema
ListPoliciesGrantingServiceAccessResponse
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| PoliciesGrantingServiceAccess | object | |
| IsTruncated | object | |
| Marker | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListPoliciesGrantingServiceAccessResponse",
"title": "ListPoliciesGrantingServiceAccessResponse",
"type": "object",
"required": [
"PoliciesGrantingServiceAccess"
],
"example": {
"IsTruncated": false,
"PoliciesGrantingServiceAccess": [
{
"Policies": [
{
"PolicyArn": "arn:aws:iam::123456789012:policy/ExampleIamPolicy",
"PolicyName": "ExampleIamPolicy",
"PolicyType": "MANAGED"
},
{
"EntityName": "AWSExampleGroup1",
"EntityType": "GROUP",
"PolicyName": "ExampleGroup1Policy",
"PolicyType": "INLINE"
}
],
"ServiceNamespace": "iam"
},
{
"Policies": [
{
"PolicyArn": "arn:aws:iam::123456789012:policy/ExampleEc2Policy",
"PolicyName": "ExampleEc2Policy",
"PolicyType": "MANAGED"
}
],
"ServiceNamespace": "ec2"
}
]
},
"properties": {
"PoliciesGrantingServiceAccess": {
"allOf": [
{
"$ref": "#/components/schemas/listPolicyGrantingServiceAccessResponseListType"
},
{
"description": "A\u00c2 <code>ListPoliciesGrantingServiceAccess</code> object that contains details about the permissions policies attached to the specified identity (user, group, or role)."
}
]
},
"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. We recommend that you check <code>IsTruncated</code> after every call to ensure that you receive all your results."
}
]
},
"Marker": {
"allOf": [
{
"$ref": "#/components/schemas/responseMarkerType"
},
{
"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."
}
]
}
}
}