Struct rusoto_appstream::CreateStreamingURLRequest[][src]

pub struct CreateStreamingURLRequest {
    pub application_id: Option<String>,
    pub fleet_name: String,
    pub session_context: Option<String>,
    pub stack_name: String,
    pub user_id: String,
    pub validity: Option<i64>,
}

Fields

The name of the application to launch after the session starts. This is the name that you specified as Name in the Image Assistant.

The name of the fleet.

The session context. For more information, see Session Context in the Amazon AppStream 2.0 Developer Guide.

The name of the stack.

The ID of the user.

The time that the streaming URL will be valid, in seconds. Specify a value between 1 and 604800 seconds. The default is 60 seconds.

Trait Implementations

impl Default for CreateStreamingURLRequest
[src]

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

impl Debug for CreateStreamingURLRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateStreamingURLRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateStreamingURLRequest
[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