Class: Aws::SSMIncidents::Types::IncidentTemplate
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::IncidentTemplate
- Defined in:
- gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb
Overview
Basic details used in creating a response plan. The response plan is then used to create an incident record.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dedupe_string ⇒ String
The string Incident Manager uses to prevent the same root cause from creating multiple incidents in the same account.
-
#impact ⇒ Integer
The impact of the incident on your customers and applications.
-
#incident_tags ⇒ Hash<String,String>
Tags to assign to the template.
-
#notification_targets ⇒ Array<Types::NotificationTargetItem>
The Amazon SNS targets that are notified when updates are made to an incident.
-
#summary ⇒ String
The summary of the incident.
-
#title ⇒ String
The title of the incident.
Instance Attribute Details
#dedupe_string ⇒ String
The string Incident Manager uses to prevent the same root cause from creating multiple incidents in the same account.
A deduplication string is a term or phrase the system uses to check
for duplicate incidents. If you specify a deduplication string,
Incident Manager searches for open incidents that contain the same
string in the dedupeString
field when it creates the incident. If
a duplicate is detected, Incident Manager deduplicates the newer
incident into the existing incident.
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1264 class IncidentTemplate < Struct.new( :dedupe_string, :impact, :incident_tags, :notification_targets, :summary, :title) SENSITIVE = [] include Aws::Structure end |
#impact ⇒ Integer
The impact of the incident on your customers and applications.
Supported impact codes
1
- Critical2
- High3
- Medium4
- Low5
- No Impact
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1264 class IncidentTemplate < Struct.new( :dedupe_string, :impact, :incident_tags, :notification_targets, :summary, :title) SENSITIVE = [] include Aws::Structure end |
#incident_tags ⇒ Hash<String,String>
Tags to assign to the template. When the StartIncident
API action
is called, Incident Manager assigns the tags specified in the
template to the incident.
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1264 class IncidentTemplate < Struct.new( :dedupe_string, :impact, :incident_tags, :notification_targets, :summary, :title) SENSITIVE = [] include Aws::Structure end |
#notification_targets ⇒ Array<Types::NotificationTargetItem>
The Amazon SNS targets that are notified when updates are made to an incident.
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1264 class IncidentTemplate < Struct.new( :dedupe_string, :impact, :incident_tags, :notification_targets, :summary, :title) SENSITIVE = [] include Aws::Structure end |
#summary ⇒ String
The summary of the incident. The summary is a brief synopsis of what occurred, what's currently happening, and context.
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1264 class IncidentTemplate < Struct.new( :dedupe_string, :impact, :incident_tags, :notification_targets, :summary, :title) SENSITIVE = [] include Aws::Structure end |
#title ⇒ String
The title of the incident.
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 |
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 1264 class IncidentTemplate < Struct.new( :dedupe_string, :impact, :incident_tags, :notification_targets, :summary, :title) SENSITIVE = [] include Aws::Structure end |