{ "$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 CreateInstanceProfile request. " }