Struct aws_sdk_securityhub::operation::batch_get_automation_rules::builders::BatchGetAutomationRulesOutputBuilder
source · #[non_exhaustive]pub struct BatchGetAutomationRulesOutputBuilder { /* private fields */ }
Expand description
A builder for BatchGetAutomationRulesOutput
.
Implementations§
source§impl BatchGetAutomationRulesOutputBuilder
impl BatchGetAutomationRulesOutputBuilder
sourcepub fn rules(self, input: AutomationRulesConfig) -> Self
pub fn rules(self, input: AutomationRulesConfig) -> Self
Appends an item to rules
.
To override the contents of this collection use set_rules
.
A list of rule details for the provided rule ARNs.
sourcepub fn set_rules(self, input: Option<Vec<AutomationRulesConfig>>) -> Self
pub fn set_rules(self, input: Option<Vec<AutomationRulesConfig>>) -> Self
A list of rule details for the provided rule ARNs.
sourcepub fn get_rules(&self) -> &Option<Vec<AutomationRulesConfig>>
pub fn get_rules(&self) -> &Option<Vec<AutomationRulesConfig>>
A list of rule details for the provided rule ARNs.
sourcepub fn unprocessed_automation_rules(
self,
input: UnprocessedAutomationRule
) -> Self
pub fn unprocessed_automation_rules( self, input: UnprocessedAutomationRule ) -> Self
Appends an item to unprocessed_automation_rules
.
To override the contents of this collection use set_unprocessed_automation_rules
.
A list of objects containing RuleArn
, ErrorCode
, and ErrorMessage
. This parameter tells you which automation rules the request didn't retrieve and why.
sourcepub fn set_unprocessed_automation_rules(
self,
input: Option<Vec<UnprocessedAutomationRule>>
) -> Self
pub fn set_unprocessed_automation_rules( self, input: Option<Vec<UnprocessedAutomationRule>> ) -> Self
A list of objects containing RuleArn
, ErrorCode
, and ErrorMessage
. This parameter tells you which automation rules the request didn't retrieve and why.
sourcepub fn get_unprocessed_automation_rules(
&self
) -> &Option<Vec<UnprocessedAutomationRule>>
pub fn get_unprocessed_automation_rules( &self ) -> &Option<Vec<UnprocessedAutomationRule>>
A list of objects containing RuleArn
, ErrorCode
, and ErrorMessage
. This parameter tells you which automation rules the request didn't retrieve and why.
sourcepub fn build(self) -> BatchGetAutomationRulesOutput
pub fn build(self) -> BatchGetAutomationRulesOutput
Consumes the builder and constructs a BatchGetAutomationRulesOutput
.
Trait Implementations§
source§impl Clone for BatchGetAutomationRulesOutputBuilder
impl Clone for BatchGetAutomationRulesOutputBuilder
source§fn clone(&self) -> BatchGetAutomationRulesOutputBuilder
fn clone(&self) -> BatchGetAutomationRulesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchGetAutomationRulesOutputBuilder
impl Default for BatchGetAutomationRulesOutputBuilder
source§fn default() -> BatchGetAutomationRulesOutputBuilder
fn default() -> BatchGetAutomationRulesOutputBuilder
source§impl PartialEq for BatchGetAutomationRulesOutputBuilder
impl PartialEq for BatchGetAutomationRulesOutputBuilder
source§fn eq(&self, other: &BatchGetAutomationRulesOutputBuilder) -> bool
fn eq(&self, other: &BatchGetAutomationRulesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetAutomationRulesOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetAutomationRulesOutputBuilder
impl RefUnwindSafe for BatchGetAutomationRulesOutputBuilder
impl Send for BatchGetAutomationRulesOutputBuilder
impl Sync for BatchGetAutomationRulesOutputBuilder
impl Unpin for BatchGetAutomationRulesOutputBuilder
impl UnwindSafe for BatchGetAutomationRulesOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more