interface ResourceTagProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.FMS.CfnPolicy.ResourceTagProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfms#CfnPolicy_ResourceTagProperty |
Java | software.amazon.awscdk.services.fms.CfnPolicy.ResourceTagProperty |
Python | aws_cdk.aws_fms.CfnPolicy.ResourceTagProperty |
TypeScript | aws-cdk-lib » aws_fms » CfnPolicy » ResourceTagProperty |
The resource tags that AWS Firewall Manager uses to determine if a particular resource should be included or excluded from the AWS Firewall Manager policy.
Tags enable you to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value. Firewall Manager combines the tags with "AND" so that, if you add more than one tag to a policy scope, a resource must have all the specified tags to be included or excluded. For more information, see Working with Tag Editor .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fms as fms } from 'aws-cdk-lib';
const resourceTagProperty: fms.CfnPolicy.ResourceTagProperty = {
key: 'key',
// the properties below are optional
value: 'value',
};
Properties
Name | Type | Description |
---|---|---|
key | string | The resource tag key. |
value? | string | The resource tag value. |
key
Type:
string
The resource tag key.
value?
Type:
string
(optional)
The resource tag value.