[][src]Struct rusoto_ec2::SpotFleetLaunchSpecification

pub struct SpotFleetLaunchSpecification {
    pub addressing_type: Option<String>,
    pub block_device_mappings: Option<Vec<BlockDeviceMapping>>,
    pub ebs_optimized: Option<bool>,
    pub iam_instance_profile: Option<IamInstanceProfileSpecification>,
    pub image_id: Option<String>,
    pub instance_type: Option<String>,
    pub kernel_id: Option<String>,
    pub key_name: Option<String>,
    pub monitoring: Option<SpotFleetMonitoring>,
    pub network_interfaces: Option<Vec<InstanceNetworkInterfaceSpecification>>,
    pub placement: Option<SpotPlacement>,
    pub ramdisk_id: Option<String>,
    pub security_groups: Option<Vec<GroupIdentifier>>,
    pub spot_price: Option<String>,
    pub subnet_id: Option<String>,
    pub tag_specifications: Option<Vec<SpotFleetTagSpecification>>,
    pub user_data: Option<String>,
    pub weighted_capacity: Option<f64>,
}

Describes the launch specification for one or more Spot Instances. If you include On-Demand capacity in your fleet request, you can't use SpotFleetLaunchSpecification; you must use LaunchTemplateConfig.

Fields

addressing_type: Option<String>

Deprecated.

block_device_mappings: Option<Vec<BlockDeviceMapping>>

One or more block devices that are mapped to the Spot instances. You can't specify both a snapshot ID and an encryption value. This is because only blank volumes can be encrypted on creation. If a snapshot is the basis for a volume, it is not blank and its encryption status is used for the volume encryption status.

ebs_optimized: Option<bool>

Indicates whether the instances are optimized for EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal EBS I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS Optimized instance.

Default: false

iam_instance_profile: Option<IamInstanceProfileSpecification>

The IAM instance profile.

image_id: Option<String>

The ID of the AMI.

instance_type: Option<String>

The instance type.

kernel_id: Option<String>

The ID of the kernel.

key_name: Option<String>

The name of the key pair.

monitoring: Option<SpotFleetMonitoring>

Enable or disable monitoring for the instances.

network_interfaces: Option<Vec<InstanceNetworkInterfaceSpecification>>

One or more network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface.

placement: Option<SpotPlacement>

The placement information.

ramdisk_id: Option<String>

The ID of the RAM disk. Some kernels require additional drivers at launch. Check the kernel requirements for information about whether you need to specify a RAM disk. To find kernel requirements, refer to the AWS Resource Center and search for the kernel ID.

security_groups: Option<Vec<GroupIdentifier>>

One or more security groups. When requesting instances in a VPC, you must specify the IDs of the security groups. When requesting instances in EC2-Classic, you can specify the names or the IDs of the security groups.

spot_price: Option<String>

The maximum price per unit hour that you are willing to pay for a Spot Instance. If this value is not specified, the default is the Spot price specified for the fleet. To determine the Spot price per unit hour, divide the Spot price by the value of WeightedCapacity.

subnet_id: Option<String>

The ID of the subnet in which to launch the instances. To specify multiple subnets, separate them using commas; for example, "subnet-a61dafcf, subnet-65ea5f08".

tag_specifications: Option<Vec<SpotFleetTagSpecification>>

The tags to apply during creation.

user_data: Option<String>

The Base64-encoded user data that instances use when starting up.

weighted_capacity: Option<f64>

The number of units provided by the specified instance type. These are the same units that you chose to set the target capacity in terms of instances, or a performance characteristic such as vCPUs, memory, or I/O.

If the target capacity divided by this value is not a whole number, Amazon EC2 rounds the number of instances to the next whole number. If this value is not specified, the default is 1.

Trait Implementations

impl PartialEq<SpotFleetLaunchSpecification> for SpotFleetLaunchSpecification[src]

impl Default for SpotFleetLaunchSpecification[src]

impl Clone for SpotFleetLaunchSpecification[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SpotFleetLaunchSpecification[src]

Auto Trait Implementations

impl Send for SpotFleetLaunchSpecification

impl Sync for SpotFleetLaunchSpecification

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self