Class: Aws::GameLiftStreams::Types::ListStreamSessionsInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gameliftstreams/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#export_files_statusString

Filter by the exported files status. You can specify one status in each request to retrieve only sessions that currently have that exported files status.

Exported files can be in one of the following states:

  • ‘SUCCEEDED`: The exported files are successfully stored in an S3 bucket.

  • ‘FAILED`: The session ended but Amazon GameLift Streams couldn’t collect and upload the files to S3.

  • ‘PENDING`: Either the stream session is still in progress, or uploading the exported files to the S3 bucket is in progress.

Returns:

  • (String)


2126
2127
2128
2129
2130
2131
2132
2133
2134
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 2126

class ListStreamSessionsInput < Struct.new(
  :status,
  :export_files_status,
  :next_token,
  :max_results,
  :identifier)
  SENSITIVE = []
  include Aws::Structure
end

#identifierString

The unique identifier of a Amazon GameLift Streams stream group to retrieve the stream session for. You can use either the stream group ID or the [Amazon Resource Name (ARN)].

[1]: docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html

Returns:

  • (String)


2126
2127
2128
2129
2130
2131
2132
2133
2134
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 2126

class ListStreamSessionsInput < Struct.new(
  :status,
  :export_files_status,
  :next_token,
  :max_results,
  :identifier)
  SENSITIVE = []
  include Aws::Structure
end

#max_resultsInteger

The number of results to return. Use this parameter with ‘NextToken` to return results in sequential pages. Default value is `25`.

Returns:

  • (Integer)


2126
2127
2128
2129
2130
2131
2132
2133
2134
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 2126

class ListStreamSessionsInput < Struct.new(
  :status,
  :export_files_status,
  :next_token,
  :max_results,
  :identifier)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The token that marks the start of the next set of results. Use this token when you retrieve results as sequential pages. To get the first page of results, omit a token value. To get the remaining pages, provide the token returned with the previous result set.

Returns:

  • (String)


2126
2127
2128
2129
2130
2131
2132
2133
2134
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 2126

class ListStreamSessionsInput < Struct.new(
  :status,
  :export_files_status,
  :next_token,
  :max_results,
  :identifier)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

Filter by the stream session status. You can specify one status in each request to retrieve only sessions that are currently in that status.

Returns:

  • (String)


2126
2127
2128
2129
2130
2131
2132
2133
2134
# File 'lib/aws-sdk-gameliftstreams/types.rb', line 2126

class ListStreamSessionsInput < Struct.new(
  :status,
  :export_files_status,
  :next_token,
  :max_results,
  :identifier)
  SENSITIVE = []
  include Aws::Structure
end