pub struct AwsEc2VolumeAttachment {
pub attach_time: Option<String>,
pub delete_on_termination: Option<bool>,
pub instance_id: Option<String>,
pub status: Option<String>,
}Expand description
An attachment to an AWS EC2 volume.
Fields§
§attach_time: Option<String>The datetime when the attachment initiated.
delete_on_termination: Option<bool>Whether the EBS volume is deleted when the EC2 instance is terminated.
instance_id: Option<String>The identifier of the EC2 instance.
status: Option<String>The attachment state of the volume.
Trait Implementations§
Source§impl Clone for AwsEc2VolumeAttachment
impl Clone for AwsEc2VolumeAttachment
Source§fn clone(&self) -> AwsEc2VolumeAttachment
fn clone(&self) -> AwsEc2VolumeAttachment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AwsEc2VolumeAttachment
impl Debug for AwsEc2VolumeAttachment
Source§impl Default for AwsEc2VolumeAttachment
impl Default for AwsEc2VolumeAttachment
Source§fn default() -> AwsEc2VolumeAttachment
fn default() -> AwsEc2VolumeAttachment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsEc2VolumeAttachment
impl<'de> Deserialize<'de> for AwsEc2VolumeAttachment
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 AwsEc2VolumeAttachment
impl PartialEq for AwsEc2VolumeAttachment
Source§fn eq(&self, other: &AwsEc2VolumeAttachment) -> bool
fn eq(&self, other: &AwsEc2VolumeAttachment) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AwsEc2VolumeAttachment
impl Serialize for AwsEc2VolumeAttachment
impl StructuralPartialEq for AwsEc2VolumeAttachment
Auto Trait Implementations§
impl Freeze for AwsEc2VolumeAttachment
impl RefUnwindSafe for AwsEc2VolumeAttachment
impl Send for AwsEc2VolumeAttachment
impl Sync for AwsEc2VolumeAttachment
impl Unpin for AwsEc2VolumeAttachment
impl UnsafeUnpin for AwsEc2VolumeAttachment
impl UnwindSafe for AwsEc2VolumeAttachment
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