#[non_exhaustive]pub struct StandardsControlAssociationIdBuilder { /* private fields */ }
Expand description
A builder for StandardsControlAssociationId
.
Implementations§
source§impl StandardsControlAssociationIdBuilder
impl StandardsControlAssociationIdBuilder
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 (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) of a security control across standards.
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 (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) of a security control across standards.
sourcepub fn get_security_control_id(&self) -> &Option<String>
pub fn get_security_control_id(&self) -> &Option<String>
The unique identifier (identified with SecurityControlId
, SecurityControlArn
, or a mix of both parameters) of a security control across standards.
sourcepub fn standards_arn(self, input: impl Into<String>) -> Self
pub fn standards_arn(self, input: impl Into<String>) -> Self
The ARN of a standard.
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 ARN of a standard.
sourcepub fn get_standards_arn(&self) -> &Option<String>
pub fn get_standards_arn(&self) -> &Option<String>
The ARN of a standard.
sourcepub fn build(self) -> StandardsControlAssociationId
pub fn build(self) -> StandardsControlAssociationId
Consumes the builder and constructs a StandardsControlAssociationId
.
Trait Implementations§
source§impl Clone for StandardsControlAssociationIdBuilder
impl Clone for StandardsControlAssociationIdBuilder
source§fn clone(&self) -> StandardsControlAssociationIdBuilder
fn clone(&self) -> StandardsControlAssociationIdBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for StandardsControlAssociationIdBuilder
impl Default for StandardsControlAssociationIdBuilder
source§fn default() -> StandardsControlAssociationIdBuilder
fn default() -> StandardsControlAssociationIdBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for StandardsControlAssociationIdBuilder
impl PartialEq for StandardsControlAssociationIdBuilder
source§fn eq(&self, other: &StandardsControlAssociationIdBuilder) -> bool
fn eq(&self, other: &StandardsControlAssociationIdBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StandardsControlAssociationIdBuilder
Auto Trait Implementations§
impl Freeze for StandardsControlAssociationIdBuilder
impl RefUnwindSafe for StandardsControlAssociationIdBuilder
impl Send for StandardsControlAssociationIdBuilder
impl Sync for StandardsControlAssociationIdBuilder
impl Unpin for StandardsControlAssociationIdBuilder
impl UnwindSafe for StandardsControlAssociationIdBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.