interface QueryProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ResourceGroups.CfnGroup.QueryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsresourcegroups#CfnGroup_QueryProperty |
Java | software.amazon.awscdk.services.resourcegroups.CfnGroup.QueryProperty |
Python | aws_cdk.aws_resourcegroups.CfnGroup.QueryProperty |
TypeScript | aws-cdk-lib » aws_resourcegroups » CfnGroup » QueryProperty |
Specifies details within a ResourceQuery
structure that determines the membership of the resource group.
The contents required in the Query
structure are determined by the Type
property of the containing ResourceQuery
structure.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_resourcegroups as resourcegroups } from 'aws-cdk-lib';
const queryProperty: resourcegroups.CfnGroup.QueryProperty = {
resourceTypeFilters: ['resourceTypeFilters'],
stackIdentifier: 'stackIdentifier',
tagFilters: [{
key: 'key',
values: ['values'],
}],
};
Properties
Name | Type | Description |
---|---|---|
resource | string[] | Specifies limits to the types of resources that can be included in the resource group. |
stack | string | Specifies the ARN of a CloudFormation stack. |
tag | IResolvable | IResolvable | Tag [] | A list of key-value pair objects that limit which resources can be members of the resource group. |
resourceTypeFilters?
Type:
string[]
(optional)
Specifies limits to the types of resources that can be included in the resource group.
For example, if ResourceTypeFilters
is ["AWS::EC2::Instance", "AWS::DynamoDB::Table"]
, only EC2 instances or DynamoDB tables can be members of this resource group. The default value is ["AWS::AllSupported"]
.
stackIdentifier?
Type:
string
(optional)
Specifies the ARN of a CloudFormation stack.
All supported resources of the CloudFormation stack are members of the resource group. If you don't specify an ARN, this parameter defaults to the current stack that you are defining, which means that all the resources of the current stack are grouped.
You can specify a value for StackIdentifier
only when the ResourceQuery.Type
property is CLOUDFORMATION_STACK_1_0.
tagFilters?
Type:
IResolvable
|
IResolvable
|
Tag
[]
(optional)
A list of key-value pair objects that limit which resources can be members of the resource group.
This property is required when the ResourceQuery.Type
property is TAG_FILTERS_1_0
.
A resource must have a tag that matches every filter that is provided in the TagFilters
list.