Struct aws_sdk_securityhub::model::AwsEc2VolumeDetails
source · [−]#[non_exhaustive]pub struct AwsEc2VolumeDetails {
pub create_time: Option<String>,
pub encrypted: bool,
pub size: i32,
pub snapshot_id: Option<String>,
pub status: Option<String>,
pub kms_key_id: Option<String>,
pub attachments: Option<Vec<AwsEc2VolumeAttachment>>,
}
Expand description
Details about an EC2 volume.
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.create_time: Option<String>
Indicates when the volume was created.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
encrypted: bool
Whether the volume is encrypted.
size: i32
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.
kms_key_id: Option<String>
The ARN of the KMS key that was used to protect the volume encryption key for the volume.
attachments: Option<Vec<AwsEc2VolumeAttachment>>
The volume attachments.
Implementations
sourceimpl AwsEc2VolumeDetails
impl AwsEc2VolumeDetails
sourcepub fn create_time(&self) -> Option<&str>
pub fn create_time(&self) -> Option<&str>
Indicates when the volume was created.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
sourcepub fn snapshot_id(&self) -> Option<&str>
pub fn snapshot_id(&self) -> Option<&str>
The snapshot from which the volume was created.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The ARN of the KMS key that was used to protect the volume encryption key for the volume.
sourcepub fn attachments(&self) -> Option<&[AwsEc2VolumeAttachment]>
pub fn attachments(&self) -> Option<&[AwsEc2VolumeAttachment]>
The volume attachments.
sourceimpl AwsEc2VolumeDetails
impl AwsEc2VolumeDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsEc2VolumeDetails
Trait Implementations
sourceimpl Clone for AwsEc2VolumeDetails
impl Clone for AwsEc2VolumeDetails
sourcefn clone(&self) -> AwsEc2VolumeDetails
fn clone(&self) -> AwsEc2VolumeDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AwsEc2VolumeDetails
impl Debug for AwsEc2VolumeDetails
sourceimpl PartialEq<AwsEc2VolumeDetails> for AwsEc2VolumeDetails
impl PartialEq<AwsEc2VolumeDetails> for AwsEc2VolumeDetails
sourcefn eq(&self, other: &AwsEc2VolumeDetails) -> bool
fn eq(&self, other: &AwsEc2VolumeDetails) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AwsEc2VolumeDetails) -> bool
fn ne(&self, other: &AwsEc2VolumeDetails) -> bool
This method tests for !=
.
impl StructuralPartialEq for AwsEc2VolumeDetails
Auto Trait Implementations
impl RefUnwindSafe for AwsEc2VolumeDetails
impl Send for AwsEc2VolumeDetails
impl Sync for AwsEc2VolumeDetails
impl Unpin for AwsEc2VolumeDetails
impl UnwindSafe for AwsEc2VolumeDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more