pub struct UpdateArchiveRuleRequest {
pub analyzer_name: String,
pub client_token: Option<String>,
pub filter: HashMap<String, Criterion>,
pub rule_name: String,
}
Expand description
Updates the specified archive rule.
Fields§
§analyzer_name: String
The name of the analyzer to update the archive rules for.
client_token: Option<String>
A client token.
filter: HashMap<String, Criterion>
A filter to match for the rules to update. Only rules that match the filter are updated.
rule_name: String
The name of the rule to update.
Trait Implementations§
Source§impl Clone for UpdateArchiveRuleRequest
impl Clone for UpdateArchiveRuleRequest
Source§fn clone(&self) -> UpdateArchiveRuleRequest
fn clone(&self) -> UpdateArchiveRuleRequest
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 UpdateArchiveRuleRequest
impl Debug for UpdateArchiveRuleRequest
Source§impl Default for UpdateArchiveRuleRequest
impl Default for UpdateArchiveRuleRequest
Source§fn default() -> UpdateArchiveRuleRequest
fn default() -> UpdateArchiveRuleRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateArchiveRuleRequest
impl PartialEq for UpdateArchiveRuleRequest
Source§impl Serialize for UpdateArchiveRuleRequest
impl Serialize for UpdateArchiveRuleRequest
impl StructuralPartialEq for UpdateArchiveRuleRequest
Auto Trait Implementations§
impl Freeze for UpdateArchiveRuleRequest
impl RefUnwindSafe for UpdateArchiveRuleRequest
impl Send for UpdateArchiveRuleRequest
impl Sync for UpdateArchiveRuleRequest
impl Unpin for UpdateArchiveRuleRequest
impl UnwindSafe for UpdateArchiveRuleRequest
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