pub struct ListRulesInput {
pub name_prefix: Option<String>,
pub event_bus_name: Option<String>,
pub next_token: Option<String>,
pub limit: Option<i32>,
}Expand description
Input for the ListRules operation.
Fields§
§name_prefix: Option<String>Prefix to filter rule names.
event_bus_name: Option<String>The name of the event bus associated with the rules.
next_token: Option<String>The token for the next set of results.
limit: Option<i32>The maximum number of results to return.
Trait Implementations§
Source§impl Clone for ListRulesInput
impl Clone for ListRulesInput
Source§fn clone(&self) -> ListRulesInput
fn clone(&self) -> ListRulesInput
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 ListRulesInput
impl Debug for ListRulesInput
Source§impl Default for ListRulesInput
impl Default for ListRulesInput
Source§fn default() -> ListRulesInput
fn default() -> ListRulesInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListRulesInput
impl<'de> Deserialize<'de> for ListRulesInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ListRulesInput
impl RefUnwindSafe for ListRulesInput
impl Send for ListRulesInput
impl Sync for ListRulesInput
impl Unpin for ListRulesInput
impl UnsafeUnpin for ListRulesInput
impl UnwindSafe for ListRulesInput
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