#[non_exhaustive]pub struct DeleteRuleGroupsNamespaceInput {
pub workspace_id: Option<String>,
pub name: Option<String>,
pub client_token: Option<String>,
}
Expand description
Represents the input of a DeleteRuleGroupsNamespace operation.
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.workspace_id: Option<String>
The ID of the workspace to delete rule group definition.
name: Option<String>
The rule groups namespace name.
client_token: Option<String>
Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
Implementations§
source§impl DeleteRuleGroupsNamespaceInput
impl DeleteRuleGroupsNamespaceInput
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The ID of the workspace to delete rule group definition.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
source§impl DeleteRuleGroupsNamespaceInput
impl DeleteRuleGroupsNamespaceInput
sourcepub fn builder() -> DeleteRuleGroupsNamespaceInputBuilder
pub fn builder() -> DeleteRuleGroupsNamespaceInputBuilder
Creates a new builder-style object to manufacture DeleteRuleGroupsNamespaceInput
.
Trait Implementations§
source§impl Clone for DeleteRuleGroupsNamespaceInput
impl Clone for DeleteRuleGroupsNamespaceInput
source§fn clone(&self) -> DeleteRuleGroupsNamespaceInput
fn clone(&self) -> DeleteRuleGroupsNamespaceInput
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 PartialEq<DeleteRuleGroupsNamespaceInput> for DeleteRuleGroupsNamespaceInput
impl PartialEq<DeleteRuleGroupsNamespaceInput> for DeleteRuleGroupsNamespaceInput
source§fn eq(&self, other: &DeleteRuleGroupsNamespaceInput) -> bool
fn eq(&self, other: &DeleteRuleGroupsNamespaceInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteRuleGroupsNamespaceInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteRuleGroupsNamespaceInput
impl Send for DeleteRuleGroupsNamespaceInput
impl Sync for DeleteRuleGroupsNamespaceInput
impl Unpin for DeleteRuleGroupsNamespaceInput
impl UnwindSafe for DeleteRuleGroupsNamespaceInput
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