Interface DatasetSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DatasetSummary.Builder,DatasetSummary>,SdkBuilder<DatasetSummary.Builder,DatasetSummary>,SdkPojo
- Enclosing class:
- DatasetSummary
public static interface DatasetSummary.Builder extends SdkPojo, CopyableBuilder<DatasetSummary.Builder,DatasetSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatasetSummary.BuildercreationTime(Instant creationTime)When the dataset was created.DatasetSummary.BuilderdatasetArn(String datasetArn)The Amazon Resource Name (ARN) of the dataset.DatasetSummary.BuilderdatasetName(String datasetName)The name of the dataset.DatasetSummary.BuilderdatasetType(String datasetType)The dataset type.DatasetSummary.BuilderdatasetType(DatasetType datasetType)The dataset type.DatasetSummary.Builderdomain(String domain)The domain associated with the dataset.DatasetSummary.Builderdomain(Domain domain)The domain associated with the dataset.DatasetSummary.BuilderlastModificationTime(Instant lastModificationTime)When you create a dataset,LastModificationTimeis the same asCreationTime.-
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
-
datasetArn
DatasetSummary.Builder datasetArn(String datasetArn)
The Amazon Resource Name (ARN) of the dataset.
- Parameters:
datasetArn- The Amazon Resource Name (ARN) of the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasetName
DatasetSummary.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
DatasetSummary.Builder datasetType(String datasetType)
The dataset type.
- Parameters:
datasetType- The dataset type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatasetType,DatasetType
-
datasetType
DatasetSummary.Builder datasetType(DatasetType datasetType)
The dataset type.
- Parameters:
datasetType- The dataset type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatasetType,DatasetType
-
domain
DatasetSummary.Builder domain(String domain)
The domain associated with the dataset.
-
domain
DatasetSummary.Builder domain(Domain domain)
The domain associated with the dataset.
-
creationTime
DatasetSummary.Builder creationTime(Instant creationTime)
When the dataset was created.
- Parameters:
creationTime- When the dataset was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModificationTime
DatasetSummary.Builder lastModificationTime(Instant lastModificationTime)
When you create a dataset,
LastModificationTimeis the same asCreationTime. While data is being imported to the dataset,LastModificationTimeis the current time of theListDatasetscall. After a CreateDatasetImportJob operation has finished,LastModificationTimeis when the import job completed or failed.- Parameters:
lastModificationTime- When you create a dataset,LastModificationTimeis the same asCreationTime. While data is being imported to the dataset,LastModificationTimeis the current time of theListDatasetscall. After a CreateDatasetImportJob operation has finished,LastModificationTimeis when the import job completed or failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-