Interface Featurization.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Featurization.Builder,Featurization>,SdkBuilder<Featurization.Builder,Featurization>,SdkPojo
- Enclosing class:
- Featurization
public static interface Featurization.Builder extends SdkPojo, CopyableBuilder<Featurization.Builder,Featurization>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Featurization.BuilderattributeName(String attributeName)The name of the schema attribute that specifies the data field to be featurized.Featurization.BuilderfeaturizationPipeline(Collection<FeaturizationMethod> featurizationPipeline)An array of oneFeaturizationMethodobject that specifies the feature transformation method.Featurization.BuilderfeaturizationPipeline(Consumer<FeaturizationMethod.Builder>... featurizationPipeline)An array of oneFeaturizationMethodobject that specifies the feature transformation method.Featurization.BuilderfeaturizationPipeline(FeaturizationMethod... featurizationPipeline)An array of oneFeaturizationMethodobject that specifies the feature transformation method.-
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
-
attributeName
Featurization.Builder attributeName(String attributeName)
The name of the schema attribute that specifies the data field to be featurized. Amazon Forecast supports the target field of the
TARGET_TIME_SERIESand theRELATED_TIME_SERIESdatasets. For example, for theRETAILdomain, the target isdemand, and for theCUSTOMdomain, the target istarget_value. For more information, see howitworks-missing-values.- Parameters:
attributeName- The name of the schema attribute that specifies the data field to be featurized. Amazon Forecast supports the target field of theTARGET_TIME_SERIESand theRELATED_TIME_SERIESdatasets. For example, for theRETAILdomain, the target isdemand, and for theCUSTOMdomain, the target istarget_value. For more information, see howitworks-missing-values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featurizationPipeline
Featurization.Builder featurizationPipeline(Collection<FeaturizationMethod> featurizationPipeline)
An array of one
FeaturizationMethodobject that specifies the feature transformation method.- Parameters:
featurizationPipeline- An array of oneFeaturizationMethodobject that specifies the feature transformation method.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featurizationPipeline
Featurization.Builder featurizationPipeline(FeaturizationMethod... featurizationPipeline)
An array of one
FeaturizationMethodobject that specifies the feature transformation method.- Parameters:
featurizationPipeline- An array of oneFeaturizationMethodobject that specifies the feature transformation method.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featurizationPipeline
Featurization.Builder featurizationPipeline(Consumer<FeaturizationMethod.Builder>... featurizationPipeline)
An array of one
This is a convenience method that creates an instance of theFeaturizationMethodobject that specifies the feature transformation method.FeaturizationMethod.Builderavoiding the need to create one manually viaFeaturizationMethod.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#featurizationPipeline(List.) - Parameters:
featurizationPipeline- a consumer that will call methods onFeaturizationMethod.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#featurizationPipeline(java.util.Collection)
-
-