pub struct ListTargetsByRuleInput {
pub rule: String,
pub event_bus_name: Option<String>,
pub next_token: Option<String>,
pub limit: Option<i32>,
}Expand description
Input for the ListTargetsByRule operation.
Fields§
§rule: StringThe name of the rule whose targets to list.
event_bus_name: Option<String>The name of the event bus associated with the rule.
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 ListTargetsByRuleInput
impl Clone for ListTargetsByRuleInput
Source§fn clone(&self) -> ListTargetsByRuleInput
fn clone(&self) -> ListTargetsByRuleInput
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 ListTargetsByRuleInput
impl Debug for ListTargetsByRuleInput
Source§impl Default for ListTargetsByRuleInput
impl Default for ListTargetsByRuleInput
Source§fn default() -> ListTargetsByRuleInput
fn default() -> ListTargetsByRuleInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTargetsByRuleInput
impl<'de> Deserialize<'de> for ListTargetsByRuleInput
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 ListTargetsByRuleInput
impl RefUnwindSafe for ListTargetsByRuleInput
impl Send for ListTargetsByRuleInput
impl Sync for ListTargetsByRuleInput
impl Unpin for ListTargetsByRuleInput
impl UnsafeUnpin for ListTargetsByRuleInput
impl UnwindSafe for ListTargetsByRuleInput
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