GetRolePolicyResponse

Contains the response to a successful GetRolePolicy request.

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-getrolepolicyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetRolePolicyResponse",
  "title": "GetRolePolicyResponse",
  "type": "object",
  "required": [
    "RoleName",
    "PolicyName",
    "PolicyDocument"
  ],
  "properties": {
    "RoleName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/roleNameType"
        },
        {
          "description": "The role the policy is associated with."
        }
      ]
    },
    "PolicyName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/policyNameType"
        },
        {
          "description": "The name of the policy."
        }
      ]
    },
    "PolicyDocument": {
      "allOf": [
        {
          "$ref": "#/components/schemas/policyDocumentType"
        },
        {
          "description": "<p>The policy document.</p> <p>IAM stores policies in JSON format. However, resources that were created using CloudFormation templates can be formatted in YAML. CloudFormation always converts a YAML policy to JSON format before submitting it to IAM.</p>"
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>GetRolePolicy</a> request. "
}