Struct aws_sdk_mgn::types::Wave
source · #[non_exhaustive]pub struct Wave {
pub wave_id: Option<String>,
pub arn: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub is_archived: Option<bool>,
pub wave_aggregated_status: Option<WaveAggregatedStatus>,
pub creation_date_time: Option<String>,
pub last_modified_date_time: Option<String>,
pub tags: Option<HashMap<String, String>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.wave_id: Option<String>
Wave ID.
arn: Option<String>
Wave ARN.
name: Option<String>
Wave name.
description: Option<String>
Wave description.
is_archived: Option<bool>
Wave archival status.
wave_aggregated_status: Option<WaveAggregatedStatus>
Wave aggregated status.
creation_date_time: Option<String>
Wave creation dateTime.
last_modified_date_time: Option<String>
Wave last modified dateTime.
Wave tags.
Implementations§
source§impl Wave
impl Wave
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Wave description.
sourcepub fn is_archived(&self) -> Option<bool>
pub fn is_archived(&self) -> Option<bool>
Wave archival status.
sourcepub fn wave_aggregated_status(&self) -> Option<&WaveAggregatedStatus>
pub fn wave_aggregated_status(&self) -> Option<&WaveAggregatedStatus>
Wave aggregated status.
sourcepub fn creation_date_time(&self) -> Option<&str>
pub fn creation_date_time(&self) -> Option<&str>
Wave creation dateTime.
sourcepub fn last_modified_date_time(&self) -> Option<&str>
pub fn last_modified_date_time(&self) -> Option<&str>
Wave last modified dateTime.
Wave tags.
Trait Implementations§
source§impl PartialEq for Wave
impl PartialEq for Wave
impl StructuralPartialEq for Wave
Auto Trait Implementations§
impl RefUnwindSafe for Wave
impl Send for Wave
impl Sync for Wave
impl Unpin for Wave
impl UnwindSafe for Wave
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.