Struct aws_sdk_personalize::types::FeatureTransformation
source · #[non_exhaustive]pub struct FeatureTransformation {
pub name: Option<String>,
pub feature_transformation_arn: Option<String>,
pub default_parameters: Option<HashMap<String, String>>,
pub creation_date_time: Option<DateTime>,
pub last_updated_date_time: Option<DateTime>,
pub status: Option<String>,
}
Expand description
Provides feature transformation information. Feature transformation is the process of modifying raw input data into a form more suitable for model training.
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.name: Option<String>
The name of the feature transformation.
feature_transformation_arn: Option<String>
The Amazon Resource Name (ARN) of the FeatureTransformation object.
default_parameters: Option<HashMap<String, String>>
Provides the default parameters for feature transformation.
creation_date_time: Option<DateTime>
The creation date and time (in Unix time) of the feature transformation.
last_updated_date_time: Option<DateTime>
The last update date and time (in Unix time) of the feature transformation.
status: Option<String>
The status of the feature transformation.
A feature transformation can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
Implementations§
source§impl FeatureTransformation
impl FeatureTransformation
sourcepub fn feature_transformation_arn(&self) -> Option<&str>
pub fn feature_transformation_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the FeatureTransformation object.
sourcepub fn default_parameters(&self) -> Option<&HashMap<String, String>>
pub fn default_parameters(&self) -> Option<&HashMap<String, String>>
Provides the default parameters for feature transformation.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The creation date and time (in Unix time) of the feature transformation.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
The last update date and time (in Unix time) of the feature transformation.
source§impl FeatureTransformation
impl FeatureTransformation
sourcepub fn builder() -> FeatureTransformationBuilder
pub fn builder() -> FeatureTransformationBuilder
Creates a new builder-style object to manufacture FeatureTransformation
.
Trait Implementations§
source§impl Clone for FeatureTransformation
impl Clone for FeatureTransformation
source§fn clone(&self) -> FeatureTransformation
fn clone(&self) -> FeatureTransformation
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FeatureTransformation
impl Debug for FeatureTransformation
source§impl PartialEq for FeatureTransformation
impl PartialEq for FeatureTransformation
source§fn eq(&self, other: &FeatureTransformation) -> bool
fn eq(&self, other: &FeatureTransformation) -> bool
self
and other
values to be equal, and is used
by ==
.