Interface KxDataviewConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KxDataviewConfiguration.Builder,KxDataviewConfiguration>,SdkBuilder<KxDataviewConfiguration.Builder,KxDataviewConfiguration>,SdkPojo
- Enclosing class:
- KxDataviewConfiguration
public static interface KxDataviewConfiguration.Builder extends SdkPojo, CopyableBuilder<KxDataviewConfiguration.Builder,KxDataviewConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KxDataviewConfiguration.BuilderchangesetId(String changesetId)A unique identifier for the changeset.KxDataviewConfiguration.BuilderdataviewName(String dataviewName)The unique identifier of the dataview.KxDataviewConfiguration.BuilderdataviewVersionId(String dataviewVersionId)The version of the dataview corresponding to a given changeset.KxDataviewConfiguration.BuildersegmentConfigurations(Collection<KxDataviewSegmentConfiguration> segmentConfigurations)The db path and volume configuration for the segmented database.KxDataviewConfiguration.BuildersegmentConfigurations(Consumer<KxDataviewSegmentConfiguration.Builder>... segmentConfigurations)The db path and volume configuration for the segmented database.KxDataviewConfiguration.BuildersegmentConfigurations(KxDataviewSegmentConfiguration... segmentConfigurations)The db path and volume configuration for the segmented database.-
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
-
dataviewName
KxDataviewConfiguration.Builder dataviewName(String dataviewName)
The unique identifier of the dataview.
- Parameters:
dataviewName- The unique identifier of the dataview.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataviewVersionId
KxDataviewConfiguration.Builder dataviewVersionId(String dataviewVersionId)
The version of the dataview corresponding to a given changeset.
- Parameters:
dataviewVersionId- The version of the dataview corresponding to a given changeset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
changesetId
KxDataviewConfiguration.Builder changesetId(String changesetId)
A unique identifier for the changeset.
- Parameters:
changesetId- A unique identifier for the changeset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
segmentConfigurations
KxDataviewConfiguration.Builder segmentConfigurations(Collection<KxDataviewSegmentConfiguration> segmentConfigurations)
The db path and volume configuration for the segmented database.
- Parameters:
segmentConfigurations- The db path and volume configuration for the segmented database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
segmentConfigurations
KxDataviewConfiguration.Builder segmentConfigurations(KxDataviewSegmentConfiguration... segmentConfigurations)
The db path and volume configuration for the segmented database.
- Parameters:
segmentConfigurations- The db path and volume configuration for the segmented database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
segmentConfigurations
KxDataviewConfiguration.Builder segmentConfigurations(Consumer<KxDataviewSegmentConfiguration.Builder>... segmentConfigurations)
The db path and volume configuration for the segmented database.
This is a convenience method that creates an instance of theKxDataviewSegmentConfiguration.Builderavoiding the need to create one manually viaKxDataviewSegmentConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#segmentConfigurations(List.) - Parameters:
segmentConfigurations- a consumer that will call methods onKxDataviewSegmentConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#segmentConfigurations(java.util.Collection)
-
-