[][src]Struct rusoto_route53domains::UpdateTagsForDomainRequest

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

The UpdateTagsForDomainRequest includes the following elements.

Fields

domain_name: String

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

tags_to_update: Option<Vec<Tag>>

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 Clone for UpdateTagsForDomainRequest[src]

impl Debug for UpdateTagsForDomainRequest[src]

impl Default for UpdateTagsForDomainRequest[src]

impl PartialEq<UpdateTagsForDomainRequest> for UpdateTagsForDomainRequest[src]

impl Serialize for UpdateTagsForDomainRequest[src]

impl StructuralPartialEq for UpdateTagsForDomainRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.