Struct rusoto_elasticbeanstalk::UpdateTagsForResourceMessage[][src]

pub struct UpdateTagsForResourceMessage {
    pub resource_arn: String,
    pub tags_to_add: Option<Vec<Tag>>,
    pub tags_to_remove: Option<Vec<String>>,
}

Fields

The Amazon Resource Name (ARN) of the resouce to be updated.

Must be the ARN of an Elastic Beanstalk environment.

A list of tags to add or update.

If a key of an existing tag is added, the tag's value is updated.

A list of tag keys to remove.

If a tag key doesn't exist, it is silently ignored.

Trait Implementations

impl Default for UpdateTagsForResourceMessage
[src]

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

impl Debug for UpdateTagsForResourceMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateTagsForResourceMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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