pub struct AwsEc2VolumeDetails {
pub attachments: Option<Vec<AwsEc2VolumeAttachment>>,
pub create_time: Option<String>,
pub encrypted: Option<bool>,
pub kms_key_id: Option<String>,
pub size: Option<i64>,
pub snapshot_id: Option<String>,
pub status: Option<String>,
}Expand description
Details about an EC2 volume.
Fields§
§attachments: Option<Vec<AwsEc2VolumeAttachment>>The volume attachments.
create_time: Option<String>The datetime when the volume was created.
encrypted: Option<bool>Whether the volume is encrypted.
kms_key_id: Option<String>The ARN of the AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the volume encryption key for the volume.
size: Option<i64>The size of the volume, in GiBs.
snapshot_id: Option<String>The snapshot from which the volume was created.
status: Option<String>The volume state.
Trait Implementations§
Source§impl Clone for AwsEc2VolumeDetails
impl Clone for AwsEc2VolumeDetails
Source§fn clone(&self) -> AwsEc2VolumeDetails
fn clone(&self) -> AwsEc2VolumeDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AwsEc2VolumeDetails
impl Debug for AwsEc2VolumeDetails
Source§impl Default for AwsEc2VolumeDetails
impl Default for AwsEc2VolumeDetails
Source§fn default() -> AwsEc2VolumeDetails
fn default() -> AwsEc2VolumeDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsEc2VolumeDetails
impl<'de> Deserialize<'de> for AwsEc2VolumeDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsEc2VolumeDetails
impl PartialEq for AwsEc2VolumeDetails
Source§impl Serialize for AwsEc2VolumeDetails
impl Serialize for AwsEc2VolumeDetails
impl StructuralPartialEq for AwsEc2VolumeDetails
Auto Trait Implementations§
impl Freeze for AwsEc2VolumeDetails
impl RefUnwindSafe for AwsEc2VolumeDetails
impl Send for AwsEc2VolumeDetails
impl Sync for AwsEc2VolumeDetails
impl Unpin for AwsEc2VolumeDetails
impl UnwindSafe for AwsEc2VolumeDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more