#[non_exhaustive]pub struct RecommendationRelatedEvent {
    pub name: Option<String>,
    pub resources: Option<Vec<RecommendationRelatedEventResource>>,
}Expand description
Information about an event that is related to a recommendation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String> The name of the event. This corresponds to the Name field in an Event object. 
resources: Option<Vec<RecommendationRelatedEventResource>> A ResourceCollection object that contains arrays of the names of Amazon Web Services CloudFormation stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. 
Implementations
sourceimpl RecommendationRelatedEvent
 
impl RecommendationRelatedEvent
sourcepub fn name(&self) -> Option<&str>
 
pub fn name(&self) -> Option<&str>
 The name of the event. This corresponds to the Name field in an Event object. 
sourcepub fn resources(&self) -> Option<&[RecommendationRelatedEventResource]>
 
pub fn resources(&self) -> Option<&[RecommendationRelatedEventResource]>
 A ResourceCollection object that contains arrays of the names of Amazon Web Services CloudFormation stacks. You can specify up to 500 Amazon Web Services CloudFormation stacks. 
sourceimpl RecommendationRelatedEvent
 
impl RecommendationRelatedEvent
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RecommendationRelatedEvent
Trait Implementations
sourceimpl Clone for RecommendationRelatedEvent
 
impl Clone for RecommendationRelatedEvent
sourcefn clone(&self) -> RecommendationRelatedEvent
 
fn clone(&self) -> RecommendationRelatedEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for RecommendationRelatedEvent
 
impl Debug for RecommendationRelatedEvent
sourceimpl PartialEq<RecommendationRelatedEvent> for RecommendationRelatedEvent
 
impl PartialEq<RecommendationRelatedEvent> for RecommendationRelatedEvent
sourcefn eq(&self, other: &RecommendationRelatedEvent) -> bool
 
fn eq(&self, other: &RecommendationRelatedEvent) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &RecommendationRelatedEvent) -> bool
 
fn ne(&self, other: &RecommendationRelatedEvent) -> bool
This method tests for !=.
impl StructuralPartialEq for RecommendationRelatedEvent
Auto Trait Implementations
impl RefUnwindSafe for RecommendationRelatedEvent
impl Send for RecommendationRelatedEvent
impl Sync for RecommendationRelatedEvent
impl Unpin for RecommendationRelatedEvent
impl UnwindSafe for RecommendationRelatedEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more