Interface ExportJobProperties.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportJobProperties.Builder,ExportJobProperties>,SdkBuilder<ExportJobProperties.Builder,ExportJobProperties>,SdkPojo
- Enclosing class:
- ExportJobProperties
public static interface ExportJobProperties.Builder extends SdkPojo, CopyableBuilder<ExportJobProperties.Builder,ExportJobProperties>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ExportJobProperties.BuilderdataAccessRoleArn(String dataAccessRoleArn)The Amazon Resource Name used during the initiation of the job.ExportJobProperties.BuilderdatastoreId(String datastoreId)The AWS generated ID for the data store from which files are being exported for an export job.ExportJobProperties.BuilderendTime(Instant endTime)The time an export job completed.ExportJobProperties.BuilderjobId(String jobId)The AWS generated ID for an export job.ExportJobProperties.BuilderjobName(String jobName)The user generated name for an export job.ExportJobProperties.BuilderjobStatus(String jobStatus)The status of a FHIR export job.ExportJobProperties.BuilderjobStatus(JobStatus jobStatus)The status of a FHIR export job.ExportJobProperties.Buildermessage(String message)An explanation of any errors that may have occurred during the export job.default ExportJobProperties.BuilderoutputDataConfig(Consumer<OutputDataConfig.Builder> outputDataConfig)The output data configuration that was supplied when the export job was created.ExportJobProperties.BuilderoutputDataConfig(OutputDataConfig outputDataConfig)The output data configuration that was supplied when the export job was created.ExportJobProperties.BuildersubmitTime(Instant submitTime)The time an export job was initiated.-
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
-
jobId
ExportJobProperties.Builder jobId(String jobId)
The AWS generated ID for an export job.
- Parameters:
jobId- The AWS generated ID for an export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobName
ExportJobProperties.Builder jobName(String jobName)
The user generated name for an export job.
- Parameters:
jobName- The user generated name for an export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobStatus
ExportJobProperties.Builder jobStatus(String jobStatus)
The status of a FHIR export job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, or FAILED.
-
jobStatus
ExportJobProperties.Builder jobStatus(JobStatus jobStatus)
The status of a FHIR export job. Possible statuses are SUBMITTED, IN_PROGRESS, COMPLETED, or FAILED.
-
submitTime
ExportJobProperties.Builder submitTime(Instant submitTime)
The time an export job was initiated.
- Parameters:
submitTime- The time an export job was initiated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
ExportJobProperties.Builder endTime(Instant endTime)
The time an export job completed.
- Parameters:
endTime- The time an export job completed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datastoreId
ExportJobProperties.Builder datastoreId(String datastoreId)
The AWS generated ID for the data store from which files are being exported for an export job.
- Parameters:
datastoreId- The AWS generated ID for the data store from which files are being exported for an export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputDataConfig
ExportJobProperties.Builder outputDataConfig(OutputDataConfig outputDataConfig)
The output data configuration that was supplied when the export job was created.
- Parameters:
outputDataConfig- The output data configuration that was supplied when the export job was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputDataConfig
default ExportJobProperties.Builder outputDataConfig(Consumer<OutputDataConfig.Builder> outputDataConfig)
The output data configuration that was supplied when the export job was created.
This is a convenience method that creates an instance of theOutputDataConfig.Builderavoiding the need to create one manually viaOutputDataConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooutputDataConfig(OutputDataConfig).- Parameters:
outputDataConfig- a consumer that will call methods onOutputDataConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
outputDataConfig(OutputDataConfig)
-
dataAccessRoleArn
ExportJobProperties.Builder dataAccessRoleArn(String dataAccessRoleArn)
The Amazon Resource Name used during the initiation of the job.
- Parameters:
dataAccessRoleArn- The Amazon Resource Name used during the initiation of the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
ExportJobProperties.Builder message(String message)
An explanation of any errors that may have occurred during the export job.
- Parameters:
message- An explanation of any errors that may have occurred during the export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-