Interface DataSourceSyncJob.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<DataSourceSyncJob.Builder,
,DataSourceSyncJob> SdkBuilder<DataSourceSyncJob.Builder,
,DataSourceSyncJob> SdkPojo
- Enclosing class:
DataSourceSyncJob
-
Method Summary
Modifier and TypeMethodDescriptiondataSourceErrorCode
(String dataSourceErrorCode) If the reason that the synchronization failed is due to an error with the underlying data source, this field contains a code that identifies the error.The Unix timestamp when the synchronization job completed.default DataSourceSyncJob.Builder
error
(Consumer<ErrorDetail.Builder> error) If theStatus
field is set toFAILED
, theErrorCode
field indicates the reason the synchronization failed.error
(ErrorDetail error) If theStatus
field is set toFAILED
, theErrorCode
field indicates the reason the synchronization failed.executionId
(String executionId) The identifier of a data source synchronization job.default DataSourceSyncJob.Builder
metrics
(Consumer<DataSourceSyncJobMetrics.Builder> metrics) Maps a batch delete document request to a specific data source sync job.metrics
(DataSourceSyncJobMetrics metrics) Maps a batch delete document request to a specific data source sync job.The Unix time stamp when the data source synchronization job started.The status of the synchronization job.status
(DataSourceSyncJobStatus status) The status of the synchronization job.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 Details
-
executionId
The identifier of a data source synchronization job.
- Parameters:
executionId
- The identifier of a data source synchronization job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
The Unix time stamp when the data source synchronization job started.
- Parameters:
startTime
- The Unix time stamp when the data source synchronization job started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
The Unix timestamp when the synchronization job completed.
- Parameters:
endTime
- The Unix timestamp when the synchronization job completed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
The status of the synchronization job. When the
Status
field is set toSUCCEEDED
, the synchronization job is done. If the status code isFAILED
, theErrorCode
andErrorMessage
fields give you the reason for the failure.- Parameters:
status
- The status of the synchronization job. When theStatus
field is set toSUCCEEDED
, the synchronization job is done. If the status code isFAILED
, theErrorCode
andErrorMessage
fields give you the reason for the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
status
The status of the synchronization job. When the
Status
field is set toSUCCEEDED
, the synchronization job is done. If the status code isFAILED
, theErrorCode
andErrorMessage
fields give you the reason for the failure.- Parameters:
status
- The status of the synchronization job. When theStatus
field is set toSUCCEEDED
, the synchronization job is done. If the status code isFAILED
, theErrorCode
andErrorMessage
fields give you the reason for the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
error
If the
Status
field is set toFAILED
, theErrorCode
field indicates the reason the synchronization failed.- Parameters:
error
- If theStatus
field is set toFAILED
, theErrorCode
field indicates the reason the synchronization failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
error
If the
This is a convenience method that creates an instance of theStatus
field is set toFAILED
, theErrorCode
field indicates the reason the synchronization failed.ErrorDetail.Builder
avoiding the need to create one manually viaErrorDetail.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toerror(ErrorDetail)
.- Parameters:
error
- a consumer that will call methods onErrorDetail.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
dataSourceErrorCode
If the reason that the synchronization failed is due to an error with the underlying data source, this field contains a code that identifies the error.
- Parameters:
dataSourceErrorCode
- If the reason that the synchronization failed is due to an error with the underlying data source, this field contains a code that identifies the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metrics
Maps a batch delete document request to a specific data source sync job. This is optional and should only be supplied when documents are deleted by a data source connector.
- Parameters:
metrics
- Maps a batch delete document request to a specific data source sync job. This is optional and should only be supplied when documents are deleted by a data source connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metrics
Maps a batch delete document request to a specific data source sync job. This is optional and should only be supplied when documents are deleted by a data source connector.
This is a convenience method that creates an instance of theDataSourceSyncJobMetrics.Builder
avoiding the need to create one manually viaDataSourceSyncJobMetrics.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tometrics(DataSourceSyncJobMetrics)
.- Parameters:
metrics
- a consumer that will call methods onDataSourceSyncJobMetrics.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-