You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SSM::Types::AddTagsToResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::AddTagsToResourceRequest
- Defined in:
- (unknown)
Overview
When passing AddTagsToResourceRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
resource_type: "Document", # required, accepts Document, ManagedInstance, MaintenanceWindow, Parameter, PatchBaseline, OpsItem
resource_id: "ResourceId", # required
tags: [ # required
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Instance Attribute Summary collapse
-
#resource_id ⇒ String
The resource ID you want to tag.
-
#resource_type ⇒ String
Specifies the type of resource you are tagging.
-
#tags ⇒ Array<Types::Tag>
One or more tags.
Instance Attribute Details
#resource_id ⇒ String
The resource ID you want to tag.
Use the ID of the resource. Here are some examples:
ManagedInstance: mi-012345abcde
MaintenanceWindow: mw-012345abcde
PatchBaseline: pb-012345abcde
For the Document and Parameter values, use the name of the resource.
#resource_type ⇒ String
Specifies the type of resource you are tagging.
Possible values:
- Document
- ManagedInstance
- MaintenanceWindow
- Parameter
- PatchBaseline
- OpsItem
#tags ⇒ Array<Types::Tag>
One or more tags. The value parameter is required, but if you don\'t want the tag to have a value, specify the parameter with no value, and we set the value to an empty string.