Struct rusoto_cloudtrail::RemoveTagsRequest[][src]

pub struct RemoveTagsRequest {
    pub resource_id: String,
    pub tags_list: Option<Vec<Tag>>,
}

Specifies the tags to remove from a trail.

Fields

Specifies the ARN of the trail from which tags should be removed. The format of a trail ARN is:

arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail

Specifies a list of tags to be removed.

Trait Implementations

impl Default for RemoveTagsRequest
[src]

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

impl Debug for RemoveTagsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveTagsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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