Class: Aws::AppStream::Types::DescribeSessionsRequest

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

Overview

Note:

When making an API call, you may pass DescribeSessionsRequest data as a hash:

{
  stack_name: "String", # required
  fleet_name: "String", # required
  user_id: "UserId",
  next_token: "String",
  limit: 1,
  authentication_type: "API", # accepts API, SAML, USERPOOL
}

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_typeString

The authentication method. Specify ‘API` for a user authenticated using a streaming URL, `SAML` for a SAML 2.0-federated user, or `USERPOOL` for a user in the AppStream 2.0 user pool. The default is to authenticate users using a streaming URL.

Returns:

  • (String)


1426
1427
1428
1429
1430
1431
1432
1433
1434
# File 'lib/aws-sdk-appstream/types.rb', line 1426

class DescribeSessionsRequest < Struct.new(
  :stack_name,
  :fleet_name,
  :user_id,
  :next_token,
  :limit,
  :authentication_type)
  include Aws::Structure
end

#fleet_nameString

The name of the fleet. This value is case-sensitive.

Returns:

  • (String)


1426
1427
1428
1429
1430
1431
1432
1433
1434
# File 'lib/aws-sdk-appstream/types.rb', line 1426

class DescribeSessionsRequest < Struct.new(
  :stack_name,
  :fleet_name,
  :user_id,
  :next_token,
  :limit,
  :authentication_type)
  include Aws::Structure
end

#limitInteger

The size of each page of results. The default value is 20 and the maximum value is 50.

Returns:

  • (Integer)


1426
1427
1428
1429
1430
1431
1432
1433
1434
# File 'lib/aws-sdk-appstream/types.rb', line 1426

class DescribeSessionsRequest < Struct.new(
  :stack_name,
  :fleet_name,
  :user_id,
  :next_token,
  :limit,
  :authentication_type)
  include Aws::Structure
end

#next_tokenString

The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

Returns:

  • (String)


1426
1427
1428
1429
1430
1431
1432
1433
1434
# File 'lib/aws-sdk-appstream/types.rb', line 1426

class DescribeSessionsRequest < Struct.new(
  :stack_name,
  :fleet_name,
  :user_id,
  :next_token,
  :limit,
  :authentication_type)
  include Aws::Structure
end

#stack_nameString

The name of the stack. This value is case-sensitive.

Returns:

  • (String)


1426
1427
1428
1429
1430
1431
1432
1433
1434
# File 'lib/aws-sdk-appstream/types.rb', line 1426

class DescribeSessionsRequest < Struct.new(
  :stack_name,
  :fleet_name,
  :user_id,
  :next_token,
  :limit,
  :authentication_type)
  include Aws::Structure
end

#user_idString

The user identifier.

Returns:

  • (String)


1426
1427
1428
1429
1430
1431
1432
1433
1434
# File 'lib/aws-sdk-appstream/types.rb', line 1426

class DescribeSessionsRequest < Struct.new(
  :stack_name,
  :fleet_name,
  :user_id,
  :next_token,
  :limit,
  :authentication_type)
  include Aws::Structure
end