Struct aws_sdk_migrationhub::operation::notify_application_state::NotifyApplicationStateInput   
source · #[non_exhaustive]pub struct NotifyApplicationStateInput {
    pub application_id: Option<String>,
    pub status: Option<ApplicationStatus>,
    pub update_date_time: Option<DateTime>,
    pub dry_run: Option<bool>,
}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.application_id: Option<String>The configurationId in Application Discovery Service that uniquely identifies the grouped application.
status: Option<ApplicationStatus>Status of the application - Not Started, In-Progress, Complete.
update_date_time: Option<DateTime>The timestamp when the application state changed.
dry_run: Option<bool>Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.
Implementations§
source§impl NotifyApplicationStateInput
 
impl NotifyApplicationStateInput
sourcepub fn application_id(&self) -> Option<&str>
 
pub fn application_id(&self) -> Option<&str>
The configurationId in Application Discovery Service that uniquely identifies the grouped application.
sourcepub fn status(&self) -> Option<&ApplicationStatus>
 
pub fn status(&self) -> Option<&ApplicationStatus>
Status of the application - Not Started, In-Progress, Complete.
sourcepub fn update_date_time(&self) -> Option<&DateTime>
 
pub fn update_date_time(&self) -> Option<&DateTime>
The timestamp when the application state changed.
source§impl NotifyApplicationStateInput
 
impl NotifyApplicationStateInput
sourcepub fn builder() -> NotifyApplicationStateInputBuilder
 
pub fn builder() -> NotifyApplicationStateInputBuilder
Creates a new builder-style object to manufacture NotifyApplicationStateInput.
Trait Implementations§
source§impl Clone for NotifyApplicationStateInput
 
impl Clone for NotifyApplicationStateInput
source§fn clone(&self) -> NotifyApplicationStateInput
 
fn clone(&self) -> NotifyApplicationStateInput
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 NotifyApplicationStateInput
 
impl Debug for NotifyApplicationStateInput
source§impl PartialEq for NotifyApplicationStateInput
 
impl PartialEq for NotifyApplicationStateInput
source§fn eq(&self, other: &NotifyApplicationStateInput) -> bool
 
fn eq(&self, other: &NotifyApplicationStateInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NotifyApplicationStateInput
Auto Trait Implementations§
impl RefUnwindSafe for NotifyApplicationStateInput
impl Send for NotifyApplicationStateInput
impl Sync for NotifyApplicationStateInput
impl Unpin for NotifyApplicationStateInput
impl UnwindSafe for NotifyApplicationStateInput
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.