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 of the user. It can be API for a user authenticated using a streaming URL, or SAML for a SAML federated user. If an authentication type is not provided, the operation defaults to users authenticated using a streaming URL.

The name of the fleet for which to list sessions.

The size of each page of results. The default value is 20 and the maximum supported 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 for which to list sessions.

The user for whom to list sessions. Use null to describe all the sessions for the stack and fleet.

Trait Implementations

impl Default for DescribeSessionsRequest
[src]

[src]

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

impl Debug for DescribeSessionsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeSessionsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations