Skip to content

Tag Resource

lookoutequipment_tag_resource R Documentation

Associates a given tag to a resource in your account

Description

Associates a given tag to a resource in your account. A tag is a key-value pair which can be added to an Amazon Lookout for Equipment resource as metadata. Tags can be used for organizing your resources as well as helping you to search and filter by tag. Multiple tags can be added to a resource, either when you create it, or later. Up to 50 tags can be associated with each resource.

Usage

lookoutequipment_tag_resource(ResourceArn, Tags)

Arguments

ResourceArn

[required] The Amazon Resource Name (ARN) of the specific resource to which the tag should be associated.

Tags

[required] The tag or tags to be associated with a specific resource. Both the tag key and value are specified.

Value

An empty list.

Request syntax

svc$tag_resource(
  ResourceArn = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)