pub struct DescribeEventTopicsRequest {
pub directory_id: Option<String>,
pub topic_names: Option<Vec<String>>,
}
Expand description
Describes event topics.
Fields§
§directory_id: Option<String>
The Directory ID for which to get the list of associated SNS topics. If this member is null, associations for all Directory IDs are returned.
topic_names: Option<Vec<String>>
A list of SNS topic names for which to obtain the information. If this member is null, all associations for the specified Directory ID are returned.
An empty list results in an InvalidParameterException
being thrown.
Trait Implementations§
Source§impl Clone for DescribeEventTopicsRequest
impl Clone for DescribeEventTopicsRequest
Source§fn clone(&self) -> DescribeEventTopicsRequest
fn clone(&self) -> DescribeEventTopicsRequest
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 DescribeEventTopicsRequest
impl Debug for DescribeEventTopicsRequest
Source§impl Default for DescribeEventTopicsRequest
impl Default for DescribeEventTopicsRequest
Source§fn default() -> DescribeEventTopicsRequest
fn default() -> DescribeEventTopicsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DescribeEventTopicsRequest
Auto Trait Implementations§
impl Freeze for DescribeEventTopicsRequest
impl RefUnwindSafe for DescribeEventTopicsRequest
impl Send for DescribeEventTopicsRequest
impl Sync for DescribeEventTopicsRequest
impl Unpin for DescribeEventTopicsRequest
impl UnwindSafe for DescribeEventTopicsRequest
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