#[non_exhaustive]pub struct DescribeEventTopicsOutput {
pub event_topics: Option<Vec<EventTopic>>,
/* private fields */
}Expand description
The result of a DescribeEventTopic request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.event_topics: Option<Vec<EventTopic>>A list of Amazon SNS topic names that receive status messages from the specified Directory ID.
Implementations§
source§impl DescribeEventTopicsOutput
impl DescribeEventTopicsOutput
sourcepub fn event_topics(&self) -> &[EventTopic]
pub fn event_topics(&self) -> &[EventTopic]
A list of Amazon SNS topic names that receive status messages from the specified Directory ID.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .event_topics.is_none().
source§impl DescribeEventTopicsOutput
impl DescribeEventTopicsOutput
sourcepub fn builder() -> DescribeEventTopicsOutputBuilder
pub fn builder() -> DescribeEventTopicsOutputBuilder
Creates a new builder-style object to manufacture DescribeEventTopicsOutput.
Trait Implementations§
source§impl Clone for DescribeEventTopicsOutput
impl Clone for DescribeEventTopicsOutput
source§fn clone(&self) -> DescribeEventTopicsOutput
fn clone(&self) -> DescribeEventTopicsOutput
Returns a copy 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 DescribeEventTopicsOutput
impl Debug for DescribeEventTopicsOutput
source§impl PartialEq for DescribeEventTopicsOutput
impl PartialEq for DescribeEventTopicsOutput
source§fn eq(&self, other: &DescribeEventTopicsOutput) -> bool
fn eq(&self, other: &DescribeEventTopicsOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeEventTopicsOutput
impl RequestId for DescribeEventTopicsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for DescribeEventTopicsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeEventTopicsOutput
impl Send for DescribeEventTopicsOutput
impl Sync for DescribeEventTopicsOutput
impl Unpin for DescribeEventTopicsOutput
impl UnwindSafe for DescribeEventTopicsOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.