Struct rusoto_ec2::ModifySpotFleetRequestRequest[][src]

pub struct ModifySpotFleetRequestRequest {
    pub excess_capacity_termination_policy: Option<String>,
    pub spot_fleet_request_id: String,
    pub target_capacity: Option<i64>,
}

Contains the parameters for ModifySpotFleetRequest.

Fields

Indicates whether running Spot Instances should be terminated if the target capacity of the Spot Fleet request is decreased below the current size of the Spot Fleet.

The ID of the Spot Fleet request.

The size of the fleet.

Trait Implementations

impl Default for ModifySpotFleetRequestRequest
[src]

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

impl Debug for ModifySpotFleetRequestRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ModifySpotFleetRequestRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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