Class: Aws::DeviceFarm::Types::ListRemoteAccessSessionsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListRemoteAccessSessionsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the response from the server after AWS Device Farm makes a request to return information about the remote access session.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
-
#remote_access_sessions ⇒ Array<Types::RemoteAccessSession>
A container that represents the metadata from the service about each remote access session you are requesting.
Instance Attribute Details
#next_token ⇒ String
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
3168 3169 3170 3171 3172 3173 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3168 class ListRemoteAccessSessionsResult < Struct.new( :remote_access_sessions, :next_token) SENSITIVE = [] include Aws::Structure end |
#remote_access_sessions ⇒ Array<Types::RemoteAccessSession>
A container that represents the metadata from the service about each remote access session you are requesting.
3168 3169 3170 3171 3172 3173 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3168 class ListRemoteAccessSessionsResult < Struct.new( :remote_access_sessions, :next_token) SENSITIVE = [] include Aws::Structure end |