Struct rusoto_cloudtrail::AddTagsRequest [] [src]

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

Specifies the tags to add to a trail.

Fields

Specifies the ARN of the trail to which one or more tags will be added. The format of a trail ARN is:

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

Contains a list of CloudTrail tags, up to a limit of 50

Trait Implementations

impl Default for AddTagsRequest
[src]

[src]

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

impl Debug for AddTagsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AddTagsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations