CreateInstanceProfileResponse

Contains the response to a successful CreateInstanceProfile request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
InstanceProfile object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-createinstanceprofileresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateInstanceProfileResponse",
  "title": "CreateInstanceProfileResponse",
  "type": "object",
  "required": [
    "InstanceProfile"
  ],
  "example": {
    "InstanceProfile": {
      "Arn": "arn:aws:iam::123456789012:instance-profile/Webserver",
      "CreateDate": "2015-03-09 20:33:19.626000+00:00",
      "InstanceProfileId": "AIPAJMBYC7DLSPEXAMPLE",
      "InstanceProfileName": "Webserver",
      "Path": "/",
      "Roles": []
    }
  },
  "properties": {
    "InstanceProfile": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InstanceProfile"
        },
        {
          "description": "A structure containing details about the new instance profile."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>CreateInstanceProfile</a> request. "
}