Struct rusoto_appstream::DescribeSessionsRequest[][src]

pub struct DescribeSessionsRequest {
    pub authentication_type: Option<String>,
    pub fleet_name: String,
    pub limit: Option<i64>,
    pub next_token: Option<String>,
    pub stack_name: String,
    pub user_id: Option<String>,
}

Fields

The authentication method. Specify API for a user authenticated using a streaming URL or SAML for a SAML federated user. The default is to authenticate users using a streaming URL.

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

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

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.

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

The user ID.

Trait Implementations

impl Default for DescribeSessionsRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeSessionsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeSessionsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeSessionsRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations