aws-cdk-lib.aws_ec2.CfnEC2Fleet.TagSpecificationProperty

interface TagSpecificationProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnEC2Fleet.TagSpecificationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnEC2Fleet_TagSpecificationProperty
Javasoftware.amazon.awscdk.services.ec2.CfnEC2Fleet.TagSpecificationProperty
Pythonaws_cdk.aws_ec2.CfnEC2Fleet.TagSpecificationProperty
TypeScript aws-cdk-lib » aws_ec2 » CfnEC2Fleet » TagSpecificationProperty

Specifies the tags to apply to a resource when the resource is being created for an EC2 Fleet.

TagSpecification is a property of the AWS::EC2::EC2Fleet resource.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const tagSpecificationProperty: ec2.CfnEC2Fleet.TagSpecificationProperty = {
  resourceType: 'resourceType',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
resourceType?stringThe type of resource to tag.
tags?CfnTag[]The tags to apply to the resource.

resourceType?

Type: string (optional)

The type of resource to tag.

ResourceType must be fleet .


tags?

Type: CfnTag[] (optional)

The tags to apply to the resource.