#[non_exhaustive]pub struct EventCategoryGroup { /* private fields */ }
Expand description
Lists categories of events subscribed to, and generated by, the applicable DMS resource type. This data type appears in response to the DescribeEventCategories
action.
Implementations§
source§impl EventCategoryGroup
impl EventCategoryGroup
sourcepub fn source_type(&self) -> Option<&str>
pub fn source_type(&self) -> Option<&str>
The type of DMS resource that generates events.
Valid values: replication-instance | replication-server | security-group | replication-task
sourcepub fn event_categories(&self) -> Option<&[String]>
pub fn event_categories(&self) -> Option<&[String]>
A list of event categories from a source type that you've chosen.
source§impl EventCategoryGroup
impl EventCategoryGroup
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EventCategoryGroup
.
Trait Implementations§
source§impl Clone for EventCategoryGroup
impl Clone for EventCategoryGroup
source§fn clone(&self) -> EventCategoryGroup
fn clone(&self) -> EventCategoryGroup
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 EventCategoryGroup
impl Debug for EventCategoryGroup
source§impl PartialEq<EventCategoryGroup> for EventCategoryGroup
impl PartialEq<EventCategoryGroup> for EventCategoryGroup
source§fn eq(&self, other: &EventCategoryGroup) -> bool
fn eq(&self, other: &EventCategoryGroup) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.