[][src]Struct rusoto_ec2::FleetData

pub struct FleetData {
    pub activity_status: Option<String>,
    pub client_token: Option<String>,
    pub create_time: Option<String>,
    pub excess_capacity_termination_policy: Option<String>,
    pub fleet_id: Option<String>,
    pub fleet_state: Option<String>,
    pub fulfilled_capacity: Option<f64>,
    pub fulfilled_on_demand_capacity: Option<f64>,
    pub launch_template_configs: Option<Vec<FleetLaunchTemplateConfig>>,
    pub on_demand_options: Option<OnDemandOptions>,
    pub replace_unhealthy_instances: Option<bool>,
    pub spot_options: Option<SpotOptions>,
    pub tags: Option<Vec<Tag>>,
    pub target_capacity_specification: Option<TargetCapacitySpecification>,
    pub terminate_instances_with_expiration: Option<bool>,
    pub type_: Option<String>,
    pub valid_from: Option<String>,
    pub valid_until: Option<String>,
}

Describes an EC2 Fleet.

Fields

The progress of the EC2 Fleet. If there is an error, the status is error. After all requests are placed, the status is pending_fulfillment. If the size of the EC2 Fleet is equal to or greater than its target capacity, the status is fulfilled. If the size of the EC2 Fleet is decreased, the status is pending_termination while instances are terminating.

Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

Constraints: Maximum 64 ASCII characters

The creation date and time of the EC2 Fleet.

Indicates whether running instances should be terminated if the target capacity of the EC2 Fleet is decreased below the current size of the EC2 Fleet.

The ID of the EC2 Fleet.

The state of the EC2 Fleet.

The number of units fulfilled by this request compared to the set target capacity.

The number of units fulfilled by this request compared to the set target On-Demand capacity.

The launch template and overrides.

The allocation strategy of On-Demand Instances in an EC2 Fleet.

Indicates whether EC2 Fleet should replace unhealthy instances.

The configuration of Spot Instances in an EC2 Fleet.

The tags for an EC2 Fleet resource.

The number of units to request. You can choose to set the target capacity in terms of instances or a performance characteristic that is important to your application workload, such as vCPUs, memory, or I/O. If the request type is maintain, you can specify a target capacity of 0 and add capacity later.

Indicates whether running instances should be terminated when the EC2 Fleet expires.

The type of request. Indicates whether the EC2 Fleet only requests the target capacity, or also attempts to maintain it. If you request a certain target capacity, EC2 Fleet only places the required requests; it does not attempt to replenish instances if capacity is diminished, and does not submit requests in alternative capacity pools if capacity is unavailable. To maintain a certain target capacity, EC2 Fleet places the required requests to meet this target capacity. It also automatically replenishes any interrupted Spot Instances. Default: maintain.

The start date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). The default is to start fulfilling the request immediately.

The end date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). At this point, no new instance requests are placed or able to fulfill the request. The default end date is 7 days from the current date.

Trait Implementations

impl Default for FleetData
[src]

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

impl PartialEq<FleetData> for FleetData
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for FleetData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FleetData
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for FleetData

impl Sync for FleetData

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Same for T

Should always be Self

impl<T> Erased for T