ListChangeTypeClassificationSummaries
Returns the classifications (category, subcategory, item, and operation) for all change types that meet the specified (optional) filter criteria.
Request Syntax
{
"Filters": [
{
"Attribute": "string
",
"Condition": "string
",
"Value": "string
",
"Values": [ "string
" ]
}
],
"Locale": "string
",
"MaxResults": number
,
"NextToken": "string
"
}
Request Parameters
For information about the parameters that are common to all actions, see Common Parameters.
The request accepts the following data in JSON format.
- Filters
-
Attribute/value pairs to narrow the results returned. Filter criteria are combined in a logical OR operation, and values that contain spaces are also combined in an OR operation. For example, a
Value
of "read-only access" matches all values that contain "read-only" OR "access". Valid filter attributes:Category
,Subcategory
,Item
,Operation
,ChangeTypeId
.For more information and examples, see Finding a change type, using the query option in the AWS Managed Services User Guide.
Type: Array of Filter objects
Required: No
- Locale
-
The locale (language) to return information in. The default is English. Note: For future use; not currently implemented.
Type: String
Required: No
- MaxResults
-
The maximum number of items to return in one batch. Valid values are 20-100.
Type: Integer
Required: No
- NextToken
-
If the response contains more items than
MaxResults
, onlyMaxResults
items are returned, and aNextToken
pagination token is returned in the response. To retrieve the next batch of items, reissue the request and include the returned token in theNextToken
parameter. When all items have been returned, the response does not contain a pagination token value.Type: String
Required: No
Response Syntax
{
"ChangeTypeClassificationSummaries": [
{
"Category": "string",
"ChangeTypeId": "string",
"Item": "string",
"Operation": "string",
"Subcategory": "string"
}
],
"NextToken": "string"
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- ChangeTypeClassificationSummaries
-
The change type classifications that satisfy the filter criteria.
Type: Array of ChangeTypeClassificationSummary objects
- NextToken
-
If the response contains more items than
MaxResults
, onlyMaxResults
items are returned, and aNextToken
pagination token is returned in the response. To retrieve the next batch of items, reissue the request and include the returned token in theNextToken
parameter. When all items have been returned, the response does not contain a pagination token value.Type: String
Errors
For information about the errors that are common to all actions, see Common Errors.
- InternalServerError
-
An unspecified server error occurred.
HTTP Status Code: 500
- InvalidArgumentException
-
A specified argument is not valid.
HTTP Status Code: 400
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: