Struct aws_sdk_auditmanager::operation::update_assessment_control::UpdateAssessmentControlInput
source · #[non_exhaustive]pub struct UpdateAssessmentControlInput {
pub assessment_id: Option<String>,
pub control_set_id: Option<String>,
pub control_id: Option<String>,
pub control_status: Option<ControlStatus>,
pub comment_body: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.assessment_id: Option<String>The unique identifier for the assessment.
control_set_id: Option<String>The unique identifier for the control set.
control_id: Option<String>The unique identifier for the control.
control_status: Option<ControlStatus>The status of the control.
comment_body: Option<String>The comment body text for the control.
Implementations§
source§impl UpdateAssessmentControlInput
impl UpdateAssessmentControlInput
sourcepub fn assessment_id(&self) -> Option<&str>
pub fn assessment_id(&self) -> Option<&str>
The unique identifier for the assessment.
sourcepub fn control_set_id(&self) -> Option<&str>
pub fn control_set_id(&self) -> Option<&str>
The unique identifier for the control set.
sourcepub fn control_id(&self) -> Option<&str>
pub fn control_id(&self) -> Option<&str>
The unique identifier for the control.
sourcepub fn control_status(&self) -> Option<&ControlStatus>
pub fn control_status(&self) -> Option<&ControlStatus>
The status of the control.
sourcepub fn comment_body(&self) -> Option<&str>
pub fn comment_body(&self) -> Option<&str>
The comment body text for the control.
source§impl UpdateAssessmentControlInput
impl UpdateAssessmentControlInput
sourcepub fn builder() -> UpdateAssessmentControlInputBuilder
pub fn builder() -> UpdateAssessmentControlInputBuilder
Creates a new builder-style object to manufacture UpdateAssessmentControlInput.
Trait Implementations§
source§impl Clone for UpdateAssessmentControlInput
impl Clone for UpdateAssessmentControlInput
source§fn clone(&self) -> UpdateAssessmentControlInput
fn clone(&self) -> UpdateAssessmentControlInput
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 Debug for UpdateAssessmentControlInput
impl Debug for UpdateAssessmentControlInput
source§impl PartialEq for UpdateAssessmentControlInput
impl PartialEq for UpdateAssessmentControlInput
source§fn eq(&self, other: &UpdateAssessmentControlInput) -> bool
fn eq(&self, other: &UpdateAssessmentControlInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateAssessmentControlInput
Auto Trait Implementations§
impl Freeze for UpdateAssessmentControlInput
impl RefUnwindSafe for UpdateAssessmentControlInput
impl Send for UpdateAssessmentControlInput
impl Sync for UpdateAssessmentControlInput
impl Unpin for UpdateAssessmentControlInput
impl UnwindSafe for UpdateAssessmentControlInput
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.