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.
3148 3149 3150 3151 3152 3153 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3148 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.
3148 3149 3150 3151 3152 3153 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3148 class ListRemoteAccessSessionsResult < Struct.new( :remote_access_sessions, :next_token) SENSITIVE = [] include Aws::Structure end |