Struct aws_sdk_ec2::model::ScheduledInstancesEbs [−][src]
#[non_exhaustive]pub struct ScheduledInstancesEbs {
pub delete_on_termination: Option<bool>,
pub encrypted: Option<bool>,
pub iops: Option<i32>,
pub snapshot_id: Option<String>,
pub volume_size: Option<i32>,
pub volume_type: Option<String>,
}
Expand description
Describes an EBS volume for a Scheduled Instance.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.delete_on_termination: Option<bool>
Indicates whether the volume is deleted on instance termination.
encrypted: Option<bool>
Indicates whether the volume is encrypted. You can attached encrypted volumes only to instances that support them.
iops: Option<i32>
The number of I/O operations per second (IOPS) to provision for an io1
or io2
volume, with a maximum
ratio of 50 IOPS/GiB for io1
, and 500 IOPS/GiB for io2
. Range is 100 to 64,000 IOPS for
volumes in most Regions. Maximum IOPS of 64,000 is guaranteed only on
instances built on the Nitro System. Other instance families guarantee performance up to
32,000 IOPS. For more information, see Amazon EBS volume types in the
Amazon EC2 User Guide.
This parameter is valid only for Provisioned IOPS SSD (io1
and io2
) volumes.
snapshot_id: Option<String>
The ID of the snapshot.
volume_size: Option<i32>
The size of the volume, in GiB.
Default: If you're creating the volume from a snapshot and don't specify a volume size, the default is the snapshot size.
volume_type: Option<String>
The volume type. gp2
for General Purpose SSD, io1
or io2
for Provisioned IOPS SSD, Throughput Optimized HDD
for st1
, Cold HDD for sc1
, or standard
for
Magnetic.
Default: gp2
Implementations
Indicates whether the volume is deleted on instance termination.
Indicates whether the volume is encrypted. You can attached encrypted volumes only to instances that support them.
The number of I/O operations per second (IOPS) to provision for an io1
or io2
volume, with a maximum
ratio of 50 IOPS/GiB for io1
, and 500 IOPS/GiB for io2
. Range is 100 to 64,000 IOPS for
volumes in most Regions. Maximum IOPS of 64,000 is guaranteed only on
instances built on the Nitro System. Other instance families guarantee performance up to
32,000 IOPS. For more information, see Amazon EBS volume types in the
Amazon EC2 User Guide.
This parameter is valid only for Provisioned IOPS SSD (io1
and io2
) volumes.
The ID of the snapshot.
The size of the volume, in GiB.
Default: If you're creating the volume from a snapshot and don't specify a volume size, the default is the snapshot size.
The volume type. gp2
for General Purpose SSD, io1
or io2
for Provisioned IOPS SSD, Throughput Optimized HDD
for st1
, Cold HDD for sc1
, or standard
for
Magnetic.
Default: gp2
Creates a new builder-style object to manufacture ScheduledInstancesEbs
Trait Implementations
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 RefUnwindSafe for ScheduledInstancesEbs
impl Send for ScheduledInstancesEbs
impl Sync for ScheduledInstancesEbs
impl Unpin for ScheduledInstancesEbs
impl UnwindSafe for ScheduledInstancesEbs
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more