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.BuildercreatedAt(Instant createdAt)The time at which the dataset was created in Amazon Lookout for Equipment.DatasetSummary.BuilderdatasetArn(String datasetArn)The Amazon Resource Name (ARN) of the specified dataset.DatasetSummary.BuilderdatasetName(String datasetName)The name of the dataset.DatasetSummary.Builderstatus(String status)Indicates the status of the dataset.DatasetSummary.Builderstatus(DatasetStatus status)Indicates the status of the dataset.-
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
-
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.
-
datasetArn
DatasetSummary.Builder datasetArn(String datasetArn)
The Amazon Resource Name (ARN) of the specified dataset.
- Parameters:
datasetArn- The Amazon Resource Name (ARN) of the specified dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
DatasetSummary.Builder status(String status)
Indicates the status of the dataset.
- Parameters:
status- Indicates the status of the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatasetStatus,DatasetStatus
-
status
DatasetSummary.Builder status(DatasetStatus status)
Indicates the status of the dataset.
- Parameters:
status- Indicates the status of the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DatasetStatus,DatasetStatus
-
createdAt
DatasetSummary.Builder createdAt(Instant createdAt)
The time at which the dataset was created in Amazon Lookout for Equipment.
- Parameters:
createdAt- The time at which the dataset was created in Amazon Lookout for Equipment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-