#[non_exhaustive]pub struct UnprocessedStandardsControlAssociation {
pub standards_control_association_id: Option<StandardsControlAssociationId>,
pub error_code: Option<UnprocessedErrorCode>,
pub error_reason: Option<String>,
}
Expand description
Provides details about which control's enablement status couldn't be retrieved in a specified standard when calling BatchUpdateStandardsControlAssociations. This parameter also provides details about why the request was unprocessed.
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_id: Option<StandardsControlAssociationId>
An array with one or more objects that includes a security control (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) and the Amazon Resource Name (ARN) of a standard. This parameter shows the specific controls for which the enablement status couldn't be retrieved in specified standards when calling BatchUpdateStandardsControlAssociations.
error_code: Option<UnprocessedErrorCode>
The error code for the unprocessed standard and control association.
error_reason: Option<String>
The reason why the standard and control association was unprocessed.
Implementations§
source§impl UnprocessedStandardsControlAssociation
impl UnprocessedStandardsControlAssociation
sourcepub fn standards_control_association_id(
&self
) -> Option<&StandardsControlAssociationId>
pub fn standards_control_association_id( &self ) -> Option<&StandardsControlAssociationId>
An array with one or more objects that includes a security control (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) and the Amazon Resource Name (ARN) of a standard. This parameter shows the specific controls for which the enablement status couldn't be retrieved in specified standards when calling BatchUpdateStandardsControlAssociations.
sourcepub fn error_code(&self) -> Option<&UnprocessedErrorCode>
pub fn error_code(&self) -> Option<&UnprocessedErrorCode>
The error code for the unprocessed standard and control association.
sourcepub fn error_reason(&self) -> Option<&str>
pub fn error_reason(&self) -> Option<&str>
The reason why the standard and control association was unprocessed.
source§impl UnprocessedStandardsControlAssociation
impl UnprocessedStandardsControlAssociation
sourcepub fn builder() -> UnprocessedStandardsControlAssociationBuilder
pub fn builder() -> UnprocessedStandardsControlAssociationBuilder
Creates a new builder-style object to manufacture UnprocessedStandardsControlAssociation
.
Trait Implementations§
source§impl Clone for UnprocessedStandardsControlAssociation
impl Clone for UnprocessedStandardsControlAssociation
source§fn clone(&self) -> UnprocessedStandardsControlAssociation
fn clone(&self) -> UnprocessedStandardsControlAssociation
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UnprocessedStandardsControlAssociation
impl PartialEq for UnprocessedStandardsControlAssociation
source§fn eq(&self, other: &UnprocessedStandardsControlAssociation) -> bool
fn eq(&self, other: &UnprocessedStandardsControlAssociation) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UnprocessedStandardsControlAssociation
Auto Trait Implementations§
impl Freeze for UnprocessedStandardsControlAssociation
impl RefUnwindSafe for UnprocessedStandardsControlAssociation
impl Send for UnprocessedStandardsControlAssociation
impl Sync for UnprocessedStandardsControlAssociation
impl Unpin for UnprocessedStandardsControlAssociation
impl UnwindSafe for UnprocessedStandardsControlAssociation
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