Struct aws_sdk_elasticsearch::model::EbsOptions [−][src]
#[non_exhaustive]pub struct EbsOptions {
pub ebs_enabled: Option<bool>,
pub volume_type: Option<VolumeType>,
pub volume_size: Option<i32>,
pub iops: Option<i32>,
}
Expand description
Options to enable, disable, and specify the properties of EBS storage volumes. For more information, see Configuring EBS-based Storage.
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.ebs_enabled: Option<bool>
Specifies whether EBS-based storage is enabled.
volume_type: Option<VolumeType>
Specifies the volume type for EBS-based storage.
volume_size: Option<i32>
Integer to specify the size of an EBS volume.
iops: Option<i32>
Specifies the IOPD for a Provisioned IOPS EBS volume (SSD).
Implementations
Specifies whether EBS-based storage is enabled.
Specifies the volume type for EBS-based storage.
Integer to specify the size of an EBS volume.
Creates a new builder-style object to manufacture EbsOptions
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 EbsOptions
impl Send for EbsOptions
impl Sync for EbsOptions
impl Unpin for EbsOptions
impl UnwindSafe for EbsOptions
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