Struct aws_sdk_personalize::model::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
The Amazon Resource Name (ARN) of the FeatureTransformation object.
Provides the default parameters for feature transformation.
The creation date and time (in Unix time) of the feature transformation.
The last update date and time (in Unix time) of the feature transformation.
Creates a new builder-style object to manufacture FeatureTransformation
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for FeatureTransformation
impl Send for FeatureTransformation
impl Sync for FeatureTransformation
impl Unpin for FeatureTransformation
impl UnwindSafe for FeatureTransformation
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more