pub struct ListRuleNamesByTargetInput {
pub target_arn: String,
pub event_bus_name: Option<String>,
pub next_token: Option<String>,
pub limit: Option<i32>,
}Expand description
Input for the ListRuleNamesByTarget operation.
Fields§
§target_arn: StringThe ARN of the target to list rules for.
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 ListRuleNamesByTargetInput
impl Clone for ListRuleNamesByTargetInput
Source§fn clone(&self) -> ListRuleNamesByTargetInput
fn clone(&self) -> ListRuleNamesByTargetInput
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 ListRuleNamesByTargetInput
impl Debug for ListRuleNamesByTargetInput
Source§impl Default for ListRuleNamesByTargetInput
impl Default for ListRuleNamesByTargetInput
Source§fn default() -> ListRuleNamesByTargetInput
fn default() -> ListRuleNamesByTargetInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListRuleNamesByTargetInput
impl<'de> Deserialize<'de> for ListRuleNamesByTargetInput
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 ListRuleNamesByTargetInput
impl RefUnwindSafe for ListRuleNamesByTargetInput
impl Send for ListRuleNamesByTargetInput
impl Sync for ListRuleNamesByTargetInput
impl Unpin for ListRuleNamesByTargetInput
impl UnsafeUnpin for ListRuleNamesByTargetInput
impl UnwindSafe for ListRuleNamesByTargetInput
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