aws.cloudformation.list_resource_scan_resources
Example SQL Queries
SELECT * FROMaws.cloudformation.list_resource_scan_resourcesWHERE"resource_scan_id" = 'VALUE';Description
Lists the resources from a resource scan. The results can be filtered by resource identifier, resource type prefix, tag key, and tag value. Only resources that match all specified filters are returned. The response indicates whether each returned resource is already managed by CloudFormation.
Table Definition
| Column Name | Column Data Type |
|---|---|
| resource_scan_id Required Input Column The Amazon Resource Name (ARN) of the resource scan. | VARCHAR |
| resource_type_prefix Input Column If specified, the returned resources will be of any of the resource types with the specified prefix. | VARCHAR |
| tag_key Input Column If specified, the returned resources will have a matching tag key. | VARCHAR |
| tag_value Input Column If specified, the returned resources will have a matching tag value. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| _input_resource_identifier Input Column | VARCHAR |
| managed_by_stack If true, the resource is managed by a CloudFormation stack. | BOOLEAN |
| resource_identifier A list of up to 256 key-value pairs that identifies for the scanned resource. The key is the name of one of the primary identifiers for the resource. (Primary identifiers are specified in the primaryIdentifier list in the resource schema.) The value is the value of that primary identifier. For example, for a AWS::DynamoDB::Table resource, the primary identifiers is TableName so the key-value pair could be "TableName": "MyDDBTable". For more information, see primaryIdentifier in the CloudFormation Command Line Interface User guide for extension development. | MAP(VARCHAR, VARCHAR) |
| resource_type The type of the resource, such as AWS::DynamoDB::Table. For the list of supported resources, see Resource type support In the CloudFormation User Guide | VARCHAR |