Struct aws_sdk_securityhub::operation::batch_update_automation_rules::BatchUpdateAutomationRulesOutput
source · #[non_exhaustive]pub struct BatchUpdateAutomationRulesOutput {
pub processed_automation_rules: Option<Vec<String>>,
pub unprocessed_automation_rules: Option<Vec<UnprocessedAutomationRule>>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.processed_automation_rules: Option<Vec<String>>
A list of properly processed rule ARNs.
unprocessed_automation_rules: Option<Vec<UnprocessedAutomationRule>>
A list of objects containing RuleArn
, ErrorCode
, and ErrorMessage
. This parameter tells you which automation rules the request didn't update and why.
Implementations§
source§impl BatchUpdateAutomationRulesOutput
impl BatchUpdateAutomationRulesOutput
sourcepub fn processed_automation_rules(&self) -> Option<&[String]>
pub fn processed_automation_rules(&self) -> Option<&[String]>
A list of properly processed rule ARNs.
sourcepub fn unprocessed_automation_rules(
&self
) -> Option<&[UnprocessedAutomationRule]>
pub fn unprocessed_automation_rules( &self ) -> Option<&[UnprocessedAutomationRule]>
A list of objects containing RuleArn
, ErrorCode
, and ErrorMessage
. This parameter tells you which automation rules the request didn't update and why.
source§impl BatchUpdateAutomationRulesOutput
impl BatchUpdateAutomationRulesOutput
sourcepub fn builder() -> BatchUpdateAutomationRulesOutputBuilder
pub fn builder() -> BatchUpdateAutomationRulesOutputBuilder
Creates a new builder-style object to manufacture BatchUpdateAutomationRulesOutput
.
Trait Implementations§
source§impl Clone for BatchUpdateAutomationRulesOutput
impl Clone for BatchUpdateAutomationRulesOutput
source§fn clone(&self) -> BatchUpdateAutomationRulesOutput
fn clone(&self) -> BatchUpdateAutomationRulesOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for BatchUpdateAutomationRulesOutput
impl PartialEq for BatchUpdateAutomationRulesOutput
source§fn eq(&self, other: &BatchUpdateAutomationRulesOutput) -> bool
fn eq(&self, other: &BatchUpdateAutomationRulesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for BatchUpdateAutomationRulesOutput
impl RequestId for BatchUpdateAutomationRulesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for BatchUpdateAutomationRulesOutput
Auto Trait Implementations§
impl RefUnwindSafe for BatchUpdateAutomationRulesOutput
impl Send for BatchUpdateAutomationRulesOutput
impl Sync for BatchUpdateAutomationRulesOutput
impl Unpin for BatchUpdateAutomationRulesOutput
impl UnwindSafe for BatchUpdateAutomationRulesOutput
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
Mutably borrows from an owned value. Read more