Class: Aws::Personalize::Types::FeatureTransformation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::FeatureTransformation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Provides feature transformation information. Feature transformation is the process of modifying raw input data into a form more suitable for model training.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date_time ⇒ Time
The creation date and time (in Unix time) of the feature transformation.
-
#default_parameters ⇒ Hash<String,String>
Provides the default parameters for feature transformation.
-
#feature_transformation_arn ⇒ String
The Amazon Resource Name (ARN) of the FeatureTransformation object.
-
#last_updated_date_time ⇒ Time
The last update date and time (in Unix time) of the feature transformation.
-
#name ⇒ String
The name of the feature transformation.
-
#status ⇒ String
The status of the feature transformation.
Instance Attribute Details
#creation_date_time ⇒ Time
The creation date and time (in Unix time) of the feature transformation.
3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 |
# File 'lib/aws-sdk-personalize/types.rb', line 3532 class FeatureTransformation < Struct.new( :name, :feature_transformation_arn, :default_parameters, :creation_date_time, :last_updated_date_time, :status) SENSITIVE = [] include Aws::Structure end |
#default_parameters ⇒ Hash<String,String>
Provides the default parameters for feature transformation.
3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 |
# File 'lib/aws-sdk-personalize/types.rb', line 3532 class FeatureTransformation < Struct.new( :name, :feature_transformation_arn, :default_parameters, :creation_date_time, :last_updated_date_time, :status) SENSITIVE = [] include Aws::Structure end |
#feature_transformation_arn ⇒ String
The Amazon Resource Name (ARN) of the FeatureTransformation object.
3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 |
# File 'lib/aws-sdk-personalize/types.rb', line 3532 class FeatureTransformation < Struct.new( :name, :feature_transformation_arn, :default_parameters, :creation_date_time, :last_updated_date_time, :status) SENSITIVE = [] include Aws::Structure end |
#last_updated_date_time ⇒ Time
The last update date and time (in Unix time) of the feature transformation.
3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 |
# File 'lib/aws-sdk-personalize/types.rb', line 3532 class FeatureTransformation < Struct.new( :name, :feature_transformation_arn, :default_parameters, :creation_date_time, :last_updated_date_time, :status) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the feature transformation.
3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 |
# File 'lib/aws-sdk-personalize/types.rb', line 3532 class FeatureTransformation < Struct.new( :name, :feature_transformation_arn, :default_parameters, :creation_date_time, :last_updated_date_time, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ 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
^
3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 |
# File 'lib/aws-sdk-personalize/types.rb', line 3532 class FeatureTransformation < Struct.new( :name, :feature_transformation_arn, :default_parameters, :creation_date_time, :last_updated_date_time, :status) SENSITIVE = [] include Aws::Structure end |