Struct aws_sdk_dax::types::builders::EventBuilder
source · #[non_exhaustive]pub struct EventBuilder { /* private fields */ }Expand description
A builder for Event.
Implementations§
source§impl EventBuilder
impl EventBuilder
sourcepub fn source_name(self, input: impl Into<String>) -> Self
pub fn source_name(self, input: impl Into<String>) -> Self
The source of the event. For example, if the event occurred at the node level, the source would be the node ID.
sourcepub fn set_source_name(self, input: Option<String>) -> Self
pub fn set_source_name(self, input: Option<String>) -> Self
The source of the event. For example, if the event occurred at the node level, the source would be the node ID.
sourcepub fn source_type(self, input: SourceType) -> Self
pub fn source_type(self, input: SourceType) -> Self
Specifies the origin of this event - a cluster, a parameter group, a node ID, etc.
sourcepub fn set_source_type(self, input: Option<SourceType>) -> Self
pub fn set_source_type(self, input: Option<SourceType>) -> Self
Specifies the origin of this event - a cluster, a parameter group, a node ID, etc.
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
A user-defined message associated with the event.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
A user-defined message associated with the event.
Trait Implementations§
source§impl Clone for EventBuilder
impl Clone for EventBuilder
source§fn clone(&self) -> EventBuilder
fn clone(&self) -> EventBuilder
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 EventBuilder
impl Debug for EventBuilder
source§impl Default for EventBuilder
impl Default for EventBuilder
source§fn default() -> EventBuilder
fn default() -> EventBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<EventBuilder> for EventBuilder
impl PartialEq<EventBuilder> for EventBuilder
source§fn eq(&self, other: &EventBuilder) -> bool
fn eq(&self, other: &EventBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.