aws_resource_list
List AWS resources of a specified CloudFormation type with pagination, using Cloud Control API. Supports parent identifiers for nested resources and returns results with a continuation token.
Instructions
List resources of a given type via Cloud Control API, paginated. Returns an array of {identifier, properties}, a nextToken (null when exhausted), and hasMore. Some types need parent identifiers (e.g. nested resources under a cluster); pass those as resourceModel.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| typeName | Yes | CloudFormation type name, e.g. 'AWS::Lambda::Function'. | |
| resourceModel | No | Parent identifier properties for nested types, e.g. {ClusterArn: '...'}. | |
| maxResults | No | Page size (1-100). Default 100. | |
| nextToken | No | Resume cursor from the previous call's `nextToken`. Omit for the first page. | |
| profile | No | Override session profile for this call. | |
| region | No | Override session region for this call. | |
| timeoutMs | No | Timeout in milliseconds. Default 60000. |