Interface TestGridSessionAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TestGridSessionAction.Builder,TestGridSessionAction>,SdkBuilder<TestGridSessionAction.Builder,TestGridSessionAction>,SdkPojo
- Enclosing class:
- TestGridSessionAction
public static interface TestGridSessionAction.Builder extends SdkPojo, CopyableBuilder<TestGridSessionAction.Builder,TestGridSessionAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestGridSessionAction.Builderaction(String action)The action taken by the session.TestGridSessionAction.Builderduration(Long duration)The time, in milliseconds, that the action took to complete in the browser.TestGridSessionAction.BuilderrequestMethod(String requestMethod)HTTP method that the browser used to make the request.TestGridSessionAction.Builderstarted(Instant started)The time that the session invoked the action.TestGridSessionAction.BuilderstatusCode(String statusCodeValue)HTTP status code returned to the browser when the action was taken.-
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
-
action
TestGridSessionAction.Builder action(String action)
The action taken by the session.
- Parameters:
action- The action taken by the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
started
TestGridSessionAction.Builder started(Instant started)
The time that the session invoked the action.
- Parameters:
started- The time that the session invoked the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
duration
TestGridSessionAction.Builder duration(Long duration)
The time, in milliseconds, that the action took to complete in the browser.
- Parameters:
duration- The time, in milliseconds, that the action took to complete in the browser.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusCode
TestGridSessionAction.Builder statusCode(String statusCodeValue)
HTTP status code returned to the browser when the action was taken.
- Parameters:
statusCodeValue- HTTP status code returned to the browser when the action was taken.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestMethod
TestGridSessionAction.Builder requestMethod(String requestMethod)
HTTP method that the browser used to make the request.
- Parameters:
requestMethod- HTTP method that the browser used to make the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-