Amazon Config · Schema
DescribeOrganizationConfigRulesRequest
DescribeOrganizationConfigRulesRequest schema
AuditingComplianceConfiguration ManagementGovernanceSecurity
Properties
| Name | Type | Description |
|---|---|---|
| OrganizationConfigRuleNames | 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-organization-config-rules-request-schema.json",
"title": "DescribeOrganizationConfigRulesRequest",
"description": "DescribeOrganizationConfigRulesRequest schema",
"type": "object",
"properties": {
"OrganizationConfigRuleNames": {
"allOf": [
{
"$ref": "#/components/schemas/OrganizationConfigRuleNames"
},
{
"description": "The names of organization Config rules for which you want details. If you do not specify any names, Config returns details for all your organization Config rules."
}
]
},
"Limit": {
"allOf": [
{
"$ref": "#/components/schemas/CosmosPageLimit"
},
{
"description": "The maximum number of organization Config rules returned on each page. If you do no specify a number, Config uses the default. The default is 100."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"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. "
}
]
}
}
}