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.