ListPoliciesRequest

APIs.ioEngineeringPlatform

Properties

Name Type Description
Scope object
OnlyAttached object
PathPrefix object
PolicyUsageFilter object
Marker object
MaxItems object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-listpoliciesrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListPoliciesRequest",
  "title": "ListPoliciesRequest",
  "type": "object",
  "properties": {
    "Scope": {
      "allOf": [
        {
          "$ref": "#/components/schemas/policyScopeType"
        },
        {
          "description": "<p>The scope to use for filtering the results.</p> <p>To list only Amazon Web Services managed policies, set <code>Scope</code> to <code>AWS</code>. To list only the customer managed policies in your Amazon Web Services account, set <code>Scope</code> to <code>Local</code>.</p> <p>This parameter is optional. If it is not included, or if it is set to <code>All</code>, all policies are returned.</p>"
        }
      ]
    },
    "OnlyAttached": {
      "allOf": [
        {
          "$ref": "#/components/schemas/booleanType"
        },
        {
          "description": "<p>A flag to filter the results to only the attached policies.</p> <p>When <code>OnlyAttached</code> is <code>true</code>, the returned list contains only the policies that are attached to an IAM user, group, or role. When <code>OnlyAttached</code> is <code>false</code>, or when the parameter is not included, all policies are returned.</p>"
        }
      ]
    },
    "PathPrefix": {
      "allOf": [
        {
          "$ref": "#/components/schemas/policyPathType"
        },
        {
          "description": "The path prefix for filtering the results. This parameter is optional. If it is not included, it defaults to a slash (/), listing all policies. This parameter allows (through its <a href=\"http://wikipedia.org/wiki/regex\">regex pattern</a>) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! (<code>\\u0021</code>) through the DEL character (<code>\\u007F</code>), including most punctuation characters, digits, and upper and lowercased letters."
        }
      ]
    },
    "PolicyUsageFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyUsageType"
        },
        {
          "description": "<p>The policy usage method to use for filtering the results.</p> <p>To list only permissions policies, set\u00c2 <code>PolicyUsageFilter</code>\u00c2 to\u00c2 <code>PermissionsPolicy</code>. To list only the policies used to set permissions boundaries, set\u00c2 the value to\u00c2 <code>PermissionsBoundary</code>.</p> <p>This parameter is optional. If it is not included, all policies are returned. </p>"
        }
      ]
    },
    "Marker": {
      "allOf": [
        {
          "$ref": "#/components/schemas/markerType"
        },
        {
          "description": "Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the <code>Marker</code> element in the response that you received to indicate where the next call should start."
        }
      ]
    },
    "MaxItems": {
      "allOf": [
        {
          "$ref": "#/components/schemas/maxItemsType"
        },
        {
          "description": "<p>Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the <code>IsTruncated</code> response element is <code>true</code>.</p> <p>If you do not include this parameter, the number of items defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the <code>IsTruncated</code> response element returns <code>true</code>, and <code>Marker</code> contains a value to include in the subsequent call that tells the service where to continue from.</p>"
        }
      ]
    }
  }
}