[][src]Struct rusoto_accessanalyzer::CreateAnalyzerRequest

pub struct CreateAnalyzerRequest {
    pub analyzer_name: String,
    pub archive_rules: Option<Vec<InlineArchiveRule>>,
    pub client_token: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub type_: String,
}

Creates an analyzer.

Fields

analyzer_name: String

The name of the analyzer to create.

archive_rules: Option<Vec<InlineArchiveRule>>

Specifies the archive rules to add for the analyzer. Archive rules automatically archive findings that meet the criteria you define for the rule.

client_token: Option<String>

A client token.

tags: Option<HashMap<String, String>>

The tags to apply to the analyzer.

type_: String

The type of analyzer to create. Only ACCOUNT analyzers are supported. You can create only one analyzer per account per Region.

Trait Implementations

impl Clone for CreateAnalyzerRequest[src]

impl Debug for CreateAnalyzerRequest[src]

impl Default for CreateAnalyzerRequest[src]

impl PartialEq<CreateAnalyzerRequest> for CreateAnalyzerRequest[src]

impl Serialize for CreateAnalyzerRequest[src]

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