#[non_exhaustive]pub struct DeleteQueuedResourceRequest {
pub name: String,
pub request_id: String,
pub force: bool,
/* private fields */
}Expand description
Request for DeleteQueuedResource.
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.name: StringRequired. The resource name.
request_id: StringOptional. Idempotent request UUID.
force: boolOptional. If set to true, all running nodes belonging to this queued resource will be deleted first and then the queued resource will be deleted. Otherwise (i.e. force=false), the queued resource will only be deleted if its nodes have already been deleted or the queued resource is in the ACCEPTED, FAILED, or SUSPENDED state.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteQueuedResourceRequest
impl Clone for DeleteQueuedResourceRequest
Source§fn clone(&self) -> DeleteQueuedResourceRequest
fn clone(&self) -> DeleteQueuedResourceRequest
Returns a duplicate 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 DeleteQueuedResourceRequest
impl Debug for DeleteQueuedResourceRequest
Source§impl Default for DeleteQueuedResourceRequest
impl Default for DeleteQueuedResourceRequest
Source§fn default() -> DeleteQueuedResourceRequest
fn default() -> DeleteQueuedResourceRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteQueuedResourceRequest
Auto Trait Implementations§
impl Freeze for DeleteQueuedResourceRequest
impl RefUnwindSafe for DeleteQueuedResourceRequest
impl Send for DeleteQueuedResourceRequest
impl Sync for DeleteQueuedResourceRequest
impl Unpin for DeleteQueuedResourceRequest
impl UnsafeUnpin for DeleteQueuedResourceRequest
impl UnwindSafe for DeleteQueuedResourceRequest
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