{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InstanceProfile", "title": "InstanceProfile", "type": "object", "required": [ "Path", "InstanceProfileName", "InstanceProfileId", "Arn", "CreateDate", "Roles" ], "properties": { "Path": { "allOf": [ { "$ref": "#/components/schemas/pathType" }, { "description": " The path to the instance profile. For more information about paths, see IAM identifiers in the IAM User Guide. " } ] }, "InstanceProfileName": { "allOf": [ { "$ref": "#/components/schemas/instanceProfileNameType" }, { "description": "The name identifying the instance profile." } ] }, "InstanceProfileId": { "allOf": [ { "$ref": "#/components/schemas/idType" }, { "description": " The stable and unique string identifying the instance profile. For more information about IDs, see IAM identifiers in the IAM User Guide. " } ] }, "Arn": { "allOf": [ { "$ref": "#/components/schemas/arnType" }, { "description": " The Amazon Resource Name (ARN) specifying the instance profile. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide. " } ] }, "CreateDate": { "allOf": [ { "$ref": "#/components/schemas/dateType" }, { "description": "The date when the instance profile was created." } ] }, "Roles": { "allOf": [ { "$ref": "#/components/schemas/roleListType" }, { "description": "The role associated with the instance profile." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/tagListType" }, { "description": "A list of tags that are attached to the instance profile. For more information about tagging, see Tagging IAM resources in the IAM User Guide." } ] } }, "description": "
Contains information about an instance profile.
This data type is used as a response element in the following operations:
" }