pub struct ListNotificationRulesRequest {
pub filters: Option<Vec<ListNotificationRulesFilter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§filters: Option<Vec<ListNotificationRulesFilter>>
The filters to use to return information by service or resource type. For valid values, see ListNotificationRulesFilter.
A filter with the same name can appear more than once when used with OR statements. Filters with different names should be applied with AND statements.
max_results: Option<i64>
A non-negative integer used to limit the number of returned results. The maximum number of results that can be returned is 100.
next_token: Option<String>
An enumeration token that, when provided in a request, returns the next batch of the results.
Trait Implementations§
Source§impl Clone for ListNotificationRulesRequest
impl Clone for ListNotificationRulesRequest
Source§fn clone(&self) -> ListNotificationRulesRequest
fn clone(&self) -> ListNotificationRulesRequest
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 ListNotificationRulesRequest
impl Debug for ListNotificationRulesRequest
Source§impl Default for ListNotificationRulesRequest
impl Default for ListNotificationRulesRequest
Source§fn default() -> ListNotificationRulesRequest
fn default() -> ListNotificationRulesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListNotificationRulesRequest
impl PartialEq for ListNotificationRulesRequest
Source§fn eq(&self, other: &ListNotificationRulesRequest) -> bool
fn eq(&self, other: &ListNotificationRulesRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListNotificationRulesRequest
Auto Trait Implementations§
impl Freeze for ListNotificationRulesRequest
impl RefUnwindSafe for ListNotificationRulesRequest
impl Send for ListNotificationRulesRequest
impl Sync for ListNotificationRulesRequest
impl Unpin for ListNotificationRulesRequest
impl UnwindSafe for ListNotificationRulesRequest
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