Interface TestGridSession.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TestGridSession.Builder,TestGridSession>,SdkBuilder<TestGridSession.Builder,TestGridSession>,SdkPojo
- Enclosing class:
- TestGridSession
public static interface TestGridSession.Builder extends SdkPojo, CopyableBuilder<TestGridSession.Builder,TestGridSession>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestGridSession.Builderarn(String arn)The ARN of the session.TestGridSession.BuilderbillingMinutes(Double billingMinutes)The number of billed minutes that were used for this session.TestGridSession.Buildercreated(Instant created)The time that the session was started.TestGridSession.Builderended(Instant ended)The time the session ended.TestGridSession.BuilderseleniumProperties(String seleniumProperties)A JSON object of options and parameters passed to the Selenium WebDriver.TestGridSession.Builderstatus(String status)The state of the session.TestGridSession.Builderstatus(TestGridSessionStatus status)The state of the session.-
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
TestGridSession.Builder arn(String arn)
The ARN of the session.
- Parameters:
arn- The ARN of the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
TestGridSession.Builder status(String status)
The state of the session.
- Parameters:
status- The state of the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TestGridSessionStatus,TestGridSessionStatus
-
status
TestGridSession.Builder status(TestGridSessionStatus status)
The state of the session.
- Parameters:
status- The state of the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TestGridSessionStatus,TestGridSessionStatus
-
created
TestGridSession.Builder created(Instant created)
The time that the session was started.
- Parameters:
created- The time that the session was started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ended
TestGridSession.Builder ended(Instant ended)
The time the session ended.
- Parameters:
ended- The time the session ended.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
billingMinutes
TestGridSession.Builder billingMinutes(Double billingMinutes)
The number of billed minutes that were used for this session.
- Parameters:
billingMinutes- The number of billed minutes that were used for this session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
seleniumProperties
TestGridSession.Builder seleniumProperties(String seleniumProperties)
A JSON object of options and parameters passed to the Selenium WebDriver.
- Parameters:
seleniumProperties- A JSON object of options and parameters passed to the Selenium WebDriver.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-