Interface WorldExportJobSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorldExportJobSummary.Builder,WorldExportJobSummary>,SdkBuilder<WorldExportJobSummary.Builder,WorldExportJobSummary>,SdkPojo
- Enclosing class:
- WorldExportJobSummary
public static interface WorldExportJobSummary.Builder extends SdkPojo, CopyableBuilder<WorldExportJobSummary.Builder,WorldExportJobSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description WorldExportJobSummary.Builderarn(String arn)The Amazon Resource Name (ARN) of the world export job.WorldExportJobSummary.BuildercreatedAt(Instant createdAt)The time, in milliseconds since the epoch, when the world export job was created.default WorldExportJobSummary.BuilderoutputLocation(Consumer<OutputLocation.Builder> outputLocation)Sets the value of the OutputLocation property for this object.WorldExportJobSummary.BuilderoutputLocation(OutputLocation outputLocation)Sets the value of the OutputLocation property for this object.WorldExportJobSummary.Builderstatus(String status)The status of the world export job.WorldExportJobSummary.Builderstatus(WorldExportJobStatus status)The status of the world export job.WorldExportJobSummary.Builderworlds(String... worlds)A list of worlds.WorldExportJobSummary.Builderworlds(Collection<String> worlds)A list of worlds.-
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
-
arn
WorldExportJobSummary.Builder arn(String arn)
The Amazon Resource Name (ARN) of the world export job.
- Parameters:
arn- The Amazon Resource Name (ARN) of the world export job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
WorldExportJobSummary.Builder status(String status)
The status of the world export job.
- Pending
-
The world export job request is pending.
- Running
-
The world export job is running.
- Completed
-
The world export job completed.
- Failed
-
The world export job failed. See
failureCodefor more information. - Canceled
-
The world export job was cancelled.
- Canceling
-
The world export job is being cancelled.
- Parameters:
status- The status of the world export job.- Pending
-
The world export job request is pending.
- Running
-
The world export job is running.
- Completed
-
The world export job completed.
- Failed
-
The world export job failed. See
failureCodefor more information. - Canceled
-
The world export job was cancelled.
- Canceling
-
The world export job is being cancelled.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorldExportJobStatus,WorldExportJobStatus
-
status
WorldExportJobSummary.Builder status(WorldExportJobStatus status)
The status of the world export job.
- Pending
-
The world export job request is pending.
- Running
-
The world export job is running.
- Completed
-
The world export job completed.
- Failed
-
The world export job failed. See
failureCodefor more information. - Canceled
-
The world export job was cancelled.
- Canceling
-
The world export job is being cancelled.
- Parameters:
status- The status of the world export job.- Pending
-
The world export job request is pending.
- Running
-
The world export job is running.
- Completed
-
The world export job completed.
- Failed
-
The world export job failed. See
failureCodefor more information. - Canceled
-
The world export job was cancelled.
- Canceling
-
The world export job is being cancelled.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorldExportJobStatus,WorldExportJobStatus
-
createdAt
WorldExportJobSummary.Builder createdAt(Instant createdAt)
The time, in milliseconds since the epoch, when the world export job was created.
- Parameters:
createdAt- The time, in milliseconds since the epoch, when the world export job was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
worlds
WorldExportJobSummary.Builder worlds(Collection<String> worlds)
A list of worlds.
- Parameters:
worlds- A list of worlds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
worlds
WorldExportJobSummary.Builder worlds(String... worlds)
A list of worlds.
- Parameters:
worlds- A list of worlds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputLocation
WorldExportJobSummary.Builder outputLocation(OutputLocation outputLocation)
Sets the value of the OutputLocation property for this object.- Parameters:
outputLocation- The new value for the OutputLocation property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputLocation
default WorldExportJobSummary.Builder outputLocation(Consumer<OutputLocation.Builder> outputLocation)
Sets the value of the OutputLocation property for this object. This is a convenience method that creates an instance of theOutputLocation.Builderavoiding the need to create one manually viaOutputLocation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooutputLocation(OutputLocation).- Parameters:
outputLocation- a consumer that will call methods onOutputLocation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
outputLocation(OutputLocation)
-
-