#[non_exhaustive]pub struct DeleteWorkGroupInput {
pub work_group: Option<String>,
pub recursive_delete_option: Option<bool>,
}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.work_group: Option<String>The unique name of the workgroup to delete.
recursive_delete_option: Option<bool>The option to delete the workgroup and its contents even if the workgroup contains any named queries, query executions, or notebooks.
Implementations§
source§impl DeleteWorkGroupInput
impl DeleteWorkGroupInput
sourcepub fn work_group(&self) -> Option<&str>
pub fn work_group(&self) -> Option<&str>
The unique name of the workgroup to delete.
sourcepub fn recursive_delete_option(&self) -> Option<bool>
pub fn recursive_delete_option(&self) -> Option<bool>
The option to delete the workgroup and its contents even if the workgroup contains any named queries, query executions, or notebooks.
source§impl DeleteWorkGroupInput
impl DeleteWorkGroupInput
sourcepub fn builder() -> DeleteWorkGroupInputBuilder
pub fn builder() -> DeleteWorkGroupInputBuilder
Creates a new builder-style object to manufacture DeleteWorkGroupInput.
Trait Implementations§
source§impl Clone for DeleteWorkGroupInput
impl Clone for DeleteWorkGroupInput
source§fn clone(&self) -> DeleteWorkGroupInput
fn clone(&self) -> DeleteWorkGroupInput
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 DeleteWorkGroupInput
impl Debug for DeleteWorkGroupInput
source§impl PartialEq<DeleteWorkGroupInput> for DeleteWorkGroupInput
impl PartialEq<DeleteWorkGroupInput> for DeleteWorkGroupInput
source§fn eq(&self, other: &DeleteWorkGroupInput) -> bool
fn eq(&self, other: &DeleteWorkGroupInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteWorkGroupInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteWorkGroupInput
impl Send for DeleteWorkGroupInput
impl Sync for DeleteWorkGroupInput
impl Unpin for DeleteWorkGroupInput
impl UnwindSafe for DeleteWorkGroupInput
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