Amazon Config · Schema
DescribeComplianceByResourceRequest
AuditingComplianceConfiguration ManagementGovernanceSecurity
Properties
| Name | Type | Description |
|---|---|---|
| ResourceType | object | |
| ResourceId | object | |
| ComplianceTypes | object | |
| Limit | object | |
| NextToken | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-describe-compliance-by-resource-request-schema.json",
"title": "DescribeComplianceByResourceRequest",
"description": "<p/>",
"type": "object",
"properties": {
"ResourceType": {
"allOf": [
{
"$ref": "#/components/schemas/StringWithCharLimit256"
},
{
"description": "The types of Amazon Web Services resources for which you want compliance information (for example, <code>AWS::EC2::Instance</code>). For this action, you can specify that the resource type is an Amazon Web Services account by specifying <code>AWS::::Account</code>."
}
]
},
"ResourceId": {
"allOf": [
{
"$ref": "#/components/schemas/BaseResourceId"
},
{
"description": "The ID of the Amazon Web Services resource for which you want compliance information. You can specify only one resource ID. If you specify a resource ID, you must also specify a type for <code>ResourceType</code>."
}
]
},
"ComplianceTypes": {
"allOf": [
{
"$ref": "#/components/schemas/ComplianceTypes"
},
{
"description": "Filters the results by compliance."
}
]
},
"Limit": {
"allOf": [
{
"$ref": "#/components/schemas/Limit"
},
{
"description": "The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response."
}
]
}
}
}