Interface FeatureTransformation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FeatureTransformation.Builder,FeatureTransformation>,SdkBuilder<FeatureTransformation.Builder,FeatureTransformation>,SdkPojo
- Enclosing class:
- FeatureTransformation
public static interface FeatureTransformation.Builder extends SdkPojo, CopyableBuilder<FeatureTransformation.Builder,FeatureTransformation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FeatureTransformation.BuildercreationDateTime(Instant creationDateTime)The creation date and time (in Unix time) of the feature transformation.FeatureTransformation.BuilderdefaultParameters(Map<String,String> defaultParameters)Provides the default parameters for feature transformation.FeatureTransformation.BuilderfeatureTransformationArn(String featureTransformationArn)The Amazon Resource Name (ARN) of the FeatureTransformation object.FeatureTransformation.BuilderlastUpdatedDateTime(Instant lastUpdatedDateTime)The last update date and time (in Unix time) of the feature transformation.FeatureTransformation.Buildername(String name)The name of the feature transformation.FeatureTransformation.Builderstatus(String status)The status of the feature transformation.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
FeatureTransformation.Builder name(String name)
The name of the feature transformation.
- Parameters:
name- The name of the feature transformation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureTransformationArn
FeatureTransformation.Builder featureTransformationArn(String featureTransformationArn)
The Amazon Resource Name (ARN) of the FeatureTransformation object.
- Parameters:
featureTransformationArn- The Amazon Resource Name (ARN) of the FeatureTransformation object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultParameters
FeatureTransformation.Builder defaultParameters(Map<String,String> defaultParameters)
Provides the default parameters for feature transformation.
- Parameters:
defaultParameters- Provides the default parameters for feature transformation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationDateTime
FeatureTransformation.Builder creationDateTime(Instant creationDateTime)
The creation date and time (in Unix time) of the feature transformation.
- Parameters:
creationDateTime- The creation date and time (in Unix time) of the feature transformation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedDateTime
FeatureTransformation.Builder lastUpdatedDateTime(Instant lastUpdatedDateTime)
The last update date and time (in Unix time) of the feature transformation.
- Parameters:
lastUpdatedDateTime- The last update date and time (in Unix time) of the feature transformation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
FeatureTransformation.Builder status(String status)
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
- Parameters:
status- 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
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-