Struct aws_sdk_securityhub::operation::batch_get_standards_control_associations::BatchGetStandardsControlAssociationsOutput
source · #[non_exhaustive]pub struct BatchGetStandardsControlAssociationsOutput {
pub standards_control_association_details: Option<Vec<StandardsControlAssociationDetail>>,
pub unprocessed_associations: Option<Vec<UnprocessedStandardsControlAssociation>>,
/* 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.standards_control_association_details: Option<Vec<StandardsControlAssociationDetail>>
Provides the enablement status of a security control in a specified standard and other details for the control in relation to the specified standard.
unprocessed_associations: Option<Vec<UnprocessedStandardsControlAssociation>>
A security control (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) whose enablement status in a specified standard cannot be returned.
Implementations§
source§impl BatchGetStandardsControlAssociationsOutput
impl BatchGetStandardsControlAssociationsOutput
sourcepub fn standards_control_association_details(
&self
) -> &[StandardsControlAssociationDetail]
pub fn standards_control_association_details( &self ) -> &[StandardsControlAssociationDetail]
Provides the enablement status of a security control in a specified standard and other details for the control in relation to the specified standard.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .standards_control_association_details.is_none()
.
sourcepub fn unprocessed_associations(
&self
) -> &[UnprocessedStandardsControlAssociation]
pub fn unprocessed_associations( &self ) -> &[UnprocessedStandardsControlAssociation]
A security control (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) whose enablement status in a specified standard 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_associations.is_none()
.
source§impl BatchGetStandardsControlAssociationsOutput
impl BatchGetStandardsControlAssociationsOutput
sourcepub fn builder() -> BatchGetStandardsControlAssociationsOutputBuilder
pub fn builder() -> BatchGetStandardsControlAssociationsOutputBuilder
Creates a new builder-style object to manufacture BatchGetStandardsControlAssociationsOutput
.
Trait Implementations§
source§impl Clone for BatchGetStandardsControlAssociationsOutput
impl Clone for BatchGetStandardsControlAssociationsOutput
source§fn clone(&self) -> BatchGetStandardsControlAssociationsOutput
fn clone(&self) -> BatchGetStandardsControlAssociationsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for BatchGetStandardsControlAssociationsOutput
impl PartialEq for BatchGetStandardsControlAssociationsOutput
source§fn eq(&self, other: &BatchGetStandardsControlAssociationsOutput) -> bool
fn eq(&self, other: &BatchGetStandardsControlAssociationsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for BatchGetStandardsControlAssociationsOutput
impl RequestId for BatchGetStandardsControlAssociationsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for BatchGetStandardsControlAssociationsOutput
Auto Trait Implementations§
impl Freeze for BatchGetStandardsControlAssociationsOutput
impl RefUnwindSafe for BatchGetStandardsControlAssociationsOutput
impl Send for BatchGetStandardsControlAssociationsOutput
impl Sync for BatchGetStandardsControlAssociationsOutput
impl Unpin for BatchGetStandardsControlAssociationsOutput
impl UnwindSafe for BatchGetStandardsControlAssociationsOutput
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