Struct rusoto_appstream::UpdateFleetRequest[][src]

pub struct UpdateFleetRequest {
    pub attributes_to_delete: Option<Vec<String>>,
    pub compute_capacity: Option<ComputeCapacity>,
    pub description: Option<String>,
    pub disconnect_timeout_in_seconds: Option<i64>,
    pub display_name: Option<String>,
    pub domain_join_info: Option<DomainJoinInfo>,
    pub enable_default_internet_access: Option<bool>,
    pub image_name: Option<String>,
    pub instance_type: Option<String>,
    pub max_user_duration_in_seconds: Option<i64>,
    pub name: String,
    pub vpc_config: Option<VpcConfig>,
}

Fields

The fleet attributes to delete.

The desired capacity for the fleet.

The description for display.

The time after disconnection when a session is considered to have ended, in seconds. If a user who was disconnected reconnects within this time interval, the user is connected to their previous session. Specify a value between 60 and 57600.

The fleet name for display.

The information needed to join a Microsoft Active Directory domain.

Enables or disables default internet access for the fleet.

The name of the image used to create the fleet.

The instance type to use when launching fleet instances. The following instance types are available:

  • stream.standard.medium

  • stream.standard.large

  • stream.compute.large

  • stream.compute.xlarge

  • stream.compute.2xlarge

  • stream.compute.4xlarge

  • stream.compute.8xlarge

  • stream.memory.large

  • stream.memory.xlarge

  • stream.memory.2xlarge

  • stream.memory.4xlarge

  • stream.memory.8xlarge

  • stream.graphics-design.large

  • stream.graphics-design.xlarge

  • stream.graphics-design.2xlarge

  • stream.graphics-design.4xlarge

  • stream.graphics-desktop.2xlarge

  • stream.graphics-pro.4xlarge

  • stream.graphics-pro.8xlarge

  • stream.graphics-pro.16xlarge

The maximum time that a streaming session can run, in seconds. Specify a value between 600 and 57600.

A unique name for the fleet.

The VPC configuration for the fleet.

Trait Implementations

impl Default for UpdateFleetRequest
[src]

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

impl Debug for UpdateFleetRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateFleetRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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