Class: Aws::SSM::Types::AddTagsToResourceRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

Note:

When making an API call, you may pass AddTagsToResourceRequest data as a 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

Instance Attribute Details

#resource_idString

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.

<note markdown=“1”> The ManagedInstance type for this API action is only for on-premises managed instances. You must specify the name of the managed instance in the following format: mi-ID_number. For example, mi-1a2b3c4d5e6f.

</note>

Returns:

  • (String)


151
152
153
154
155
156
# File 'lib/aws-sdk-ssm/types.rb', line 151

class AddTagsToResourceRequest < Struct.new(
  :resource_type,
  :resource_id,
  :tags)
  include Aws::Structure
end

#resource_typeString

Specifies the type of resource you are tagging.

<note markdown=“1”> The ManagedInstance type for this API action is for on-premises managed instances. You must specify the name of the managed instance in the following format: mi-ID_number. For example, mi-1a2b3c4d5e6f.

</note>

Returns:

  • (String)


151
152
153
154
155
156
# File 'lib/aws-sdk-ssm/types.rb', line 151

class AddTagsToResourceRequest < Struct.new(
  :resource_type,
  :resource_id,
  :tags)
  include Aws::Structure
end

#tagsArray<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.

Do not enter personally identifiable information in this field.

Returns:



151
152
153
154
155
156
# File 'lib/aws-sdk-ssm/types.rb', line 151

class AddTagsToResourceRequest < Struct.new(
  :resource_type,
  :resource_id,
  :tags)
  include Aws::Structure
end