#[non_exhaustive]pub struct CancelBundleTaskInput {
pub bundle_id: Option<String>,
pub dry_run: Option<bool>,
}
Expand description
Contains the parameters for CancelBundleTask.
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.bundle_id: Option<String>
The ID of the bundle task.
dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
Implementations§
source§impl CancelBundleTaskInput
impl CancelBundleTaskInput
sourcepub fn builder() -> CancelBundleTaskInputBuilder
pub fn builder() -> CancelBundleTaskInputBuilder
Creates a new builder-style object to manufacture CancelBundleTaskInput
.
Trait Implementations§
source§impl Clone for CancelBundleTaskInput
impl Clone for CancelBundleTaskInput
source§fn clone(&self) -> CancelBundleTaskInput
fn clone(&self) -> CancelBundleTaskInput
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 CancelBundleTaskInput
impl Debug for CancelBundleTaskInput
source§impl PartialEq<CancelBundleTaskInput> for CancelBundleTaskInput
impl PartialEq<CancelBundleTaskInput> for CancelBundleTaskInput
source§fn eq(&self, other: &CancelBundleTaskInput) -> bool
fn eq(&self, other: &CancelBundleTaskInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CancelBundleTaskInput
Auto Trait Implementations§
impl RefUnwindSafe for CancelBundleTaskInput
impl Send for CancelBundleTaskInput
impl Sync for CancelBundleTaskInput
impl Unpin for CancelBundleTaskInput
impl UnwindSafe for CancelBundleTaskInput
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