Struct aws_sdk_elasticsearch::operation::cancel_domain_config_change::CancelDomainConfigChangeOutput
source · #[non_exhaustive]pub struct CancelDomainConfigChangeOutput {
pub dry_run: Option<bool>,
pub cancelled_change_ids: Option<Vec<String>>,
pub cancelled_change_properties: Option<Vec<CancelledChangeProperty>>,
/* private fields */
}
Expand description
Contains the details of the cancelled domain config change.
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.dry_run: Option<bool>
Whether or not the request was a dry run. If True, the changes were not actually cancelled.
cancelled_change_ids: Option<Vec<String>>
The unique identifiers of the changes that were cancelled.
cancelled_change_properties: Option<Vec<CancelledChangeProperty>>
The domain change properties that were cancelled.
Implementations§
source§impl CancelDomainConfigChangeOutput
impl CancelDomainConfigChangeOutput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
Whether or not the request was a dry run. If True, the changes were not actually cancelled.
sourcepub fn cancelled_change_ids(&self) -> &[String]
pub fn cancelled_change_ids(&self) -> &[String]
The unique identifiers of the changes that were cancelled.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .cancelled_change_ids.is_none()
.
sourcepub fn cancelled_change_properties(&self) -> &[CancelledChangeProperty]
pub fn cancelled_change_properties(&self) -> &[CancelledChangeProperty]
The domain change properties that were cancelled.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .cancelled_change_properties.is_none()
.
source§impl CancelDomainConfigChangeOutput
impl CancelDomainConfigChangeOutput
sourcepub fn builder() -> CancelDomainConfigChangeOutputBuilder
pub fn builder() -> CancelDomainConfigChangeOutputBuilder
Creates a new builder-style object to manufacture CancelDomainConfigChangeOutput
.
Trait Implementations§
source§impl Clone for CancelDomainConfigChangeOutput
impl Clone for CancelDomainConfigChangeOutput
source§fn clone(&self) -> CancelDomainConfigChangeOutput
fn clone(&self) -> CancelDomainConfigChangeOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CancelDomainConfigChangeOutput
impl PartialEq for CancelDomainConfigChangeOutput
source§fn eq(&self, other: &CancelDomainConfigChangeOutput) -> bool
fn eq(&self, other: &CancelDomainConfigChangeOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CancelDomainConfigChangeOutput
impl RequestId for CancelDomainConfigChangeOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for CancelDomainConfigChangeOutput
Auto Trait Implementations§
impl Freeze for CancelDomainConfigChangeOutput
impl RefUnwindSafe for CancelDomainConfigChangeOutput
impl Send for CancelDomainConfigChangeOutput
impl Sync for CancelDomainConfigChangeOutput
impl Unpin for CancelDomainConfigChangeOutput
impl UnwindSafe for CancelDomainConfigChangeOutput
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
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>
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>
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 more