PolicyDetail

Contains information about an IAM policy, including the policy document.

This data type is used as a response element in the GetAccountAuthorizationDetails operation.

APIs.ioEngineeringPlatform

Properties

Name Type Description
PolicyName object
PolicyDocument object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-policydetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PolicyDetail",
  "title": "PolicyDetail",
  "type": "object",
  "properties": {
    "PolicyName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/policyNameType"
        },
        {
          "description": "The name of the policy."
        }
      ]
    },
    "PolicyDocument": {
      "allOf": [
        {
          "$ref": "#/components/schemas/policyDocumentType"
        },
        {
          "description": "The policy document."
        }
      ]
    }
  },
  "description": "<p>Contains information about an IAM policy, including the policy document.</p> <p>This data type is used as a response element in the <a>GetAccountAuthorizationDetails</a> operation.</p>"
}