Class: Aws::CodeGuruProfiler::Types::Channel
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruProfiler::Types::Channel
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeguruprofiler/types.rb
Overview
Notification medium for users to get alerted for events that occur in application profile. We support SNS topic as a notification channel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_publishers ⇒ Array<String>
List of publishers for different type of events that may be detected in an application from the profile.
-
#id ⇒ String
Unique identifier for each ‘Channel` in the notification configuration of a Profiling Group.
-
#uri ⇒ String
Unique arn of the resource to be used for notifications.
Instance Attribute Details
#event_publishers ⇒ Array<String>
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.
372 373 374 375 376 377 378 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 372 class Channel < Struct.new( :event_publishers, :id, :uri) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
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.
372 373 374 375 376 377 378 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 372 class Channel < Struct.new( :event_publishers, :id, :uri) SENSITIVE = [] include Aws::Structure end |
#uri ⇒ String
Unique arn of the resource to be used for notifications. We support a valid SNS topic arn as a channel uri.
372 373 374 375 376 377 378 |
# File 'lib/aws-sdk-codeguruprofiler/types.rb', line 372 class Channel < Struct.new( :event_publishers, :id, :uri) SENSITIVE = [] include Aws::Structure end |