Struct aws_sdk_securityhub::operation::batch_get_security_controls::BatchGetSecurityControlsOutput
source · #[non_exhaustive]pub struct BatchGetSecurityControlsOutput {
pub security_controls: Option<Vec<SecurityControl>>,
pub unprocessed_ids: Option<Vec<UnprocessedSecurityControl>>,
/* 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.security_controls: Option<Vec<SecurityControl>>
An array that returns the identifier, Amazon Resource Name (ARN), and other details about a security control. The same information is returned whether the request includes SecurityControlId
or SecurityControlArn
.
unprocessed_ids: Option<Vec<UnprocessedSecurityControl>>
A security control (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) for which details cannot be returned.
Implementations§
source§impl BatchGetSecurityControlsOutput
impl BatchGetSecurityControlsOutput
sourcepub fn security_controls(&self) -> &[SecurityControl]
pub fn security_controls(&self) -> &[SecurityControl]
An array that returns the identifier, Amazon Resource Name (ARN), and other details about a security control. The same information is returned whether the request includes SecurityControlId
or SecurityControlArn
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .security_controls.is_none()
.
sourcepub fn unprocessed_ids(&self) -> &[UnprocessedSecurityControl]
pub fn unprocessed_ids(&self) -> &[UnprocessedSecurityControl]
A security control (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) for which details cannot be returned.
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_ids.is_none()
.
source§impl BatchGetSecurityControlsOutput
impl BatchGetSecurityControlsOutput
sourcepub fn builder() -> BatchGetSecurityControlsOutputBuilder
pub fn builder() -> BatchGetSecurityControlsOutputBuilder
Creates a new builder-style object to manufacture BatchGetSecurityControlsOutput
.
Trait Implementations§
source§impl Clone for BatchGetSecurityControlsOutput
impl Clone for BatchGetSecurityControlsOutput
source§fn clone(&self) -> BatchGetSecurityControlsOutput
fn clone(&self) -> BatchGetSecurityControlsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for BatchGetSecurityControlsOutput
impl PartialEq for BatchGetSecurityControlsOutput
source§fn eq(&self, other: &BatchGetSecurityControlsOutput) -> bool
fn eq(&self, other: &BatchGetSecurityControlsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for BatchGetSecurityControlsOutput
impl RequestId for BatchGetSecurityControlsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for BatchGetSecurityControlsOutput
Auto Trait Implementations§
impl Freeze for BatchGetSecurityControlsOutput
impl RefUnwindSafe for BatchGetSecurityControlsOutput
impl Send for BatchGetSecurityControlsOutput
impl Sync for BatchGetSecurityControlsOutput
impl Unpin for BatchGetSecurityControlsOutput
impl UnwindSafe for BatchGetSecurityControlsOutput
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