Interface JourneyRunResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JourneyRunResponse.Builder,JourneyRunResponse>,SdkBuilder<JourneyRunResponse.Builder,JourneyRunResponse>,SdkPojo
- Enclosing class:
- JourneyRunResponse
public static interface JourneyRunResponse.Builder extends SdkPojo, CopyableBuilder<JourneyRunResponse.Builder,JourneyRunResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JourneyRunResponse.BuildercreationTime(String creationTime)The time when the journey run was created or scheduled, in ISO 8601 format.JourneyRunResponse.BuilderlastUpdateTime(String lastUpdateTime)The last time the journey run was updated, in ISO 8601 format..JourneyRunResponse.BuilderrunId(String runId)The unique identifier for the run.JourneyRunResponse.Builderstatus(String status)The current status of the journey run.JourneyRunResponse.Builderstatus(JourneyRunStatus status)The current status of the journey run.-
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
-
creationTime
JourneyRunResponse.Builder creationTime(String creationTime)
The time when the journey run was created or scheduled, in ISO 8601 format.
- Parameters:
creationTime- The time when the journey run was created or scheduled, in ISO 8601 format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdateTime
JourneyRunResponse.Builder lastUpdateTime(String lastUpdateTime)
The last time the journey run was updated, in ISO 8601 format..
- Parameters:
lastUpdateTime- The last time the journey run was updated, in ISO 8601 format..- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runId
JourneyRunResponse.Builder runId(String runId)
The unique identifier for the run.
- Parameters:
runId- The unique identifier for the run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
JourneyRunResponse.Builder status(String status)
The current status of the journey run.
- Parameters:
status- The current status of the journey run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JourneyRunStatus,JourneyRunStatus
-
status
JourneyRunResponse.Builder status(JourneyRunStatus status)
The current status of the journey run.
- Parameters:
status- The current status of the journey run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JourneyRunStatus,JourneyRunStatus
-
-