aws:createTags - 为 Amazon 资源创建标签 - Amazon Systems Manager
Amazon Web Services 文档中描述的 Amazon Web Services 服务或功能可能因区域而异。要查看适用于中国区域的差异,请参阅 中国的 Amazon Web Services 服务入门 (PDF)

aws:createTags - 为 Amazon 资源创建标签

为 Amazon Elastic Compute Cloud (Amazon EC2) 实例或 Amazon Systems Manager 托管实例创建新标签。

输入

此操作支持大多数 Amazon EC2 CreateTags 和 Systems Manager AddTagsToResource 参数。有关更多信息,请参阅 CreateTagsAddTagsToResource

以下示例说明如何为 Amazon Machine Image (AMI) 和实例添加标签以作为特定部门的生产资源。

YAML
name: createTags action: aws:createTags maxAttempts: 3 onFailure: Abort inputs: ResourceType: EC2 ResourceIds: - ami-9a3768fa - i-02951acd5111a8169 Tags: - Key: production Value: '' - Key: department Value: devops
JSON
{ "name": "createTags", "action": "aws:createTags", "maxAttempts": 3, "onFailure": "Abort", "inputs": { "ResourceType": "EC2", "ResourceIds": [ "ami-9a3768fa", "i-02951acd5111a8169" ], "Tags": [ { "Key": "production", "Value": "" }, { "Key": "department", "Value": "devops" } ] } }
ResourceIds

要为其添加标签的资源的 ID。如果资源类型不是“EC2”,则此字段只能包含单个项目。

类型:字符串列表

必需:是

标签

要与资源关联的标签。

类型:映射列表

必需:是

ResourceType

要为其添加标签的资源的类型。如果未提供,则使用默认值“EC2”。

类型:字符串

必需:否

有效值: EC2 | ManagedInstance | MaintenanceWindow | Parameter

输出