#[non_exhaustive]pub struct EvaluationFormVersionSummary {
pub evaluation_form_arn: String,
pub evaluation_form_id: String,
pub evaluation_form_version: i32,
pub locked: bool,
pub status: EvaluationFormVersionStatus,
pub created_time: DateTime,
pub created_by: String,
pub last_modified_time: DateTime,
pub last_modified_by: String,
}
Expand description
Summary information about an evaluation form.
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.evaluation_form_arn: String
The Amazon Resource Name (ARN) for the evaluation form resource.
evaluation_form_id: String
The unique identifier for the evaluation form.
evaluation_form_version: i32
A version of the evaluation form.
locked: bool
The flag indicating whether the evaluation form is locked for changes.
status: EvaluationFormVersionStatus
The status of the evaluation form.
created_time: DateTime
The timestamp for when the evaluation form was created.
created_by: String
The Amazon Resource Name (ARN) of the user who created the evaluation form.
last_modified_time: DateTime
The timestamp for when the evaluation form was last updated.
last_modified_by: String
The Amazon Resource Name (ARN) of the user who last updated the evaluation form.
Implementations§
source§impl EvaluationFormVersionSummary
impl EvaluationFormVersionSummary
sourcepub fn evaluation_form_arn(&self) -> &str
pub fn evaluation_form_arn(&self) -> &str
The Amazon Resource Name (ARN) for the evaluation form resource.
sourcepub fn evaluation_form_id(&self) -> &str
pub fn evaluation_form_id(&self) -> &str
The unique identifier for the evaluation form.
sourcepub fn evaluation_form_version(&self) -> i32
pub fn evaluation_form_version(&self) -> i32
A version of the evaluation form.
sourcepub fn locked(&self) -> bool
pub fn locked(&self) -> bool
The flag indicating whether the evaluation form is locked for changes.
sourcepub fn status(&self) -> &EvaluationFormVersionStatus
pub fn status(&self) -> &EvaluationFormVersionStatus
The status of the evaluation form.
sourcepub fn created_time(&self) -> &DateTime
pub fn created_time(&self) -> &DateTime
The timestamp for when the evaluation form was created.
sourcepub fn created_by(&self) -> &str
pub fn created_by(&self) -> &str
The Amazon Resource Name (ARN) of the user who created the evaluation form.
sourcepub fn last_modified_time(&self) -> &DateTime
pub fn last_modified_time(&self) -> &DateTime
The timestamp for when the evaluation form was last updated.
sourcepub fn last_modified_by(&self) -> &str
pub fn last_modified_by(&self) -> &str
The Amazon Resource Name (ARN) of the user who last updated the evaluation form.
source§impl EvaluationFormVersionSummary
impl EvaluationFormVersionSummary
sourcepub fn builder() -> EvaluationFormVersionSummaryBuilder
pub fn builder() -> EvaluationFormVersionSummaryBuilder
Creates a new builder-style object to manufacture EvaluationFormVersionSummary
.
Trait Implementations§
source§impl Clone for EvaluationFormVersionSummary
impl Clone for EvaluationFormVersionSummary
source§fn clone(&self) -> EvaluationFormVersionSummary
fn clone(&self) -> EvaluationFormVersionSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EvaluationFormVersionSummary
impl Debug for EvaluationFormVersionSummary
source§impl PartialEq for EvaluationFormVersionSummary
impl PartialEq for EvaluationFormVersionSummary
source§fn eq(&self, other: &EvaluationFormVersionSummary) -> bool
fn eq(&self, other: &EvaluationFormVersionSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EvaluationFormVersionSummary
Auto Trait Implementations§
impl Freeze for EvaluationFormVersionSummary
impl RefUnwindSafe for EvaluationFormVersionSummary
impl Send for EvaluationFormVersionSummary
impl Sync for EvaluationFormVersionSummary
impl Unpin for EvaluationFormVersionSummary
impl UnwindSafe for EvaluationFormVersionSummary
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