Struct aws_sdk_mgn::operation::create_wave::CreateWaveOutput
source · #[non_exhaustive]pub struct CreateWaveOutput {
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>>,
/* private fields */
}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 CreateWaveOutput
impl CreateWaveOutput
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.
source§impl CreateWaveOutput
impl CreateWaveOutput
sourcepub fn builder() -> CreateWaveOutputBuilder
pub fn builder() -> CreateWaveOutputBuilder
Creates a new builder-style object to manufacture CreateWaveOutput.
Trait Implementations§
source§impl Clone for CreateWaveOutput
impl Clone for CreateWaveOutput
source§fn clone(&self) -> CreateWaveOutput
fn clone(&self) -> CreateWaveOutput
Returns a copy 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 CreateWaveOutput
impl Debug for CreateWaveOutput
source§impl PartialEq for CreateWaveOutput
impl PartialEq for CreateWaveOutput
source§fn eq(&self, other: &CreateWaveOutput) -> bool
fn eq(&self, other: &CreateWaveOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateWaveOutput
impl RequestId for CreateWaveOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for CreateWaveOutput
Auto Trait Implementations§
impl Freeze for CreateWaveOutput
impl RefUnwindSafe for CreateWaveOutput
impl Send for CreateWaveOutput
impl Sync for CreateWaveOutput
impl Unpin for CreateWaveOutput
impl UnwindSafe for CreateWaveOutput
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.