Interface DatasetProperties.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DatasetProperties.Builder,DatasetProperties>,SdkBuilder<DatasetProperties.Builder,DatasetProperties>,SdkPojo
- Enclosing class:
- DatasetProperties
public static interface DatasetProperties.Builder extends SdkPojo, CopyableBuilder<DatasetProperties.Builder,DatasetProperties>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatasetProperties.BuildercreationTime(Instant creationTime)Creation time of the dataset.DatasetProperties.BuilderdatasetArn(String datasetArn)The ARN of the dataset.DatasetProperties.BuilderdatasetName(String datasetName)The name of the dataset.DatasetProperties.BuilderdatasetS3Uri(String datasetS3Uri)The S3 URI where the dataset is stored.DatasetProperties.BuilderdatasetType(String datasetType)The dataset type (training data or test data).DatasetProperties.BuilderdatasetType(DatasetType datasetType)The dataset type (training data or test data).DatasetProperties.Builderdescription(String description)Description of the dataset.DatasetProperties.BuilderendTime(Instant endTime)Time when the data from the dataset becomes available in the data lake.DatasetProperties.Buildermessage(String message)A description of the status of the dataset.DatasetProperties.BuildernumberOfDocuments(Long numberOfDocuments)The number of documents in the dataset.DatasetProperties.Builderstatus(String status)The dataset status.DatasetProperties.Builderstatus(DatasetStatus status)The dataset status.-
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
-
datasetArn
DatasetProperties.Builder datasetArn(String datasetArn)
The ARN of the dataset.
- Parameters:
datasetArn- The ARN of the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasetName
DatasetProperties.Builder datasetName(String datasetName)
The name of the dataset.
- Parameters:
datasetName- The name of the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasetType
DatasetProperties.Builder datasetType(String datasetType)
The dataset type (training data or test data).
- Parameters:
datasetType- The dataset type (training data or test data).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatasetType,DatasetType
-
datasetType
DatasetProperties.Builder datasetType(DatasetType datasetType)
The dataset type (training data or test data).
- Parameters:
datasetType- The dataset type (training data or test data).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatasetType,DatasetType
-
datasetS3Uri
DatasetProperties.Builder datasetS3Uri(String datasetS3Uri)
The S3 URI where the dataset is stored.
- Parameters:
datasetS3Uri- The S3 URI where the dataset is stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
DatasetProperties.Builder description(String description)
Description of the dataset.
- Parameters:
description- Description of the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
DatasetProperties.Builder status(String status)
The dataset status. While the system creates the dataset, the status is
CREATING. When the dataset is ready to use, the status changes toCOMPLETED.- Parameters:
status- The dataset status. While the system creates the dataset, the status isCREATING. When the dataset is ready to use, the status changes toCOMPLETED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatasetStatus,DatasetStatus
-
status
DatasetProperties.Builder status(DatasetStatus status)
The dataset status. While the system creates the dataset, the status is
CREATING. When the dataset is ready to use, the status changes toCOMPLETED.- Parameters:
status- The dataset status. While the system creates the dataset, the status isCREATING. When the dataset is ready to use, the status changes toCOMPLETED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatasetStatus,DatasetStatus
-
message
DatasetProperties.Builder message(String message)
A description of the status of the dataset.
- Parameters:
message- A description of the status of the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numberOfDocuments
DatasetProperties.Builder numberOfDocuments(Long numberOfDocuments)
The number of documents in the dataset.
- Parameters:
numberOfDocuments- The number of documents in the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
DatasetProperties.Builder creationTime(Instant creationTime)
Creation time of the dataset.
- Parameters:
creationTime- Creation time of the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
DatasetProperties.Builder endTime(Instant endTime)
Time when the data from the dataset becomes available in the data lake.
- Parameters:
endTime- Time when the data from the dataset becomes available in the data lake.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-