/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.personalize.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Provides feature transformation information. Feature transformation is the process of modifying raw input data into a * form more suitable for model training. *
* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class FeatureTransformation implements Serializable, Cloneable, StructuredPojo { /** ** The name of the feature transformation. *
*/ private String name; /** ** The Amazon Resource Name (ARN) of the FeatureTransformation object. *
*/ private String featureTransformationArn; /** ** Provides the default parameters for feature transformation. *
*/ private java.util.Map* The creation date and time (in Unix time) of the feature transformation. *
*/ private java.util.Date creationDateTime; /** ** The last update date and time (in Unix time) of the feature transformation. *
*/ private java.util.Date lastUpdatedDateTime; /** ** 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 *
** The name of the feature transformation. *
* * @param name * The name of the feature transformation. */ public void setName(String name) { this.name = name; } /** ** The name of the feature transformation. *
* * @return The name of the feature transformation. */ public String getName() { return this.name; } /** ** The name of the feature transformation. *
* * @param name * The name of the feature transformation. * @return Returns a reference to this object so that method calls can be chained together. */ public FeatureTransformation withName(String name) { setName(name); return this; } /** ** The Amazon Resource Name (ARN) of the FeatureTransformation object. *
* * @param featureTransformationArn * The Amazon Resource Name (ARN) of the FeatureTransformation object. */ public void setFeatureTransformationArn(String featureTransformationArn) { this.featureTransformationArn = featureTransformationArn; } /** ** The Amazon Resource Name (ARN) of the FeatureTransformation object. *
* * @return The Amazon Resource Name (ARN) of the FeatureTransformation object. */ public String getFeatureTransformationArn() { return this.featureTransformationArn; } /** ** The Amazon Resource Name (ARN) of the FeatureTransformation object. *
* * @param featureTransformationArn * The Amazon Resource Name (ARN) of the FeatureTransformation object. * @return Returns a reference to this object so that method calls can be chained together. */ public FeatureTransformation withFeatureTransformationArn(String featureTransformationArn) { setFeatureTransformationArn(featureTransformationArn); return this; } /** ** Provides the default parameters for feature transformation. *
* * @return Provides the default parameters for feature transformation. */ public java.util.Map* Provides the default parameters for feature transformation. *
* * @param defaultParameters * Provides the default parameters for feature transformation. */ public void setDefaultParameters(java.util.Map* Provides the default parameters for feature transformation. *
* * @param defaultParameters * Provides the default parameters for feature transformation. * @return Returns a reference to this object so that method calls can be chained together. */ public FeatureTransformation withDefaultParameters(java.util.Map* The creation date and time (in Unix time) of the feature transformation. *
* * @param creationDateTime * The creation date and time (in Unix time) of the feature transformation. */ public void setCreationDateTime(java.util.Date creationDateTime) { this.creationDateTime = creationDateTime; } /** ** The creation date and time (in Unix time) of the feature transformation. *
* * @return The creation date and time (in Unix time) of the feature transformation. */ public java.util.Date getCreationDateTime() { return this.creationDateTime; } /** ** The creation date and time (in Unix time) of the feature transformation. *
* * @param creationDateTime * The creation date and time (in Unix time) of the feature transformation. * @return Returns a reference to this object so that method calls can be chained together. */ public FeatureTransformation withCreationDateTime(java.util.Date creationDateTime) { setCreationDateTime(creationDateTime); return this; } /** ** The last update date and time (in Unix time) of the feature transformation. *
* * @param lastUpdatedDateTime * The last update date and time (in Unix time) of the feature transformation. */ public void setLastUpdatedDateTime(java.util.Date lastUpdatedDateTime) { this.lastUpdatedDateTime = lastUpdatedDateTime; } /** ** The last update date and time (in Unix time) of the feature transformation. *
* * @return The last update date and time (in Unix time) of the feature transformation. */ public java.util.Date getLastUpdatedDateTime() { return this.lastUpdatedDateTime; } /** ** The last update date and time (in Unix time) of the feature transformation. *
* * @param lastUpdatedDateTime * The last update date and time (in Unix time) of the feature transformation. * @return Returns a reference to this object so that method calls can be chained together. */ public FeatureTransformation withLastUpdatedDateTime(java.util.Date lastUpdatedDateTime) { setLastUpdatedDateTime(lastUpdatedDateTime); return this; } /** ** 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 *
** A feature transformation can be in one of the following states: *
** CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED *
** 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 *
** A feature transformation can be in one of the following states: *
** CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED *
** 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 *
** A feature transformation can be in one of the following states: *
** CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED *
*