Struct aws_sdk_accessanalyzer::input::CreateAnalyzerInput
source · [−]#[non_exhaustive]pub struct CreateAnalyzerInput {
pub analyzer_name: Option<String>,
pub type: Option<Type>,
pub archive_rules: Option<Vec<InlineArchiveRule>>,
pub tags: Option<HashMap<String, String>>,
pub client_token: Option<String>,
}
Expand description
Creates an analyzer.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.analyzer_name: Option<String>
The name of the analyzer to create.
type: Option<Type>
The type of analyzer to create. Only ACCOUNT and ORGANIZATION analyzers are supported. You can create only one analyzer per account per Region. You can create up to 5 analyzers per organization per Region.
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.
The tags to apply to the analyzer.
client_token: Option<String>
A client token.
Implementations
sourceimpl CreateAnalyzerInput
impl CreateAnalyzerInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateAnalyzer, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateAnalyzer, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateAnalyzer
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateAnalyzerInput
.
sourceimpl CreateAnalyzerInput
impl CreateAnalyzerInput
sourcepub fn analyzer_name(&self) -> Option<&str>
pub fn analyzer_name(&self) -> Option<&str>
The name of the analyzer to create.
sourcepub fn type(&self) -> Option<&Type>
pub fn type(&self) -> Option<&Type>
The type of analyzer to create. Only ACCOUNT and ORGANIZATION analyzers are supported. You can create only one analyzer per account per Region. You can create up to 5 analyzers per organization per Region.
sourcepub fn archive_rules(&self) -> Option<&[InlineArchiveRule]>
pub fn archive_rules(&self) -> Option<&[InlineArchiveRule]>
Specifies the archive rules to add for the analyzer. Archive rules automatically archive findings that meet the criteria you define for the rule.
The tags to apply to the analyzer.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A client token.
Trait Implementations
sourceimpl Clone for CreateAnalyzerInput
impl Clone for CreateAnalyzerInput
sourcefn clone(&self) -> CreateAnalyzerInput
fn clone(&self) -> CreateAnalyzerInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CreateAnalyzerInput
impl Debug for CreateAnalyzerInput
sourceimpl PartialEq<CreateAnalyzerInput> for CreateAnalyzerInput
impl PartialEq<CreateAnalyzerInput> for CreateAnalyzerInput
sourcefn eq(&self, other: &CreateAnalyzerInput) -> bool
fn eq(&self, other: &CreateAnalyzerInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateAnalyzerInput) -> bool
fn ne(&self, other: &CreateAnalyzerInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateAnalyzerInput
Auto Trait Implementations
impl RefUnwindSafe for CreateAnalyzerInput
impl Send for CreateAnalyzerInput
impl Sync for CreateAnalyzerInput
impl Unpin for CreateAnalyzerInput
impl UnwindSafe for CreateAnalyzerInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more