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
Modifier and TypeMethodDescriptionchangesetId(String changesetId) A unique identifier for the changeset.dataviewName(String dataviewName) The unique identifier of the dataview.dataviewVersionId(String dataviewVersionId) The version of the dataview corresponding to a given changeset.segmentConfigurations(Collection<KxDataviewSegmentConfiguration> segmentConfigurations) The db path and volume configuration for the segmented database.segmentConfigurations(Consumer<KxDataviewSegmentConfiguration.Builder>... segmentConfigurations) The db path and volume configuration for the segmented database.segmentConfigurations(KxDataviewSegmentConfiguration... segmentConfigurations) The db path and volume configuration for the segmented database.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
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
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
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 tosegmentConfigurations(List<KxDataviewSegmentConfiguration>).- 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:
 
 
 -