pub struct ListSubscriptionsByTopicInput {
pub next_token: Option<String>,
pub topic_arn: String,
}Expand description
Input for ListSubscriptionsByTopic action.
Fields§
§next_token: Option<String>Token returned by the previous ListSubscriptionsByTopic request.
topic_arn: StringThe ARN of the topic for which you wish to find subscriptions.
Trait Implementations§
Source§impl Clone for ListSubscriptionsByTopicInput
impl Clone for ListSubscriptionsByTopicInput
Source§fn clone(&self) -> ListSubscriptionsByTopicInput
fn clone(&self) -> ListSubscriptionsByTopicInput
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 Default for ListSubscriptionsByTopicInput
impl Default for ListSubscriptionsByTopicInput
Source§fn default() -> ListSubscriptionsByTopicInput
fn default() -> ListSubscriptionsByTopicInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListSubscriptionsByTopicInput
impl PartialEq for ListSubscriptionsByTopicInput
Source§fn eq(&self, other: &ListSubscriptionsByTopicInput) -> bool
fn eq(&self, other: &ListSubscriptionsByTopicInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListSubscriptionsByTopicInput
Auto Trait Implementations§
impl Freeze for ListSubscriptionsByTopicInput
impl RefUnwindSafe for ListSubscriptionsByTopicInput
impl Send for ListSubscriptionsByTopicInput
impl Sync for ListSubscriptionsByTopicInput
impl Unpin for ListSubscriptionsByTopicInput
impl UnwindSafe for ListSubscriptionsByTopicInput
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