Interface FeatureMetadata.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<FeatureMetadata.Builder,
,FeatureMetadata> SdkBuilder<FeatureMetadata.Builder,
,FeatureMetadata> SdkPojo
- Enclosing class:
FeatureMetadata
-
Method Summary
Modifier and TypeMethodDescriptioncreationTime
(Instant creationTime) A timestamp indicating when the feature was created.description
(String description) An optional description that you specify to better describe the feature.featureGroupArn
(String featureGroupArn) The Amazon Resource Number (ARN) of the feature group.featureGroupName
(String featureGroupName) The name of the feature group containing the feature.featureName
(String featureName) The name of feature.featureType
(String featureType) The data type of the feature.featureType
(FeatureType featureType) The data type of the feature.lastModifiedTime
(Instant lastModifiedTime) A timestamp indicating when the feature was last modified.parameters
(Collection<FeatureParameter> parameters) Optional key-value pairs that you specify to better describe the feature.parameters
(Consumer<FeatureParameter.Builder>... parameters) Optional key-value pairs that you specify to better describe the feature.parameters
(FeatureParameter... parameters) Optional key-value pairs that you specify to better describe the feature.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, sdkFields
-
Method Details
-
featureGroupArn
The Amazon Resource Number (ARN) of the feature group.
- Parameters:
featureGroupArn
- The Amazon Resource Number (ARN) of the feature group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureGroupName
The name of the feature group containing the feature.
- Parameters:
featureGroupName
- The name of the feature group containing the feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureName
The name of feature.
- Parameters:
featureName
- The name of feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureType
The data type of the feature.
- Parameters:
featureType
- The data type of the feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
featureType
The data type of the feature.
- Parameters:
featureType
- The data type of the feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
creationTime
A timestamp indicating when the feature was created.
- Parameters:
creationTime
- A timestamp indicating when the feature was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
A timestamp indicating when the feature was last modified.
- Parameters:
lastModifiedTime
- A timestamp indicating when the feature was last modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
An optional description that you specify to better describe the feature.
- Parameters:
description
- An optional description that you specify to better describe the feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
Optional key-value pairs that you specify to better describe the feature.
- Parameters:
parameters
- Optional key-value pairs that you specify to better describe the feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
Optional key-value pairs that you specify to better describe the feature.
- Parameters:
parameters
- Optional key-value pairs that you specify to better describe the feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
Optional key-value pairs that you specify to better describe the feature.
This is a convenience method that creates an instance of theFeatureParameter.Builder
avoiding the need to create one manually viaFeatureParameter.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toparameters(List<FeatureParameter>)
.- Parameters:
parameters
- a consumer that will call methods onFeatureParameter.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-