pub struct ListArchiveRulesRequest {
pub analyzer_name: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Expand description
Retrieves a list of archive rules created for the specified analyzer.
Fields§
§analyzer_name: String
The name of the analyzer to retrieve rules from.
max_results: Option<i64>
The maximum number of results to return in the request.
next_token: Option<String>
A token used for pagination of results returned.
Trait Implementations§
Source§impl Clone for ListArchiveRulesRequest
impl Clone for ListArchiveRulesRequest
Source§fn clone(&self) -> ListArchiveRulesRequest
fn clone(&self) -> ListArchiveRulesRequest
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 ListArchiveRulesRequest
impl Debug for ListArchiveRulesRequest
Source§impl Default for ListArchiveRulesRequest
impl Default for ListArchiveRulesRequest
Source§fn default() -> ListArchiveRulesRequest
fn default() -> ListArchiveRulesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListArchiveRulesRequest
impl PartialEq for ListArchiveRulesRequest
Source§impl Serialize for ListArchiveRulesRequest
impl Serialize for ListArchiveRulesRequest
impl StructuralPartialEq for ListArchiveRulesRequest
Auto Trait Implementations§
impl Freeze for ListArchiveRulesRequest
impl RefUnwindSafe for ListArchiveRulesRequest
impl Send for ListArchiveRulesRequest
impl Sync for ListArchiveRulesRequest
impl Unpin for ListArchiveRulesRequest
impl UnwindSafe for ListArchiveRulesRequest
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