[][src]Struct rusoto_ec2::ScheduledInstancesLaunchSpecification

pub struct ScheduledInstancesLaunchSpecification {
    pub block_device_mappings: Option<Vec<ScheduledInstancesBlockDeviceMapping>>,
    pub ebs_optimized: Option<bool>,
    pub iam_instance_profile: Option<ScheduledInstancesIamInstanceProfile>,
    pub image_id: String,
    pub instance_type: Option<String>,
    pub kernel_id: Option<String>,
    pub key_name: Option<String>,
    pub monitoring: Option<ScheduledInstancesMonitoring>,
    pub network_interfaces: Option<Vec<ScheduledInstancesNetworkInterface>>,
    pub placement: Option<ScheduledInstancesPlacement>,
    pub ramdisk_id: Option<String>,
    pub security_group_ids: Option<Vec<String>>,
    pub subnet_id: Option<String>,
    pub user_data: Option<String>,
}

Describes the launch specification for a Scheduled Instance.

If you are launching the Scheduled Instance in EC2-VPC, you must specify the ID of the subnet. You can specify the subnet using either SubnetId or NetworkInterface.

Fields

One or more block device mapping entries.

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

The IAM instance profile.

The ID of the Amazon Machine Image (AMI).

The instance type.

The ID of the kernel.

The name of the key pair.

Enable or disable monitoring for the instances.

One or more network interfaces.

The placement information.

The ID of the RAM disk.

The IDs of one or more security groups.

The ID of the subnet in which to launch the instances.

The base64-encoded MIME user data.

Trait Implementations

impl Default for ScheduledInstancesLaunchSpecification
[src]

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

impl PartialEq<ScheduledInstancesLaunchSpecification> for ScheduledInstancesLaunchSpecification
[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 ScheduledInstancesLaunchSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ScheduledInstancesLaunchSpecification
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

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