GetInstanceProfileResponse

Contains the response to a successful GetInstanceProfile request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
InstanceProfile object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-getinstanceprofileresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetInstanceProfileResponse",
  "title": "GetInstanceProfileResponse",
  "type": "object",
  "required": [
    "InstanceProfile"
  ],
  "example": {
    "InstanceProfile": {
      "Arn": "arn:aws:iam::336924118301:instance-profile/ExampleInstanceProfile",
      "CreateDate": "2013-06-12 23:52:02+00:00",
      "InstanceProfileId": "AID2MAB8DPLSRHEXAMPLE",
      "InstanceProfileName": "ExampleInstanceProfile",
      "Path": "/",
      "Roles": [
        {
          "Arn": "arn:aws:iam::336924118301:role/Test-Role",
          "AssumeRolePolicyDocument": "<URL-encoded-JSON>",
          "CreateDate": "2013-01-09 06:33:26+00:00",
          "Path": "/",
          "RoleId": "AIDGPMS9RO4H3FEXAMPLE",
          "RoleName": "Test-Role"
        }
      ]
    }
  },
  "properties": {
    "InstanceProfile": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceProfile"
        },
        {
          "description": "A structure containing details about the instance profile."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>GetInstanceProfile</a> request. "
}