Interface DescribeFeatureMetadataResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeFeatureMetadataResponse.Builder,DescribeFeatureMetadataResponse>,SageMakerResponse.Builder,SdkBuilder<DescribeFeatureMetadataResponse.Builder,DescribeFeatureMetadataResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeFeatureMetadataResponse
public static interface DescribeFeatureMetadataResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<DescribeFeatureMetadataResponse.Builder,DescribeFeatureMetadataResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeFeatureMetadataResponse.BuildercreationTime(Instant creationTime)A timestamp indicating when the feature was created.DescribeFeatureMetadataResponse.Builderdescription(String description)The description you added to describe the feature.DescribeFeatureMetadataResponse.BuilderfeatureGroupArn(String featureGroupArn)The Amazon Resource Number (ARN) of the feature group that contains the feature.DescribeFeatureMetadataResponse.BuilderfeatureGroupName(String featureGroupName)The name of the feature group that you've specified.DescribeFeatureMetadataResponse.BuilderfeatureName(String featureName)The name of the feature that you've specified.DescribeFeatureMetadataResponse.BuilderfeatureType(String featureType)The data type of the feature.DescribeFeatureMetadataResponse.BuilderfeatureType(FeatureType featureType)The data type of the feature.DescribeFeatureMetadataResponse.BuilderlastModifiedTime(Instant lastModifiedTime)A timestamp indicating when the metadata for the feature group was modified.DescribeFeatureMetadataResponse.Builderparameters(Collection<FeatureParameter> parameters)The key-value pairs that you added to describe the feature.DescribeFeatureMetadataResponse.Builderparameters(Consumer<FeatureParameter.Builder>... parameters)The key-value pairs that you added to describe the feature.DescribeFeatureMetadataResponse.Builderparameters(FeatureParameter... parameters)The key-value pairs that you added to describe the feature.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
featureGroupArn
DescribeFeatureMetadataResponse.Builder featureGroupArn(String featureGroupArn)
The Amazon Resource Number (ARN) of the feature group that contains the feature.
- Parameters:
featureGroupArn- The Amazon Resource Number (ARN) of the feature group that contains the feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureGroupName
DescribeFeatureMetadataResponse.Builder featureGroupName(String featureGroupName)
The name of the feature group that you've specified.
- Parameters:
featureGroupName- The name of the feature group that you've specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureName
DescribeFeatureMetadataResponse.Builder featureName(String featureName)
The name of the feature that you've specified.
- Parameters:
featureName- The name of the feature that you've specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureType
DescribeFeatureMetadataResponse.Builder featureType(String 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,FeatureType
-
featureType
DescribeFeatureMetadataResponse.Builder featureType(FeatureType 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,FeatureType
-
creationTime
DescribeFeatureMetadataResponse.Builder creationTime(Instant 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
DescribeFeatureMetadataResponse.Builder lastModifiedTime(Instant lastModifiedTime)
A timestamp indicating when the metadata for the feature group was modified. For example, if you add a parameter describing the feature, the timestamp changes to reflect the last time you
- Parameters:
lastModifiedTime- A timestamp indicating when the metadata for the feature group was modified. For example, if you add a parameter describing the feature, the timestamp changes to reflect the last time you- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
DescribeFeatureMetadataResponse.Builder description(String description)
The description you added to describe the feature.
- Parameters:
description- The description you added to describe the feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
DescribeFeatureMetadataResponse.Builder parameters(Collection<FeatureParameter> parameters)
The key-value pairs that you added to describe the feature.
- Parameters:
parameters- The key-value pairs that you added to describe the feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
DescribeFeatureMetadataResponse.Builder parameters(FeatureParameter... parameters)
The key-value pairs that you added to describe the feature.
- Parameters:
parameters- The key-value pairs that you added to describe the feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
DescribeFeatureMetadataResponse.Builder parameters(Consumer<FeatureParameter.Builder>... parameters)
The key-value pairs that you added to describe the feature.
This is a convenience method that creates an instance of theFeatureParameter.Builderavoiding the need to create one manually viaFeatureParameter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#parameters(List.) - 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:
#parameters(java.util.Collection)
-
-