Interface FeatureGroupSummary.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FeatureGroupSummary.Builder,FeatureGroupSummary>
,SdkBuilder<FeatureGroupSummary.Builder,FeatureGroupSummary>
,SdkPojo
- Enclosing class:
- FeatureGroupSummary
public static interface FeatureGroupSummary.Builder extends SdkPojo, CopyableBuilder<FeatureGroupSummary.Builder,FeatureGroupSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FeatureGroupSummary.Builder
creationTime(Instant creationTime)
A timestamp indicating the time of creation time of theFeatureGroup
.FeatureGroupSummary.Builder
featureGroupArn(String featureGroupArn)
Unique identifier for theFeatureGroup
.FeatureGroupSummary.Builder
featureGroupName(String featureGroupName)
The name ofFeatureGroup
.FeatureGroupSummary.Builder
featureGroupStatus(String featureGroupStatus)
The status of a FeatureGroup.FeatureGroupSummary.Builder
featureGroupStatus(FeatureGroupStatus featureGroupStatus)
The status of a FeatureGroup.default FeatureGroupSummary.Builder
offlineStoreStatus(Consumer<OfflineStoreStatus.Builder> offlineStoreStatus)
Notifies you if replicating data into theOfflineStore
has failed.FeatureGroupSummary.Builder
offlineStoreStatus(OfflineStoreStatus offlineStoreStatus)
Notifies you if replicating data into theOfflineStore
has failed.-
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 Detail
-
featureGroupName
FeatureGroupSummary.Builder featureGroupName(String featureGroupName)
The name of
FeatureGroup
.- Parameters:
featureGroupName
- The name ofFeatureGroup
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureGroupArn
FeatureGroupSummary.Builder featureGroupArn(String featureGroupArn)
Unique identifier for the
FeatureGroup
.- Parameters:
featureGroupArn
- Unique identifier for theFeatureGroup
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
FeatureGroupSummary.Builder creationTime(Instant creationTime)
A timestamp indicating the time of creation time of the
FeatureGroup
.- Parameters:
creationTime
- A timestamp indicating the time of creation time of theFeatureGroup
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureGroupStatus
FeatureGroupSummary.Builder featureGroupStatus(String featureGroupStatus)
The status of a FeatureGroup. The status can be any of the following:
Creating
,Created
,CreateFail
,Deleting
orDetailFail
.- Parameters:
featureGroupStatus
- The status of a FeatureGroup. The status can be any of the following:Creating
,Created
,CreateFail
,Deleting
orDetailFail
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FeatureGroupStatus
,FeatureGroupStatus
-
featureGroupStatus
FeatureGroupSummary.Builder featureGroupStatus(FeatureGroupStatus featureGroupStatus)
The status of a FeatureGroup. The status can be any of the following:
Creating
,Created
,CreateFail
,Deleting
orDetailFail
.- Parameters:
featureGroupStatus
- The status of a FeatureGroup. The status can be any of the following:Creating
,Created
,CreateFail
,Deleting
orDetailFail
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FeatureGroupStatus
,FeatureGroupStatus
-
offlineStoreStatus
FeatureGroupSummary.Builder offlineStoreStatus(OfflineStoreStatus offlineStoreStatus)
Notifies you if replicating data into the
OfflineStore
has failed. Returns either:Active
orBlocked
.- Parameters:
offlineStoreStatus
- Notifies you if replicating data into theOfflineStore
has failed. Returns either:Active
orBlocked
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
offlineStoreStatus
default FeatureGroupSummary.Builder offlineStoreStatus(Consumer<OfflineStoreStatus.Builder> offlineStoreStatus)
Notifies you if replicating data into the
This is a convenience method that creates an instance of theOfflineStore
has failed. Returns either:Active
orBlocked
.OfflineStoreStatus.Builder
avoiding the need to create one manually viaOfflineStoreStatus.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toofflineStoreStatus(OfflineStoreStatus)
.- Parameters:
offlineStoreStatus
- a consumer that will call methods onOfflineStoreStatus.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
offlineStoreStatus(OfflineStoreStatus)
-
-