Struct rusoto_appstream::Fleet[][src]

pub struct Fleet {
    pub arn: String,
    pub compute_capacity_status: ComputeCapacityStatus,
    pub created_time: Option<f64>,
    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 fleet_errors: Option<Vec<FleetError>>,
    pub fleet_type: Option<String>,
    pub image_name: String,
    pub instance_type: String,
    pub max_user_duration_in_seconds: Option<i64>,
    pub name: String,
    pub state: String,
    pub vpc_config: Option<VpcConfig>,
}

Contains the parameters for a fleet.

Fields

The ARN for the fleet.

The capacity status for the fleet.

The time the fleet was created.

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.

Indicates whether default internet access is enabled for the fleet.

The fleet errors.

The fleet type.

ALWAYSON

Provides users with instant-on access to their apps. You are charged for all running instances in your fleet, even if no users are streaming apps.

ONDEMAND

Provide users with access to applications after they connect, which takes one to two minutes. You are charged for instance streaming when users are connected and a small hourly fee for instances that are not streaming apps.

The name of the image used to create the fleet.

The instance type to use when launching fleet instances.

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

The name of the fleet.

The current state for the fleet.

The VPC configuration for the fleet.

Trait Implementations

impl Default for Fleet
[src]

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

impl Debug for Fleet
[src]

Formats the value using the given formatter. Read more

impl Clone for Fleet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for Fleet

impl Sync for Fleet