APIs.io Engineering Platform · Schema
InstanceProfile
Contains information about an instance profile.
This data type is used as a response element in the following operations:
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| Path | object | |
| InstanceProfileName | object | |
| InstanceProfileId | object | |
| Arn | object | |
| CreateDate | object | |
| Roles | object | |
| Tags | object |
JSON Schema
{
"$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 <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">IAM identifiers</a> in the <i>IAM User Guide</i>. "
}
]
},
"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 <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">IAM identifiers</a> in the <i>IAM User Guide</i>. "
}
]
},
"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 <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html\">IAM identifiers</a> in the <i>IAM User Guide</i>. "
}
]
},
"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 <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html\">Tagging IAM resources</a> in the <i>IAM User Guide</i>."
}
]
}
},
"description": "<p>Contains information about an instance profile.</p> <p>This data type is used as a response element in the following operations:</p> <ul> <li> <p> <a>CreateInstanceProfile</a> </p> </li> <li> <p> <a>GetInstanceProfile</a> </p> </li> <li> <p> <a>ListInstanceProfiles</a> </p> </li> <li> <p> <a>ListInstanceProfilesForRole</a> </p> </li> </ul>"
}