#[non_exhaustive]pub struct CancelFlowExecutionsOutput {
pub invalid_executions: Option<Vec<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.invalid_executions: Option<Vec<String>>
The IDs of runs that Amazon AppFlow couldn't cancel. These runs might be ineligible for canceling because they haven't started yet or have already completed.
Implementations§
source§impl CancelFlowExecutionsOutput
impl CancelFlowExecutionsOutput
sourcepub fn invalid_executions(&self) -> &[String]
pub fn invalid_executions(&self) -> &[String]
The IDs of runs that Amazon AppFlow couldn't cancel. These runs might be ineligible for canceling because they haven't started yet or have already completed.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .invalid_executions.is_none()
.
source§impl CancelFlowExecutionsOutput
impl CancelFlowExecutionsOutput
sourcepub fn builder() -> CancelFlowExecutionsOutputBuilder
pub fn builder() -> CancelFlowExecutionsOutputBuilder
Creates a new builder-style object to manufacture CancelFlowExecutionsOutput
.
Trait Implementations§
source§impl Clone for CancelFlowExecutionsOutput
impl Clone for CancelFlowExecutionsOutput
source§fn clone(&self) -> CancelFlowExecutionsOutput
fn clone(&self) -> CancelFlowExecutionsOutput
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 CancelFlowExecutionsOutput
impl Debug for CancelFlowExecutionsOutput
source§impl PartialEq for CancelFlowExecutionsOutput
impl PartialEq for CancelFlowExecutionsOutput
source§fn eq(&self, other: &CancelFlowExecutionsOutput) -> bool
fn eq(&self, other: &CancelFlowExecutionsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CancelFlowExecutionsOutput
impl RequestId for CancelFlowExecutionsOutput
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 CancelFlowExecutionsOutput
Auto Trait Implementations§
impl RefUnwindSafe for CancelFlowExecutionsOutput
impl Send for CancelFlowExecutionsOutput
impl Sync for CancelFlowExecutionsOutput
impl Unpin for CancelFlowExecutionsOutput
impl UnwindSafe for CancelFlowExecutionsOutput
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.