Struct rusoto_ssm::AddTagsToResourceRequest[][src]

pub struct AddTagsToResourceRequest {
    pub resource_id: String,
    pub resource_type: String,
    pub tags: Vec<Tag>,
}

Fields

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.

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

Specifies the type of resource you are tagging.

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

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.

Trait Implementations

impl Default for AddTagsToResourceRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for AddTagsToResourceRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AddTagsToResourceRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AddTagsToResourceRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations