#[non_exhaustive]pub struct UpdateDomainConfigOutput {
pub domain_config: Option<DomainConfig>,
pub dry_run_results: Option<DryRunResults>,
pub dry_run_progress_status: Option<DryRunProgressStatus>,
/* private fields */
}
Expand description
The results of an UpdateDomain
request. Contains the status of the domain being updated.
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.domain_config: Option<DomainConfig>
The status of the updated domain.
dry_run_results: Option<DryRunResults>
Results of the dry run performed in the update domain request.
dry_run_progress_status: Option<DryRunProgressStatus>
The status of the dry run being performed on the domain, if any.
Implementations§
source§impl UpdateDomainConfigOutput
impl UpdateDomainConfigOutput
sourcepub fn domain_config(&self) -> Option<&DomainConfig>
pub fn domain_config(&self) -> Option<&DomainConfig>
The status of the updated domain.
sourcepub fn dry_run_results(&self) -> Option<&DryRunResults>
pub fn dry_run_results(&self) -> Option<&DryRunResults>
Results of the dry run performed in the update domain request.
sourcepub fn dry_run_progress_status(&self) -> Option<&DryRunProgressStatus>
pub fn dry_run_progress_status(&self) -> Option<&DryRunProgressStatus>
The status of the dry run being performed on the domain, if any.
source§impl UpdateDomainConfigOutput
impl UpdateDomainConfigOutput
sourcepub fn builder() -> UpdateDomainConfigOutputBuilder
pub fn builder() -> UpdateDomainConfigOutputBuilder
Creates a new builder-style object to manufacture UpdateDomainConfigOutput
.
Trait Implementations§
source§impl Clone for UpdateDomainConfigOutput
impl Clone for UpdateDomainConfigOutput
source§fn clone(&self) -> UpdateDomainConfigOutput
fn clone(&self) -> UpdateDomainConfigOutput
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 UpdateDomainConfigOutput
impl Debug for UpdateDomainConfigOutput
source§impl PartialEq for UpdateDomainConfigOutput
impl PartialEq for UpdateDomainConfigOutput
source§fn eq(&self, other: &UpdateDomainConfigOutput) -> bool
fn eq(&self, other: &UpdateDomainConfigOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for UpdateDomainConfigOutput
impl RequestId for UpdateDomainConfigOutput
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 UpdateDomainConfigOutput
Auto Trait Implementations§
impl Freeze for UpdateDomainConfigOutput
impl RefUnwindSafe for UpdateDomainConfigOutput
impl Send for UpdateDomainConfigOutput
impl Sync for UpdateDomainConfigOutput
impl Unpin for UpdateDomainConfigOutput
impl UnwindSafe for UpdateDomainConfigOutput
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.