Struct aws_sdk_securityhub::operation::batch_delete_automation_rules::builders::BatchDeleteAutomationRulesOutputBuilder
source · #[non_exhaustive]pub struct BatchDeleteAutomationRulesOutputBuilder { /* private fields */ }
Expand description
A builder for BatchDeleteAutomationRulesOutput
.
Implementations§
source§impl BatchDeleteAutomationRulesOutputBuilder
impl BatchDeleteAutomationRulesOutputBuilder
sourcepub fn processed_automation_rules(self, input: impl Into<String>) -> Self
pub fn processed_automation_rules(self, input: impl Into<String>) -> Self
Appends an item to processed_automation_rules
.
To override the contents of this collection use set_processed_automation_rules
.
A list of properly processed rule ARNs.
sourcepub fn set_processed_automation_rules(self, input: Option<Vec<String>>) -> Self
pub fn set_processed_automation_rules(self, input: Option<Vec<String>>) -> Self
A list of properly processed rule ARNs.
sourcepub fn get_processed_automation_rules(&self) -> &Option<Vec<String>>
pub fn get_processed_automation_rules(&self) -> &Option<Vec<String>>
A list of properly processed 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 delete 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 delete 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 delete and why.
sourcepub fn build(self) -> BatchDeleteAutomationRulesOutput
pub fn build(self) -> BatchDeleteAutomationRulesOutput
Consumes the builder and constructs a BatchDeleteAutomationRulesOutput
.
Trait Implementations§
source§impl Clone for BatchDeleteAutomationRulesOutputBuilder
impl Clone for BatchDeleteAutomationRulesOutputBuilder
source§fn clone(&self) -> BatchDeleteAutomationRulesOutputBuilder
fn clone(&self) -> BatchDeleteAutomationRulesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchDeleteAutomationRulesOutputBuilder
impl Default for BatchDeleteAutomationRulesOutputBuilder
source§fn default() -> BatchDeleteAutomationRulesOutputBuilder
fn default() -> BatchDeleteAutomationRulesOutputBuilder
source§impl PartialEq for BatchDeleteAutomationRulesOutputBuilder
impl PartialEq for BatchDeleteAutomationRulesOutputBuilder
source§fn eq(&self, other: &BatchDeleteAutomationRulesOutputBuilder) -> bool
fn eq(&self, other: &BatchDeleteAutomationRulesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchDeleteAutomationRulesOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchDeleteAutomationRulesOutputBuilder
impl RefUnwindSafe for BatchDeleteAutomationRulesOutputBuilder
impl Send for BatchDeleteAutomationRulesOutputBuilder
impl Sync for BatchDeleteAutomationRulesOutputBuilder
impl Unpin for BatchDeleteAutomationRulesOutputBuilder
impl UnwindSafe for BatchDeleteAutomationRulesOutputBuilder
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