aws.cloudformation.list_resource_scan_related_resources
Example SQL Queries
SELECT * FROMaws.cloudformation.list_resource_scan_related_resourcesWHERE"resource_scan_id" = 'VALUE'AND "resources" = 'VALUE';Description
Lists the related resources for a list of resources from a resource scan. 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 |
| resources Required Input Column The list of resources for which you want to get the related resources. Up to 100 resources can be provided. | STRUCT( |
Show child fields
| |
| _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 |
| 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 |