interface CfnResourceGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Inspector.CfnResourceGroupProps |
Java | software.amazon.awscdk.services.inspector.CfnResourceGroupProps |
Python | aws_cdk.aws_inspector.CfnResourceGroupProps |
TypeScript | @aws-cdk/aws-inspector » CfnResourceGroupProps |
Properties for defining a CfnResourceGroup.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as inspector from '@aws-cdk/aws-inspector';
const cfnResourceGroupProps: inspector.CfnResourceGroupProps = {
resourceGroupTags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | IResolvable | Cfn | IResolvable[] | The tags (key and value pairs) that will be associated with the resource group. |
resourceGroupTags
Type:
IResolvable | Cfn | IResolvable[]
The tags (key and value pairs) that will be associated with the resource group.
For more information, see Tag .

.NET
Java
Python
TypeScript