Class: Aws::DevOpsGuru::Types::NotificationFilterConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-devopsguru/lib/aws-sdk-devopsguru/types.rb

Overview

The filter configurations for the Amazon SNS notification topic you use with DevOps Guru. You can choose to specify which events or message types to receive notifications for. You can also choose to specify which severity levels to receive notifications for.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#message_typesArray<String>

The events that you want to receive notifications for. For example, you can choose to receive notifications only when the severity level is upgraded or a new insight is created.

Returns:

  • (Array<String>)


2367
2368
2369
2370
2371
2372
# File 'gems/aws-sdk-devopsguru/lib/aws-sdk-devopsguru/types.rb', line 2367

class NotificationFilterConfig < Struct.new(
  :severities,
  :message_types)
  SENSITIVE = []
  include Aws::Structure
end

#severitiesArray<String>

The severity levels that you want to receive notifications for. For example, you can choose to receive notifications only for insights with HIGH and MEDIUM severity levels. For more information, see Understanding insight severities.

Returns:

  • (Array<String>)


2367
2368
2369
2370
2371
2372
# File 'gems/aws-sdk-devopsguru/lib/aws-sdk-devopsguru/types.rb', line 2367

class NotificationFilterConfig < Struct.new(
  :severities,
  :message_types)
  SENSITIVE = []
  include Aws::Structure
end