Struct rusoto_ssm::RemoveTagsFromResourceRequest[][src]

pub struct RemoveTagsFromResourceRequest {
    pub resource_id: String,
    pub resource_type: String,
    pub tag_keys: Vec<String>,
}

Fields

The resource ID for which you want to remove tags. 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.

The type of resource of which you want to remove a tag.

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.

Tag keys that you want to remove from the specified resource.

Trait Implementations

impl Default for RemoveTagsFromResourceRequest
[src]

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

impl Debug for RemoveTagsFromResourceRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveTagsFromResourceRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RemoveTagsFromResourceRequest
[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