[][src]Struct rusoto_backup::UntagResourceInput

pub struct UntagResourceInput {
    pub resource_arn: String,
    pub tag_key_list: Vec<String>,
}

Fields

resource_arn: String

An ARN that uniquely identifies a resource. The format of the ARN depends on the type of the tagged resource.

tag_key_list: Vec<String>

A list of keys to identify which key-value tags to remove from a resource.

Trait Implementations

impl Clone for UntagResourceInput[src]

impl Debug for UntagResourceInput[src]

impl Default for UntagResourceInput[src]

impl PartialEq<UntagResourceInput> for UntagResourceInput[src]

impl Serialize for UntagResourceInput[src]

impl StructuralPartialEq for UntagResourceInput[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.