Struct aws_sdk_securityhub::operation::batch_get_standards_control_associations::builders::BatchGetStandardsControlAssociationsOutputBuilder
source · #[non_exhaustive]pub struct BatchGetStandardsControlAssociationsOutputBuilder { /* private fields */ }Expand description
A builder for BatchGetStandardsControlAssociationsOutput.
Implementations§
source§impl BatchGetStandardsControlAssociationsOutputBuilder
impl BatchGetStandardsControlAssociationsOutputBuilder
sourcepub fn standards_control_association_details(
self,
input: StandardsControlAssociationDetail,
) -> Self
pub fn standards_control_association_details( self, input: StandardsControlAssociationDetail, ) -> Self
Appends an item to standards_control_association_details.
To override the contents of this collection use set_standards_control_association_details.
Provides the enablement status of a security control in a specified standard and other details for the control in relation to the specified standard.
sourcepub fn set_standards_control_association_details(
self,
input: Option<Vec<StandardsControlAssociationDetail>>,
) -> Self
pub fn set_standards_control_association_details( self, input: Option<Vec<StandardsControlAssociationDetail>>, ) -> Self
Provides the enablement status of a security control in a specified standard and other details for the control in relation to the specified standard.
sourcepub fn get_standards_control_association_details(
&self,
) -> &Option<Vec<StandardsControlAssociationDetail>>
pub fn get_standards_control_association_details( &self, ) -> &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.
sourcepub fn unprocessed_associations(
self,
input: UnprocessedStandardsControlAssociation,
) -> Self
pub fn unprocessed_associations( self, input: UnprocessedStandardsControlAssociation, ) -> Self
Appends an item to unprocessed_associations.
To override the contents of this collection use set_unprocessed_associations.
A security control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) whose enablement status in a specified standard cannot be returned.
sourcepub fn set_unprocessed_associations(
self,
input: Option<Vec<UnprocessedStandardsControlAssociation>>,
) -> Self
pub fn set_unprocessed_associations( self, input: Option<Vec<UnprocessedStandardsControlAssociation>>, ) -> Self
A security control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) whose enablement status in a specified standard cannot be returned.
sourcepub fn get_unprocessed_associations(
&self,
) -> &Option<Vec<UnprocessedStandardsControlAssociation>>
pub fn get_unprocessed_associations( &self, ) -> &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.
sourcepub fn build(self) -> BatchGetStandardsControlAssociationsOutput
pub fn build(self) -> BatchGetStandardsControlAssociationsOutput
Consumes the builder and constructs a BatchGetStandardsControlAssociationsOutput.
Trait Implementations§
source§impl Clone for BatchGetStandardsControlAssociationsOutputBuilder
impl Clone for BatchGetStandardsControlAssociationsOutputBuilder
source§fn clone(&self) -> BatchGetStandardsControlAssociationsOutputBuilder
fn clone(&self) -> BatchGetStandardsControlAssociationsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for BatchGetStandardsControlAssociationsOutputBuilder
impl Default for BatchGetStandardsControlAssociationsOutputBuilder
source§fn default() -> BatchGetStandardsControlAssociationsOutputBuilder
fn default() -> BatchGetStandardsControlAssociationsOutputBuilder
source§impl PartialEq for BatchGetStandardsControlAssociationsOutputBuilder
impl PartialEq for BatchGetStandardsControlAssociationsOutputBuilder
source§fn eq(&self, other: &BatchGetStandardsControlAssociationsOutputBuilder) -> bool
fn eq(&self, other: &BatchGetStandardsControlAssociationsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchGetStandardsControlAssociationsOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetStandardsControlAssociationsOutputBuilder
impl RefUnwindSafe for BatchGetStandardsControlAssociationsOutputBuilder
impl Send for BatchGetStandardsControlAssociationsOutputBuilder
impl Sync for BatchGetStandardsControlAssociationsOutputBuilder
impl Unpin for BatchGetStandardsControlAssociationsOutputBuilder
impl UnwindSafe for BatchGetStandardsControlAssociationsOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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