[][src]Struct rusoto_accessanalyzer::UpdateArchiveRuleRequest

pub struct UpdateArchiveRuleRequest {
    pub analyzer_name: String,
    pub client_token: Option<String>,
    pub filter: HashMap<String, Criterion>,
    pub rule_name: String,
}

Updates the specified archive rule.

Fields

analyzer_name: String

The name of the analyzer to update the archive rules for.

client_token: Option<String>

A client token.

filter: HashMap<String, Criterion>

A filter to match for the rules to update. Only rules that match the filter are updated.

rule_name: String

The name of the rule to update.

Trait Implementations

impl Clone for UpdateArchiveRuleRequest[src]

impl Debug for UpdateArchiveRuleRequest[src]

impl Default for UpdateArchiveRuleRequest[src]

impl PartialEq<UpdateArchiveRuleRequest> for UpdateArchiveRuleRequest[src]

impl Serialize for UpdateArchiveRuleRequest[src]

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