#[non_exhaustive]pub struct FlywheelIterationProperties {
pub flywheel_arn: Option<String>,
pub flywheel_iteration_id: Option<String>,
pub creation_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub status: Option<FlywheelIterationStatus>,
pub message: Option<String>,
pub evaluated_model_arn: Option<String>,
pub evaluated_model_metrics: Option<FlywheelModelEvaluationMetrics>,
pub trained_model_arn: Option<String>,
pub trained_model_metrics: Option<FlywheelModelEvaluationMetrics>,
pub evaluation_manifest_s3_prefix: Option<String>,
}Expand description
The configuration properties of a flywheel iteration.
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.flywheel_arn: Option<String>flywheel_iteration_id: Option<String>creation_time: Option<DateTime>The creation start time of the flywheel iteration.
end_time: Option<DateTime>The completion time of this flywheel iteration.
status: Option<FlywheelIterationStatus>The status of the flywheel iteration.
message: Option<String>A description of the status of the flywheel iteration.
evaluated_model_arn: Option<String>The ARN of the evaluated model associated with this flywheel iteration.
evaluated_model_metrics: Option<FlywheelModelEvaluationMetrics>The evaluation metrics associated with the evaluated model.
trained_model_arn: Option<String>The ARN of the trained model associated with this flywheel iteration.
trained_model_metrics: Option<FlywheelModelEvaluationMetrics>The metrics associated with the trained model.
evaluation_manifest_s3_prefix: Option<String>Implementations§
source§impl FlywheelIterationProperties
impl FlywheelIterationProperties
sourcepub fn flywheel_arn(&self) -> Option<&str>
pub fn flywheel_arn(&self) -> Option<&str>
sourcepub fn flywheel_iteration_id(&self) -> Option<&str>
pub fn flywheel_iteration_id(&self) -> Option<&str>
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The creation start time of the flywheel iteration.
sourcepub fn status(&self) -> Option<&FlywheelIterationStatus>
pub fn status(&self) -> Option<&FlywheelIterationStatus>
The status of the flywheel iteration.
sourcepub fn evaluated_model_arn(&self) -> Option<&str>
pub fn evaluated_model_arn(&self) -> Option<&str>
The ARN of the evaluated model associated with this flywheel iteration.
sourcepub fn evaluated_model_metrics(&self) -> Option<&FlywheelModelEvaluationMetrics>
pub fn evaluated_model_metrics(&self) -> Option<&FlywheelModelEvaluationMetrics>
The evaluation metrics associated with the evaluated model.
sourcepub fn trained_model_arn(&self) -> Option<&str>
pub fn trained_model_arn(&self) -> Option<&str>
The ARN of the trained model associated with this flywheel iteration.
sourcepub fn trained_model_metrics(&self) -> Option<&FlywheelModelEvaluationMetrics>
pub fn trained_model_metrics(&self) -> Option<&FlywheelModelEvaluationMetrics>
The metrics associated with the trained model.
sourcepub fn evaluation_manifest_s3_prefix(&self) -> Option<&str>
pub fn evaluation_manifest_s3_prefix(&self) -> Option<&str>
source§impl FlywheelIterationProperties
impl FlywheelIterationProperties
sourcepub fn builder() -> FlywheelIterationPropertiesBuilder
pub fn builder() -> FlywheelIterationPropertiesBuilder
Creates a new builder-style object to manufacture FlywheelIterationProperties.
Trait Implementations§
source§impl Clone for FlywheelIterationProperties
impl Clone for FlywheelIterationProperties
source§fn clone(&self) -> FlywheelIterationProperties
fn clone(&self) -> FlywheelIterationProperties
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for FlywheelIterationProperties
impl Debug for FlywheelIterationProperties
source§impl PartialEq for FlywheelIterationProperties
impl PartialEq for FlywheelIterationProperties
source§fn eq(&self, other: &FlywheelIterationProperties) -> bool
fn eq(&self, other: &FlywheelIterationProperties) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FlywheelIterationProperties
Auto Trait Implementations§
impl Freeze for FlywheelIterationProperties
impl RefUnwindSafe for FlywheelIterationProperties
impl Send for FlywheelIterationProperties
impl Sync for FlywheelIterationProperties
impl Unpin for FlywheelIterationProperties
impl UnwindSafe for FlywheelIterationProperties
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