Interface DatasetChanges.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DatasetChanges.Builder,DatasetChanges>,SdkBuilder<DatasetChanges.Builder,DatasetChanges>,SdkPojo
- Enclosing class:
- DatasetChanges
public static interface DatasetChanges.Builder extends SdkPojo, CopyableBuilder<DatasetChanges.Builder,DatasetChanges>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatasetChanges.BuildergroundTruth(SdkBytes groundTruth)A Base64-encoded binary data object containing one or JSON lines that either update the dataset or are additions to 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
-
groundTruth
DatasetChanges.Builder groundTruth(SdkBytes groundTruth)
A Base64-encoded binary data object containing one or JSON lines that either update the dataset or are additions to the dataset. You change a dataset by calling UpdateDatasetEntries. If you are using an AWS SDK to call
UpdateDatasetEntries, you don't need to encodeChangesas the SDK encodes the data for you.For example JSON lines, see Image-Level labels in manifest files and and Object localization in manifest files in the Amazon Rekognition Custom Labels Developer Guide.
- Parameters:
groundTruth- A Base64-encoded binary data object containing one or JSON lines that either update the dataset or are additions to the dataset. You change a dataset by calling UpdateDatasetEntries. If you are using an AWS SDK to callUpdateDatasetEntries, you don't need to encodeChangesas the SDK encodes the data for you.For example JSON lines, see Image-Level labels in manifest files and and Object localization in manifest files in the Amazon Rekognition Custom Labels Developer Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-