You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DeviceFarm::Types::ListTestGridSessionsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListTestGridSessionsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  project_arn: "DeviceFarmArn", # required
  status: "ACTIVE", # accepts ACTIVE, CLOSED, ERRORED
  creation_time_after: Time.now,
  creation_time_before: Time.now,
  end_time_after: Time.now,
  end_time_before: Time.now,
  max_result: 1,
  next_token: "PaginationToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#creation_time_afterTime

Return only sessions created after this time.

Returns:

  • (Time)

    Return only sessions created after this time.

#creation_time_beforeTime

Return only sessions created before this time.

Returns:

  • (Time)

    Return only sessions created before this time.

#end_time_afterTime

Return only sessions that ended after this time.

Returns:

  • (Time)

    Return only sessions that ended after this time.

#end_time_beforeTime

Return only sessions that ended before this time.

Returns:

  • (Time)

    Return only sessions that ended before this time.

#max_resultInteger

Return only this many results at a time.

Returns:

  • (Integer)

    Return only this many results at a time.

#next_tokenString

Pagination token.

Returns:

  • (String)

    Pagination token.

#project_arnString

ARN of a TestGridProject.

Returns:

#statusString

Return only sessions in this state.

Possible values:

  • ACTIVE
  • CLOSED
  • ERRORED

Returns:

  • (String)

    Return only sessions in this state.