Interface KxDataviewActiveVersion.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KxDataviewActiveVersion.Builder,KxDataviewActiveVersion>,SdkBuilder<KxDataviewActiveVersion.Builder,KxDataviewActiveVersion>,SdkPojo
- Enclosing class:
- KxDataviewActiveVersion
public static interface KxDataviewActiveVersion.Builder extends SdkPojo, CopyableBuilder<KxDataviewActiveVersion.Builder,KxDataviewActiveVersion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KxDataviewActiveVersion.BuilderattachedClusters(String... attachedClusters)The list of clusters that are currently using this dataview.KxDataviewActiveVersion.BuilderattachedClusters(Collection<String> attachedClusters)The list of clusters that are currently using this dataview.KxDataviewActiveVersion.BuilderchangesetId(String changesetId)A unique identifier for the changeset.KxDataviewActiveVersion.BuildercreatedTimestamp(Instant createdTimestamp)The timestamp at which the dataview version was active.KxDataviewActiveVersion.BuildersegmentConfigurations(Collection<KxDataviewSegmentConfiguration> segmentConfigurations)The configuration that contains the database path of the data that you want to place on each selected volume.KxDataviewActiveVersion.BuildersegmentConfigurations(Consumer<KxDataviewSegmentConfiguration.Builder>... segmentConfigurations)The configuration that contains the database path of the data that you want to place on each selected volume.KxDataviewActiveVersion.BuildersegmentConfigurations(KxDataviewSegmentConfiguration... segmentConfigurations)The configuration that contains the database path of the data that you want to place on each selected volume.KxDataviewActiveVersion.BuilderversionId(String versionId)A unique identifier of the active version.-
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
-
changesetId
KxDataviewActiveVersion.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
KxDataviewActiveVersion.Builder segmentConfigurations(Collection<KxDataviewSegmentConfiguration> segmentConfigurations)
The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment.
- Parameters:
segmentConfigurations- The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
segmentConfigurations
KxDataviewActiveVersion.Builder segmentConfigurations(KxDataviewSegmentConfiguration... segmentConfigurations)
The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment.
- Parameters:
segmentConfigurations- The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
segmentConfigurations
KxDataviewActiveVersion.Builder segmentConfigurations(Consumer<KxDataviewSegmentConfiguration.Builder>... segmentConfigurations)
The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment.
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)
-
attachedClusters
KxDataviewActiveVersion.Builder attachedClusters(Collection<String> attachedClusters)
The list of clusters that are currently using this dataview.
- Parameters:
attachedClusters- The list of clusters that are currently using this dataview.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attachedClusters
KxDataviewActiveVersion.Builder attachedClusters(String... attachedClusters)
The list of clusters that are currently using this dataview.
- Parameters:
attachedClusters- The list of clusters that are currently using this dataview.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTimestamp
KxDataviewActiveVersion.Builder createdTimestamp(Instant createdTimestamp)
The timestamp at which the dataview version was active. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
- Parameters:
createdTimestamp- The timestamp at which the dataview version was active. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionId
KxDataviewActiveVersion.Builder versionId(String versionId)
A unique identifier of the active version.
- Parameters:
versionId- A unique identifier of the active version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-