aws-cdk-lib.aws_fms.CfnPolicy.ResourceTagProperty

interface ResourceTagProperty

LanguageType name
.NETAmazon.CDK.AWS.FMS.CfnPolicy.ResourceTagProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsfms#CfnPolicy_ResourceTagProperty
Javasoftware.amazon.awscdk.services.fms.CfnPolicy.ResourceTagProperty
Pythonaws_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

NameTypeDescription
keystringThe resource tag key.
value?stringThe resource tag value.

key

Type: string

The resource tag key.


value?

Type: string (optional)

The resource tag value.