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]

[src]

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

impl Debug for RemoveTagsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveTagsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations