[][src]Struct rusoto_appstream::CreateStreamingURLRequest

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

application_id: Option<String>

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

fleet_name: String

The name of the fleet.

session_context: Option<String>

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

stack_name: String

The name of the stack.

user_id: String

The identifier of the user.

validity: Option<i64>

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 Clone for CreateStreamingURLRequest[src]

impl Debug for CreateStreamingURLRequest[src]

impl Default for CreateStreamingURLRequest[src]

impl PartialEq<CreateStreamingURLRequest> for CreateStreamingURLRequest[src]

impl Serialize for CreateStreamingURLRequest[src]

impl StructuralPartialEq for CreateStreamingURLRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.