Interface GetRecordResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetRecordResponse.Builder,GetRecordResponse>,SageMakerFeatureStoreRuntimeResponse.Builder,SdkBuilder<GetRecordResponse.Builder,GetRecordResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetRecordResponse
public static interface GetRecordResponse.Builder extends SageMakerFeatureStoreRuntimeResponse.Builder, SdkPojo, CopyableBuilder<GetRecordResponse.Builder,GetRecordResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetRecordResponse.BuilderexpiresAt(String expiresAt)TheExpiresAtISO string of the requested record.GetRecordResponse.Builderrecord(Collection<FeatureValue> record)The record you requested.GetRecordResponse.Builderrecord(Consumer<FeatureValue.Builder>... record)The record you requested.GetRecordResponse.Builderrecord(FeatureValue... record)The record you requested.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemakerfeaturestoreruntime.model.SageMakerFeatureStoreRuntimeResponse.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
-
record
GetRecordResponse.Builder record(Collection<FeatureValue> record)
The record you requested. A list of
FeatureValues.- Parameters:
record- The record you requested. A list ofFeatureValues.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
record
GetRecordResponse.Builder record(FeatureValue... record)
The record you requested. A list of
FeatureValues.- Parameters:
record- The record you requested. A list ofFeatureValues.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
record
GetRecordResponse.Builder record(Consumer<FeatureValue.Builder>... record)
The record you requested. A list of
This is a convenience method that creates an instance of theFeatureValues.FeatureValue.Builderavoiding the need to create one manually viaFeatureValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#record(List.) - Parameters:
record- a consumer that will call methods onFeatureValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#record(java.util.Collection)
-
expiresAt
GetRecordResponse.Builder expiresAt(String expiresAt)
The
ExpiresAtISO string of the requested record.- Parameters:
expiresAt- TheExpiresAtISO string of the requested record.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-