pub struct Builder { /* private fields */ }
Expand description
A builder for CreateAnalyzerInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn analyzer_name(self, input: impl Into<String>) -> Self
pub fn analyzer_name(self, input: impl Into<String>) -> Self
The name of the analyzer to create.
sourcepub fn set_analyzer_name(self, input: Option<String>) -> Self
pub fn set_analyzer_name(self, input: Option<String>) -> Self
The name of the analyzer to create.
sourcepub fn type(self, input: Type) -> Self
pub fn type(self, input: Type) -> Self
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 set_type(self, input: Option<Type>) -> Self
pub fn set_type(self, input: Option<Type>) -> Self
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, input: InlineArchiveRule) -> Self
pub fn archive_rules(self, input: InlineArchiveRule) -> Self
Appends an item to archive_rules
.
To override the contents of this collection use set_archive_rules
.
Specifies the archive rules to add for the analyzer. Archive rules automatically archive findings that meet the criteria you define for the rule.
sourcepub fn set_archive_rules(self, input: Option<Vec<InlineArchiveRule>>) -> Self
pub fn set_archive_rules(self, input: Option<Vec<InlineArchiveRule>>) -> Self
Specifies the archive rules to add for the analyzer. Archive rules automatically archive findings that meet the criteria you define for the rule.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
The tags to apply to the analyzer.
The tags to apply to the analyzer.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A client token.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A client token.
sourcepub fn build(self) -> Result<CreateAnalyzerInput, BuildError>
pub fn build(self) -> Result<CreateAnalyzerInput, BuildError>
Consumes the builder and constructs a CreateAnalyzerInput
.