Interface GetExecutionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BcmDataExportsResponse.Builder,Buildable,CopyableBuilder<GetExecutionResponse.Builder,GetExecutionResponse>,SdkBuilder<GetExecutionResponse.Builder,GetExecutionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetExecutionResponse
public static interface GetExecutionResponse.Builder extends BcmDataExportsResponse.Builder, SdkPojo, CopyableBuilder<GetExecutionResponse.Builder,GetExecutionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetExecutionResponse.BuilderexecutionId(String executionId)The ID for this specific execution.default GetExecutionResponse.BuilderexecutionStatus(Consumer<ExecutionStatus.Builder> executionStatus)The status of this specific execution.GetExecutionResponse.BuilderexecutionStatus(ExecutionStatus executionStatus)The status of this specific execution.default GetExecutionResponse.Builderexport(Consumer<Export.Builder> export)The export data for this specific execution.GetExecutionResponse.Builderexport(Export export)The export data for this specific execution.-
Methods inherited from interface software.amazon.awssdk.services.bcmdataexports.model.BcmDataExportsResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
executionId
GetExecutionResponse.Builder executionId(String executionId)
The ID for this specific execution.
- Parameters:
executionId- The ID for this specific execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionStatus
GetExecutionResponse.Builder executionStatus(ExecutionStatus executionStatus)
The status of this specific execution.
- Parameters:
executionStatus- The status of this specific execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionStatus
default GetExecutionResponse.Builder executionStatus(Consumer<ExecutionStatus.Builder> executionStatus)
The status of this specific execution.
This is a convenience method that creates an instance of theExecutionStatus.Builderavoiding the need to create one manually viaExecutionStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexecutionStatus(ExecutionStatus).- Parameters:
executionStatus- a consumer that will call methods onExecutionStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
executionStatus(ExecutionStatus)
-
export
GetExecutionResponse.Builder export(Export export)
The export data for this specific execution. This export data is a snapshot from when the execution was generated. The data could be different from the current export data if the export was updated since the execution was generated.
- Parameters:
export- The export data for this specific execution. This export data is a snapshot from when the execution was generated. The data could be different from the current export data if the export was updated since the execution was generated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
export
default GetExecutionResponse.Builder export(Consumer<Export.Builder> export)
The export data for this specific execution. This export data is a snapshot from when the execution was generated. The data could be different from the current export data if the export was updated since the execution was generated.
This is a convenience method that creates an instance of theExport.Builderavoiding the need to create one manually viaExport.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toexport(Export).- Parameters:
export- a consumer that will call methods onExport.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
export(Export)
-
-