Struct rusoto_appstream::UpdateStackRequest[][src]

pub struct UpdateStackRequest {
    pub attributes_to_delete: Option<Vec<String>>,
    pub description: Option<String>,
    pub display_name: Option<String>,
    pub feedback_url: Option<String>,
    pub name: String,
    pub redirect_url: Option<String>,
    pub storage_connectors: Option<Vec<StorageConnector>>,
}

Fields

The stack attributes to delete.

The description for display.

The stack name for display.

The URL that users are redirected to after they click the Send Feedback link. If no URL is specified, no Send Feedback link is displayed.

The name of the stack.

The URL that users are redirected to after their streaming session ends.

The storage connectors to enable.

Trait Implementations

impl Default for UpdateStackRequest
[src]

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

impl Debug for UpdateStackRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateStackRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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