#[non_exhaustive]pub struct StandardsControlAssociationUpdateBuilder { /* private fields */ }
Expand description
A builder for StandardsControlAssociationUpdate
.
Implementations§
source§impl StandardsControlAssociationUpdateBuilder
impl StandardsControlAssociationUpdateBuilder
sourcepub fn standards_arn(self, input: impl Into<String>) -> Self
pub fn standards_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the standard in which you want to update the control's enablement status.
This field is required.sourcepub fn set_standards_arn(self, input: Option<String>) -> Self
pub fn set_standards_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the standard in which you want to update the control's enablement status.
sourcepub fn get_standards_arn(&self) -> &Option<String>
pub fn get_standards_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the standard in which you want to update the control's enablement status.
sourcepub fn security_control_id(self, input: impl Into<String>) -> Self
pub fn security_control_id(self, input: impl Into<String>) -> Self
The unique identifier for the security control whose enablement status you want to update.
This field is required.sourcepub fn set_security_control_id(self, input: Option<String>) -> Self
pub fn set_security_control_id(self, input: Option<String>) -> Self
The unique identifier for the security control whose enablement status you want to update.
sourcepub fn get_security_control_id(&self) -> &Option<String>
pub fn get_security_control_id(&self) -> &Option<String>
The unique identifier for the security control whose enablement status you want to update.
sourcepub fn association_status(self, input: AssociationStatus) -> Self
pub fn association_status(self, input: AssociationStatus) -> Self
The desired enablement status of the control in the standard.
This field is required.sourcepub fn set_association_status(self, input: Option<AssociationStatus>) -> Self
pub fn set_association_status(self, input: Option<AssociationStatus>) -> Self
The desired enablement status of the control in the standard.
sourcepub fn get_association_status(&self) -> &Option<AssociationStatus>
pub fn get_association_status(&self) -> &Option<AssociationStatus>
The desired enablement status of the control in the standard.
sourcepub fn updated_reason(self, input: impl Into<String>) -> Self
pub fn updated_reason(self, input: impl Into<String>) -> Self
The reason for updating the control's enablement status in the standard.
sourcepub fn set_updated_reason(self, input: Option<String>) -> Self
pub fn set_updated_reason(self, input: Option<String>) -> Self
The reason for updating the control's enablement status in the standard.
sourcepub fn get_updated_reason(&self) -> &Option<String>
pub fn get_updated_reason(&self) -> &Option<String>
The reason for updating the control's enablement status in the standard.
sourcepub fn build(self) -> StandardsControlAssociationUpdate
pub fn build(self) -> StandardsControlAssociationUpdate
Consumes the builder and constructs a StandardsControlAssociationUpdate
.
Trait Implementations§
source§impl Clone for StandardsControlAssociationUpdateBuilder
impl Clone for StandardsControlAssociationUpdateBuilder
source§fn clone(&self) -> StandardsControlAssociationUpdateBuilder
fn clone(&self) -> StandardsControlAssociationUpdateBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for StandardsControlAssociationUpdateBuilder
impl Default for StandardsControlAssociationUpdateBuilder
source§fn default() -> StandardsControlAssociationUpdateBuilder
fn default() -> StandardsControlAssociationUpdateBuilder
source§impl PartialEq for StandardsControlAssociationUpdateBuilder
impl PartialEq for StandardsControlAssociationUpdateBuilder
source§fn eq(&self, other: &StandardsControlAssociationUpdateBuilder) -> bool
fn eq(&self, other: &StandardsControlAssociationUpdateBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StandardsControlAssociationUpdateBuilder
Auto Trait Implementations§
impl Freeze for StandardsControlAssociationUpdateBuilder
impl RefUnwindSafe for StandardsControlAssociationUpdateBuilder
impl Send for StandardsControlAssociationUpdateBuilder
impl Sync for StandardsControlAssociationUpdateBuilder
impl Unpin for StandardsControlAssociationUpdateBuilder
impl UnwindSafe for StandardsControlAssociationUpdateBuilder
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