Struct rusoto_route53domains::UpdateTagsForDomainRequest [] [src]

pub struct UpdateTagsForDomainRequest {
    pub domain_name: String,
    pub tags_to_update: Option<Vec<Tag>>,
}

The UpdateTagsForDomainRequest includes the following elements.

Fields

The domain for which you want to add or update tags.

A list of the tag keys and values that you want to add or update. If you specify a key that already exists, the corresponding value will be replaced.

Trait Implementations

impl Default for UpdateTagsForDomainRequest
[src]

[src]

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

impl Debug for UpdateTagsForDomainRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateTagsForDomainRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations