Struct aws_sdk_codeguruprofiler::model::Channel
source · [−]#[non_exhaustive]pub struct Channel { /* private fields */ }
Expand description
Notification medium for users to get alerted for events that occur in application profile. We support SNS topic as a notification channel.
Implementations
sourceimpl Channel
impl Channel
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
Unique identifier for each Channel
in the notification configuration of a Profiling Group. A random UUID for channelId is used when adding a channel to the notification configuration if not specified in the request.
sourcepub fn uri(&self) -> Option<&str>
pub fn uri(&self) -> Option<&str>
Unique arn of the resource to be used for notifications. We support a valid SNS topic arn as a channel uri.
sourcepub fn event_publishers(&self) -> Option<&Vec<EventPublisher>>
pub fn event_publishers(&self) -> Option<&Vec<EventPublisher>>
List of publishers for different type of events that may be detected in an application from the profile. Anomaly detection is the only event publisher in Profiler.
Trait Implementations
impl StructuralPartialEq for Channel
Auto Trait Implementations
impl RefUnwindSafe for Channel
impl Send for Channel
impl Sync for Channel
impl Unpin for Channel
impl UnwindSafe for Channel
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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