{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-list-action-types-output-schema.json",
"title": "ListActionTypesOutput",
"description": "Represents the output of a <code>ListActionTypes</code> action.",
"type": "object",
"properties": {
"actionTypes": {
"allOf": [
{
"$ref": "#/components/schemas/ActionTypeList"
},
{
"description": "Provides details of the action types."
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "If the amount of returned information is significantly large, an identifier is also returned. It can be used in a subsequent list action types call to return the next set of action types in the list."
}
]
}
},
"required": [
"actionTypes"
]
}