Struct aws_sdk_securityhub::operation::batch_delete_automation_rules::BatchDeleteAutomationRulesOutput
source · #[non_exhaustive]pub struct BatchDeleteAutomationRulesOutput {
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
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 delete and why.
Implementations§
source§impl BatchDeleteAutomationRulesOutput
impl BatchDeleteAutomationRulesOutput
sourcepub fn processed_automation_rules(&self) -> &[String]
pub fn processed_automation_rules(&self) -> &[String]
A list of properly processed rule ARNs.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .processed_automation_rules.is_none()
.
sourcepub fn unprocessed_automation_rules(&self) -> &[UnprocessedAutomationRule]
pub fn unprocessed_automation_rules(&self) -> &[UnprocessedAutomationRule]
A list of objects containing RuleArn
, ErrorCode
, and ErrorMessage
. This parameter tells you which automation rules the request didn't delete and why.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .unprocessed_automation_rules.is_none()
.
source§impl BatchDeleteAutomationRulesOutput
impl BatchDeleteAutomationRulesOutput
sourcepub fn builder() -> BatchDeleteAutomationRulesOutputBuilder
pub fn builder() -> BatchDeleteAutomationRulesOutputBuilder
Creates a new builder-style object to manufacture BatchDeleteAutomationRulesOutput
.
Trait Implementations§
source§impl Clone for BatchDeleteAutomationRulesOutput
impl Clone for BatchDeleteAutomationRulesOutput
source§fn clone(&self) -> BatchDeleteAutomationRulesOutput
fn clone(&self) -> BatchDeleteAutomationRulesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for BatchDeleteAutomationRulesOutput
impl PartialEq for BatchDeleteAutomationRulesOutput
source§fn eq(&self, other: &BatchDeleteAutomationRulesOutput) -> bool
fn eq(&self, other: &BatchDeleteAutomationRulesOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for BatchDeleteAutomationRulesOutput
impl RequestId for BatchDeleteAutomationRulesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.