aws-sdk-ssmincidents 1.5.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssmincidents/client.rb +82 -59
- data/lib/aws-sdk-ssmincidents/client_api.rb +1 -0
- data/lib/aws-sdk-ssmincidents/errors.rb +5 -0
- data/lib/aws-sdk-ssmincidents/types.rb +139 -101
- data/lib/aws-sdk-ssmincidents.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d269770f161e42e699c421ba075b3dd9e06d8304926a537d5caaf2b2ce3bae5
|
4
|
+
data.tar.gz: eb4a0514478a7ccf1b9c37e8174a84bfc58769ba9ccb5cb541a05a0db4dc2070
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e065ccf0b033620e3bbf3c95d5caa6b0370055a76c5d89999ca2fb46ef38d5ff0449fa80334a5b0682b96e7bba926f7bb13f8527ecdccaa17aee2b086d80a055
|
7
|
+
data.tar.gz: eb3dac1ee5cb522d19762b65c7e1ba7f93db70ccca48d6db2ff856f6a5e9591f226eee622499b2286321cc884a6030477e23d312a6a77a5d90a20d9d576a415d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.6.0 (2021-10-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updating documentation, adding new field to ConflictException to indicate earliest retry timestamp for some operations, increase maximum length of nextToken fields
|
8
|
+
|
4
9
|
1.5.0 (2021-10-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.6.0
|
@@ -331,7 +331,7 @@ module Aws::SSMIncidents
|
|
331
331
|
# Regions with the provided KMS key.
|
332
332
|
#
|
333
333
|
# @option params [String] :client_token
|
334
|
-
# A token ensuring that the
|
334
|
+
# A token ensuring that the operation is called only once with the
|
335
335
|
# specified details.
|
336
336
|
#
|
337
337
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -378,11 +378,10 @@ module Aws::SSMIncidents
|
|
378
378
|
# incident.
|
379
379
|
#
|
380
380
|
# @option params [Types::ChatChannel] :chat_channel
|
381
|
-
# The
|
382
|
-
# incident.
|
381
|
+
# The Chatbot chat channel used for collaboration during an incident.
|
383
382
|
#
|
384
383
|
# @option params [String] :client_token
|
385
|
-
# A token ensuring that the
|
384
|
+
# A token ensuring that the operation is called only once with the
|
386
385
|
# specified details.
|
387
386
|
#
|
388
387
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -477,8 +476,8 @@ module Aws::SSMIncidents
|
|
477
476
|
# not need to pass this option.**
|
478
477
|
#
|
479
478
|
# @option params [required, String] :event_data
|
480
|
-
# A valid JSON string. There is no
|
481
|
-
#
|
479
|
+
# A short description of the event as a valid JSON string. There is no
|
480
|
+
# other schema imposed.
|
482
481
|
#
|
483
482
|
# @option params [required, Time,DateTime,Date,Integer,String] :event_time
|
484
483
|
# The time that the event occurred.
|
@@ -488,8 +487,8 @@ module Aws::SSMIncidents
|
|
488
487
|
# Event`.
|
489
488
|
#
|
490
489
|
# @option params [required, String] :incident_record_arn
|
491
|
-
# The Amazon Resource Name (ARN) of the incident record
|
492
|
-
#
|
490
|
+
# The Amazon Resource Name (ARN) of the incident record to which the
|
491
|
+
# event will be added.
|
493
492
|
#
|
494
493
|
# @return [Types::CreateTimelineEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
495
494
|
#
|
@@ -567,8 +566,8 @@ module Aws::SSMIncidents
|
|
567
566
|
req.send_request(options)
|
568
567
|
end
|
569
568
|
|
570
|
-
# Deletes the resource policy that
|
571
|
-
#
|
569
|
+
# Deletes the resource policy that Resource Access Manager uses to share
|
570
|
+
# your Incident Manager resource.
|
572
571
|
#
|
573
572
|
# @option params [required, String] :policy_id
|
574
573
|
# The ID of the resource policy you're deleting.
|
@@ -626,8 +625,8 @@ module Aws::SSMIncidents
|
|
626
625
|
# `ListTimelineEvents`.
|
627
626
|
#
|
628
627
|
# @option params [required, String] :incident_record_arn
|
629
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
630
|
-
#
|
628
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
629
|
+
# timeline event.
|
631
630
|
#
|
632
631
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
633
632
|
#
|
@@ -647,7 +646,7 @@ module Aws::SSMIncidents
|
|
647
646
|
req.send_request(options)
|
648
647
|
end
|
649
648
|
|
650
|
-
# Returns the details
|
649
|
+
# Returns the details for the specified incident record.
|
651
650
|
#
|
652
651
|
# @option params [required, String] :arn
|
653
652
|
# The Amazon Resource Name (ARN) of the incident record.
|
@@ -843,12 +842,12 @@ module Aws::SSMIncidents
|
|
843
842
|
# Retrieves a timeline event based on its ID and incident record.
|
844
843
|
#
|
845
844
|
# @option params [required, String] :event_id
|
846
|
-
# The ID of the event. You can get an event's ID when you create it or
|
845
|
+
# The ID of the event. You can get an event's ID when you create it, or
|
847
846
|
# by using `ListTimelineEvents`.
|
848
847
|
#
|
849
848
|
# @option params [required, String] :incident_record_arn
|
850
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
851
|
-
#
|
849
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
850
|
+
# timeline event.
|
852
851
|
#
|
853
852
|
# @return [Types::GetTimelineEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
854
853
|
#
|
@@ -884,8 +883,8 @@ module Aws::SSMIncidents
|
|
884
883
|
# want to update.
|
885
884
|
#
|
886
885
|
# @option params [Array<Types::Filter>] :filters
|
887
|
-
#
|
888
|
-
# filter on the following keys:
|
886
|
+
# Filters the list of incident records through which you are searching.
|
887
|
+
# You can filter on the following keys:
|
889
888
|
#
|
890
889
|
# * `creationTime`
|
891
890
|
#
|
@@ -895,6 +894,17 @@ module Aws::SSMIncidents
|
|
895
894
|
#
|
896
895
|
# * `createdBy`
|
897
896
|
#
|
897
|
+
# Note the following when deciding how to use Filters:
|
898
|
+
#
|
899
|
+
# * If you don't specify a Filter, the response includes all incident
|
900
|
+
# records.
|
901
|
+
#
|
902
|
+
# * If you specify more than one filter in a single request, the
|
903
|
+
# response returns incident records that match all filters.
|
904
|
+
#
|
905
|
+
# * If you specify a filter with more than one value, the response
|
906
|
+
# returns incident records that match any of the values provided.
|
907
|
+
#
|
898
908
|
# @option params [Integer] :max_results
|
899
909
|
# The maximum number of results per page.
|
900
910
|
#
|
@@ -955,8 +965,8 @@ module Aws::SSMIncidents
|
|
955
965
|
# List all related items for an incident record.
|
956
966
|
#
|
957
967
|
# @option params [required, String] :incident_record_arn
|
958
|
-
# The Amazon Resource Name (ARN) of the incident record
|
959
|
-
#
|
968
|
+
# The Amazon Resource Name (ARN) of the incident record containing the
|
969
|
+
# listed related items.
|
960
970
|
#
|
961
971
|
# @option params [Integer] :max_results
|
962
972
|
# The maximum number of related items per page.
|
@@ -1103,7 +1113,7 @@ module Aws::SSMIncidents
|
|
1103
1113
|
req.send_request(options)
|
1104
1114
|
end
|
1105
1115
|
|
1106
|
-
# Lists timeline events
|
1116
|
+
# Lists timeline events for the specified incident record.
|
1107
1117
|
#
|
1108
1118
|
# @option params [Array<Types::Filter>] :filters
|
1109
1119
|
# Filters the timeline events based on the provided conditional values.
|
@@ -1113,9 +1123,20 @@ module Aws::SSMIncidents
|
|
1113
1123
|
#
|
1114
1124
|
# * `eventType`
|
1115
1125
|
#
|
1126
|
+
# Note the following when deciding how to use Filters:
|
1127
|
+
#
|
1128
|
+
# * If you don't specify a Filter, the response includes all timeline
|
1129
|
+
# events.
|
1130
|
+
#
|
1131
|
+
# * If you specify more than one filter in a single request, the
|
1132
|
+
# response returns timeline events that match all filters.
|
1133
|
+
#
|
1134
|
+
# * If you specify a filter with more than one value, the response
|
1135
|
+
# returns timeline events that match any of the values provided.
|
1136
|
+
#
|
1116
1137
|
# @option params [required, String] :incident_record_arn
|
1117
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
1118
|
-
#
|
1138
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
1139
|
+
# timeline event.
|
1119
1140
|
#
|
1120
1141
|
# @option params [Integer] :max_results
|
1121
1142
|
# The maximum number of results per page.
|
@@ -1216,7 +1237,7 @@ module Aws::SSMIncidents
|
|
1216
1237
|
# or manually.
|
1217
1238
|
#
|
1218
1239
|
# @option params [String] :client_token
|
1219
|
-
# A token ensuring that the
|
1240
|
+
# A token ensuring that the operation is called only once with the
|
1220
1241
|
# specified details.
|
1221
1242
|
#
|
1222
1243
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -1245,13 +1266,13 @@ module Aws::SSMIncidents
|
|
1245
1266
|
#
|
1246
1267
|
# @option params [Array<Types::RelatedItem>] :related_items
|
1247
1268
|
# Add related items to the incident for other responders to use. Related
|
1248
|
-
# items are AWS resources, external links, or files uploaded to an
|
1249
|
-
# bucket.
|
1269
|
+
# items are AWS resources, external links, or files uploaded to an
|
1270
|
+
# Amazon S3 bucket.
|
1250
1271
|
#
|
1251
1272
|
# @option params [required, String] :response_plan_arn
|
1252
1273
|
# The Amazon Resource Name (ARN) of the response plan that pre-defines
|
1253
|
-
# summary, chat channels, SNS topics, runbooks, title, and impact
|
1254
|
-
# incident.
|
1274
|
+
# summary, chat channels, Amazon SNS topics, runbooks, title, and impact
|
1275
|
+
# of the incident.
|
1255
1276
|
#
|
1256
1277
|
# @option params [String] :title
|
1257
1278
|
# Provide a title for the incident. Providing a title overwrites the
|
@@ -1369,7 +1390,7 @@ module Aws::SSMIncidents
|
|
1369
1390
|
# updating.
|
1370
1391
|
#
|
1371
1392
|
# @option params [String] :client_token
|
1372
|
-
# A token ensuring that the
|
1393
|
+
# A token ensuring that the operation is called only once with the
|
1373
1394
|
# specified details.
|
1374
1395
|
#
|
1375
1396
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -1397,8 +1418,8 @@ module Aws::SSMIncidents
|
|
1397
1418
|
req.send_request(options)
|
1398
1419
|
end
|
1399
1420
|
|
1400
|
-
# Update the details of an incident record. You can use this
|
1401
|
-
# update an incident record from the defined chat channel. For more
|
1421
|
+
# Update the details of an incident record. You can use this operation
|
1422
|
+
# to update an incident record from the defined chat channel. For more
|
1402
1423
|
# information about using actions in chat channels, see [Interacting
|
1403
1424
|
# through chat][1].
|
1404
1425
|
#
|
@@ -1411,23 +1432,24 @@ module Aws::SSMIncidents
|
|
1411
1432
|
# updating.
|
1412
1433
|
#
|
1413
1434
|
# @option params [Types::ChatChannel] :chat_channel
|
1414
|
-
# The
|
1435
|
+
# The Chatbot chat channel where responders can collaborate.
|
1415
1436
|
#
|
1416
1437
|
# @option params [String] :client_token
|
1417
|
-
# A token
|
1438
|
+
# A token that ensures that the operation is called only once with the
|
1418
1439
|
# specified details.
|
1419
1440
|
#
|
1420
1441
|
# **A suitable default value is auto-generated.** You should normally
|
1421
1442
|
# not need to pass this option.**
|
1422
1443
|
#
|
1423
1444
|
# @option params [Integer] :impact
|
1424
|
-
# Defines the impact to customers and applications.
|
1425
|
-
# overwrites the impact provided by the response
|
1445
|
+
# Defines the impact of the incident to customers and applications.
|
1446
|
+
# Providing an impact overwrites the impact provided by the response
|
1447
|
+
# plan.
|
1426
1448
|
#
|
1427
1449
|
# **Possible impacts:**
|
1428
1450
|
#
|
1429
|
-
# * `1` - Critical impact,
|
1430
|
-
#
|
1451
|
+
# * `1` - Critical impact, full application failure that impacts many to
|
1452
|
+
# all customers.
|
1431
1453
|
#
|
1432
1454
|
# * `2` - High impact, partial application failure with impact to many
|
1433
1455
|
# customers.
|
@@ -1435,27 +1457,26 @@ module Aws::SSMIncidents
|
|
1435
1457
|
# * `3` - Medium impact, the application is providing reduced service to
|
1436
1458
|
# customers.
|
1437
1459
|
#
|
1438
|
-
# * `4` - Low impact, customer
|
1439
|
-
# yet.
|
1460
|
+
# * `4` - Low impact, customer aren't impacted by the problem yet.
|
1440
1461
|
#
|
1441
1462
|
# * `5` - No impact, customers aren't currently impacted but urgent
|
1442
1463
|
# action is needed to avoid impact.
|
1443
1464
|
#
|
1444
1465
|
# @option params [Array<Types::NotificationTargetItem>] :notification_targets
|
1445
|
-
# The SNS targets that are notified when updates are made to an
|
1466
|
+
# The Amazon SNS targets that are notified when updates are made to an
|
1446
1467
|
# incident.
|
1447
1468
|
#
|
1448
|
-
# Using multiple SNS topics creates redundancy in the
|
1449
|
-
# is down during the incident.
|
1469
|
+
# Using multiple SNS topics creates redundancy in the event that a
|
1470
|
+
# Region is down during the incident.
|
1450
1471
|
#
|
1451
1472
|
# @option params [String] :status
|
1452
1473
|
# The status of the incident. An incident can be `Open` or `Resolved`.
|
1453
1474
|
#
|
1454
1475
|
# @option params [String] :summary
|
1455
|
-
#
|
1476
|
+
# A longer description of what occurred during the incident.
|
1456
1477
|
#
|
1457
1478
|
# @option params [String] :title
|
1458
|
-
#
|
1479
|
+
# A brief description of the incident.
|
1459
1480
|
#
|
1460
1481
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1461
1482
|
#
|
@@ -1493,15 +1514,15 @@ module Aws::SSMIncidents
|
|
1493
1514
|
# record.
|
1494
1515
|
#
|
1495
1516
|
# @option params [String] :client_token
|
1496
|
-
# A token ensuring that the
|
1517
|
+
# A token ensuring that the operation is called only once with the
|
1497
1518
|
# specified details.
|
1498
1519
|
#
|
1499
1520
|
# **A suitable default value is auto-generated.** You should normally
|
1500
1521
|
# not need to pass this option.**
|
1501
1522
|
#
|
1502
1523
|
# @option params [required, String] :incident_record_arn
|
1503
|
-
# The Amazon Resource Name (ARN) of the incident record
|
1504
|
-
# related items
|
1524
|
+
# The Amazon Resource Name (ARN) of the incident record containing the
|
1525
|
+
# related items you are updating.
|
1505
1526
|
#
|
1506
1527
|
# @option params [required, Types::RelatedItemsUpdate] :related_items_update
|
1507
1528
|
# Details about the item you are adding or deleting.
|
@@ -1555,7 +1576,7 @@ module Aws::SSMIncidents
|
|
1555
1576
|
# updating.
|
1556
1577
|
#
|
1557
1578
|
# @option params [String] :client_token
|
1558
|
-
# A token ensuring that the
|
1579
|
+
# A token ensuring that the operation is called only once with the
|
1559
1580
|
# specified details.
|
1560
1581
|
#
|
1561
1582
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -1600,28 +1621,29 @@ module Aws::SSMIncidents
|
|
1600
1621
|
# The Amazon Resource Name (ARN) of the response plan.
|
1601
1622
|
#
|
1602
1623
|
# @option params [Types::ChatChannel] :chat_channel
|
1603
|
-
# The
|
1604
|
-
# incident.
|
1624
|
+
# The Chatbot chat channel used for collaboration during an incident.
|
1605
1625
|
#
|
1606
1626
|
# Use the empty structure to remove the chat channel from the response
|
1607
1627
|
# plan.
|
1608
1628
|
#
|
1609
1629
|
# @option params [String] :client_token
|
1610
|
-
# A token ensuring that the
|
1630
|
+
# A token ensuring that the operation is called only once with the
|
1611
1631
|
# specified details.
|
1612
1632
|
#
|
1613
1633
|
# **A suitable default value is auto-generated.** You should normally
|
1614
1634
|
# not need to pass this option.**
|
1615
1635
|
#
|
1616
1636
|
# @option params [String] :display_name
|
1617
|
-
# The long format name of the response plan.
|
1637
|
+
# The long format name of the response plan. The display name can't
|
1638
|
+
# contain spaces.
|
1618
1639
|
#
|
1619
1640
|
# @option params [Array<String>] :engagements
|
1620
1641
|
# The contacts and escalation plans that Incident Manager engages at the
|
1621
1642
|
# start of the incident.
|
1622
1643
|
#
|
1623
1644
|
# @option params [String] :incident_template_dedupe_string
|
1624
|
-
#
|
1645
|
+
# The string Incident Manager uses to prevent duplicate incidents from
|
1646
|
+
# being created by the same incident in the same account.
|
1625
1647
|
#
|
1626
1648
|
# @option params [Integer] :incident_template_impact
|
1627
1649
|
# Defines the impact to the customers. Providing an impact overwrites
|
@@ -1640,7 +1662,7 @@ module Aws::SSMIncidents
|
|
1640
1662
|
# * `1` - No impact
|
1641
1663
|
#
|
1642
1664
|
# @option params [Array<Types::NotificationTargetItem>] :incident_template_notification_targets
|
1643
|
-
# The SNS targets that are notified when updates are made to an
|
1665
|
+
# The Amazon SNS targets that are notified when updates are made to an
|
1644
1666
|
# incident.
|
1645
1667
|
#
|
1646
1668
|
# @option params [String] :incident_template_summary
|
@@ -1648,7 +1670,8 @@ module Aws::SSMIncidents
|
|
1648
1670
|
# happened, what's currently happening, and next steps.
|
1649
1671
|
#
|
1650
1672
|
# @option params [String] :incident_template_title
|
1651
|
-
# The short format name of the incident.
|
1673
|
+
# The short format name of the incident. The title can't contain
|
1674
|
+
# spaces.
|
1652
1675
|
#
|
1653
1676
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1654
1677
|
#
|
@@ -1701,7 +1724,7 @@ module Aws::SSMIncidents
|
|
1701
1724
|
# Event`.
|
1702
1725
|
#
|
1703
1726
|
# @option params [String] :client_token
|
1704
|
-
# A token ensuring that the
|
1727
|
+
# A token ensuring that the operation is called only once with the
|
1705
1728
|
# specified details.
|
1706
1729
|
#
|
1707
1730
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -1721,8 +1744,8 @@ module Aws::SSMIncidents
|
|
1721
1744
|
# The type of the event. You can update events of type `Custom Event`.
|
1722
1745
|
#
|
1723
1746
|
# @option params [required, String] :incident_record_arn
|
1724
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
1725
|
-
#
|
1747
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
1748
|
+
# timeline event.
|
1726
1749
|
#
|
1727
1750
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1728
1751
|
#
|
@@ -1759,7 +1782,7 @@ module Aws::SSMIncidents
|
|
1759
1782
|
params: params,
|
1760
1783
|
config: config)
|
1761
1784
|
context[:gem_name] = 'aws-sdk-ssmincidents'
|
1762
|
-
context[:gem_version] = '1.
|
1785
|
+
context[:gem_version] = '1.6.0'
|
1763
1786
|
Seahorse::Client::Request.new(handlers, context)
|
1764
1787
|
end
|
1765
1788
|
|
@@ -229,6 +229,7 @@ module Aws::SSMIncidents
|
|
229
229
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, required: true, location_name: "message"))
|
230
230
|
ConflictException.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "resourceIdentifier"))
|
231
231
|
ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "resourceType"))
|
232
|
+
ConflictException.add_member(:retry_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "retryAfter"))
|
232
233
|
ConflictException.struct_class = Types::ConflictException
|
233
234
|
|
234
235
|
CreateReplicationSetInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
@@ -10,7 +10,7 @@
|
|
10
10
|
module Aws::SSMIncidents
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# You don't have sufficient access to perform this
|
13
|
+
# You don't have sufficient access to perform this operation.
|
14
14
|
#
|
15
15
|
# @!attribute [rw] message
|
16
16
|
# @return [String]
|
@@ -48,7 +48,8 @@ module Aws::SSMIncidents
|
|
48
48
|
class Unknown < Action; end
|
49
49
|
end
|
50
50
|
|
51
|
-
# Defines the Region and KMS key to add to the
|
51
|
+
# Defines the Amazon Web Services Region and KMS key to add to the
|
52
|
+
# replication set.
|
52
53
|
#
|
53
54
|
# @note When making an API call, you may pass AddRegionAction
|
54
55
|
# data as a hash:
|
@@ -59,7 +60,7 @@ module Aws::SSMIncidents
|
|
59
60
|
# }
|
60
61
|
#
|
61
62
|
# @!attribute [rw] region_name
|
62
|
-
# The Region name to add to the replication set.
|
63
|
+
# The Amazon Web Services Region name to add to the replication set.
|
63
64
|
# @return [String]
|
64
65
|
#
|
65
66
|
# @!attribute [rw] sse_kms_key_id
|
@@ -124,17 +125,16 @@ module Aws::SSMIncidents
|
|
124
125
|
class Unknown < AutomationExecution; end
|
125
126
|
end
|
126
127
|
|
127
|
-
# The
|
128
|
-
# incident.
|
128
|
+
# The Chatbot chat channel used for collaboration during an incident.
|
129
129
|
#
|
130
130
|
# @note ChatChannel is a union - when making an API calls you must set exactly one of the members.
|
131
131
|
#
|
132
132
|
# @note ChatChannel is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ChatChannel corresponding to the set member.
|
133
133
|
#
|
134
134
|
# @!attribute [rw] chatbot_sns
|
135
|
-
# The SNS targets that
|
136
|
-
# updates to an incident. You can also make updates to the incident
|
137
|
-
# through the chat channel by using the SNS topics.
|
135
|
+
# The Amazon SNS targets that Chatbot uses to notify the chat channel
|
136
|
+
# of updates to an incident. You can also make updates to the incident
|
137
|
+
# through the chat channel by using the Amazon SNS topics.
|
138
138
|
# @return [Array<String>]
|
139
139
|
#
|
140
140
|
# @!attribute [rw] empty
|
@@ -207,12 +207,18 @@ module Aws::SSMIncidents
|
|
207
207
|
# The resource type
|
208
208
|
# @return [String]
|
209
209
|
#
|
210
|
+
# @!attribute [rw] retry_after
|
211
|
+
# If present in the output, the operation can be retried after this
|
212
|
+
# time
|
213
|
+
# @return [Time]
|
214
|
+
#
|
210
215
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/ConflictException AWS API Documentation
|
211
216
|
#
|
212
217
|
class ConflictException < Struct.new(
|
213
218
|
:message,
|
214
219
|
:resource_identifier,
|
215
|
-
:resource_type
|
220
|
+
:resource_type,
|
221
|
+
:retry_after)
|
216
222
|
SENSITIVE = []
|
217
223
|
include Aws::Structure
|
218
224
|
end
|
@@ -230,7 +236,7 @@ module Aws::SSMIncidents
|
|
230
236
|
# }
|
231
237
|
#
|
232
238
|
# @!attribute [rw] client_token
|
233
|
-
# A token ensuring that the
|
239
|
+
# A token ensuring that the operation is called only once with the
|
234
240
|
# specified details.
|
235
241
|
#
|
236
242
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -311,12 +317,11 @@ module Aws::SSMIncidents
|
|
311
317
|
# @return [Array<Types::Action>]
|
312
318
|
#
|
313
319
|
# @!attribute [rw] chat_channel
|
314
|
-
# The
|
315
|
-
# incident.
|
320
|
+
# The Chatbot chat channel used for collaboration during an incident.
|
316
321
|
# @return [Types::ChatChannel]
|
317
322
|
#
|
318
323
|
# @!attribute [rw] client_token
|
319
|
-
# A token ensuring that the
|
324
|
+
# A token ensuring that the operation is called only once with the
|
320
325
|
# specified details.
|
321
326
|
#
|
322
327
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -392,8 +397,8 @@ module Aws::SSMIncidents
|
|
392
397
|
# @return [String]
|
393
398
|
#
|
394
399
|
# @!attribute [rw] event_data
|
395
|
-
# A valid JSON string. There is no
|
396
|
-
#
|
400
|
+
# A short description of the event as a valid JSON string. There is no
|
401
|
+
# other schema imposed.
|
397
402
|
# @return [String]
|
398
403
|
#
|
399
404
|
# @!attribute [rw] event_time
|
@@ -406,8 +411,8 @@ module Aws::SSMIncidents
|
|
406
411
|
# @return [String]
|
407
412
|
#
|
408
413
|
# @!attribute [rw] incident_record_arn
|
409
|
-
# The Amazon Resource Name (ARN) of the incident record
|
410
|
-
#
|
414
|
+
# The Amazon Resource Name (ARN) of the incident record to which the
|
415
|
+
# event will be added.
|
411
416
|
# @return [String]
|
412
417
|
#
|
413
418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/CreateTimelineEventInput AWS API Documentation
|
@@ -463,8 +468,8 @@ module Aws::SSMIncidents
|
|
463
468
|
#
|
464
469
|
class DeleteIncidentRecordOutput < Aws::EmptyStructure; end
|
465
470
|
|
466
|
-
# Defines the information about the Region you're
|
467
|
-
# replication set.
|
471
|
+
# Defines the information about the Amazon Web Services Region you're
|
472
|
+
# deleting from your replication set.
|
468
473
|
#
|
469
474
|
# @note When making an API call, you may pass DeleteRegionAction
|
470
475
|
# data as a hash:
|
@@ -474,7 +479,8 @@ module Aws::SSMIncidents
|
|
474
479
|
# }
|
475
480
|
#
|
476
481
|
# @!attribute [rw] region_name
|
477
|
-
# The name of the Region you're deleting from the
|
482
|
+
# The name of the Amazon Web Services Region you're deleting from the
|
483
|
+
# replication set.
|
478
484
|
# @return [String]
|
479
485
|
#
|
480
486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/DeleteRegionAction AWS API Documentation
|
@@ -576,8 +582,8 @@ module Aws::SSMIncidents
|
|
576
582
|
# @return [String]
|
577
583
|
#
|
578
584
|
# @!attribute [rw] incident_record_arn
|
579
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
580
|
-
#
|
585
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
586
|
+
# timeline event.
|
581
587
|
# @return [String]
|
582
588
|
#
|
583
589
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/DeleteTimelineEventInput AWS API Documentation
|
@@ -692,7 +698,7 @@ module Aws::SSMIncidents
|
|
692
698
|
end
|
693
699
|
|
694
700
|
# @!attribute [rw] incident_record
|
695
|
-
# Details structure of the incident record.
|
701
|
+
# Details the structure of the incident record.
|
696
702
|
# @return [Types::IncidentRecord]
|
697
703
|
#
|
698
704
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/GetIncidentRecordOutput AWS API Documentation
|
@@ -814,8 +820,7 @@ module Aws::SSMIncidents
|
|
814
820
|
# @return [String]
|
815
821
|
#
|
816
822
|
# @!attribute [rw] chat_channel
|
817
|
-
# The
|
818
|
-
# incident.
|
823
|
+
# The Chatbot chat channel used for collaboration during an incident.
|
819
824
|
# @return [Types::ChatChannel]
|
820
825
|
#
|
821
826
|
# @!attribute [rw] display_name
|
@@ -832,7 +837,8 @@ module Aws::SSMIncidents
|
|
832
837
|
# @return [Types::IncidentTemplate]
|
833
838
|
#
|
834
839
|
# @!attribute [rw] name
|
835
|
-
# The short format name of the response plan.
|
840
|
+
# The short format name of the response plan. The name can't contain
|
841
|
+
# spaces.
|
836
842
|
# @return [String]
|
837
843
|
#
|
838
844
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/GetResponsePlanOutput AWS API Documentation
|
@@ -858,13 +864,13 @@ module Aws::SSMIncidents
|
|
858
864
|
# }
|
859
865
|
#
|
860
866
|
# @!attribute [rw] event_id
|
861
|
-
# The ID of the event. You can get an event's ID when you create it
|
867
|
+
# The ID of the event. You can get an event's ID when you create it,
|
862
868
|
# or by using `ListTimelineEvents`.
|
863
869
|
# @return [String]
|
864
870
|
#
|
865
871
|
# @!attribute [rw] incident_record_arn
|
866
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
867
|
-
# event
|
872
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
873
|
+
# timeline event.
|
868
874
|
# @return [String]
|
869
875
|
#
|
870
876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/GetTimelineEventInput AWS API Documentation
|
@@ -909,7 +915,7 @@ module Aws::SSMIncidents
|
|
909
915
|
#
|
910
916
|
# @!attribute [rw] dedupe_string
|
911
917
|
# The string Incident Manager uses to prevent duplicate incidents from
|
912
|
-
# being created by the same incident.
|
918
|
+
# being created by the same incident in the same account.
|
913
919
|
# @return [String]
|
914
920
|
#
|
915
921
|
# @!attribute [rw] impact
|
@@ -929,7 +935,7 @@ module Aws::SSMIncidents
|
|
929
935
|
# @return [Time]
|
930
936
|
#
|
931
937
|
# @!attribute [rw] notification_targets
|
932
|
-
# The SNS targets that are notified when updates are made to an
|
938
|
+
# The Amazon SNS targets that are notified when updates are made to an
|
933
939
|
# incident.
|
934
940
|
# @return [Array<Types::NotificationTargetItem>]
|
935
941
|
#
|
@@ -944,7 +950,7 @@ module Aws::SSMIncidents
|
|
944
950
|
#
|
945
951
|
# @!attribute [rw] summary
|
946
952
|
# The summary of the incident. The summary is a brief synopsis of what
|
947
|
-
# occurred, what
|
953
|
+
# occurred, what's currently happening, and context of the incident.
|
948
954
|
# @return [String]
|
949
955
|
#
|
950
956
|
# @!attribute [rw] title
|
@@ -972,7 +978,8 @@ module Aws::SSMIncidents
|
|
972
978
|
include Aws::Structure
|
973
979
|
end
|
974
980
|
|
975
|
-
# Details about
|
981
|
+
# Details about what created the incident record and when it was
|
982
|
+
# created.
|
976
983
|
#
|
977
984
|
# @!attribute [rw] created_by
|
978
985
|
# The principal that started the incident.
|
@@ -988,8 +995,8 @@ module Aws::SSMIncidents
|
|
988
995
|
#
|
989
996
|
# @!attribute [rw] source
|
990
997
|
# The service that started the incident. This can be manually created
|
991
|
-
# from Incident Manager, automatically created using an
|
992
|
-
# alarm, or Amazon EventBridge event.
|
998
|
+
# from Incident Manager, automatically created using an Amazon
|
999
|
+
# CloudWatch alarm, or Amazon EventBridge event.
|
993
1000
|
# @return [String]
|
994
1001
|
#
|
995
1002
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/IncidentRecordSource AWS API Documentation
|
@@ -1076,7 +1083,7 @@ module Aws::SSMIncidents
|
|
1076
1083
|
# @return [Integer]
|
1077
1084
|
#
|
1078
1085
|
# @!attribute [rw] notification_targets
|
1079
|
-
# The SNS targets that are notified when updates are made to an
|
1086
|
+
# The Amazon SNS targets that are notified when updates are made to an
|
1080
1087
|
# incident.
|
1081
1088
|
# @return [Array<Types::NotificationTargetItem>]
|
1082
1089
|
#
|
@@ -1171,12 +1178,12 @@ module Aws::SSMIncidents
|
|
1171
1178
|
# @return [String]
|
1172
1179
|
#
|
1173
1180
|
# @!attribute [rw] metric_definition
|
1174
|
-
# The metric definition, if the related item is a metric in
|
1181
|
+
# The metric definition, if the related item is a metric in Amazon
|
1175
1182
|
# CloudWatch.
|
1176
1183
|
# @return [String]
|
1177
1184
|
#
|
1178
1185
|
# @!attribute [rw] url
|
1179
|
-
# The URL, if the related item is a non-
|
1186
|
+
# The URL, if the related item is a non-Amazon Web Services resource.
|
1180
1187
|
# @return [String]
|
1181
1188
|
#
|
1182
1189
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/ItemValue AWS API Documentation
|
@@ -1218,8 +1225,8 @@ module Aws::SSMIncidents
|
|
1218
1225
|
# }
|
1219
1226
|
#
|
1220
1227
|
# @!attribute [rw] filters
|
1221
|
-
#
|
1222
|
-
# can filter on the following keys:
|
1228
|
+
# Filters the list of incident records through which you are
|
1229
|
+
# searching. You can filter on the following keys:
|
1223
1230
|
#
|
1224
1231
|
# * `creationTime`
|
1225
1232
|
#
|
@@ -1228,6 +1235,17 @@ module Aws::SSMIncidents
|
|
1228
1235
|
# * `status`
|
1229
1236
|
#
|
1230
1237
|
# * `createdBy`
|
1238
|
+
#
|
1239
|
+
# Note the following when deciding how to use Filters:
|
1240
|
+
#
|
1241
|
+
# * If you don't specify a Filter, the response includes all incident
|
1242
|
+
# records.
|
1243
|
+
#
|
1244
|
+
# * If you specify more than one filter in a single request, the
|
1245
|
+
# response returns incident records that match all filters.
|
1246
|
+
#
|
1247
|
+
# * If you specify a filter with more than one value, the response
|
1248
|
+
# returns incident records that match any of the values provided.
|
1231
1249
|
# @return [Array<Types::Filter>]
|
1232
1250
|
#
|
1233
1251
|
# @!attribute [rw] max_results
|
@@ -1275,8 +1293,8 @@ module Aws::SSMIncidents
|
|
1275
1293
|
# }
|
1276
1294
|
#
|
1277
1295
|
# @!attribute [rw] incident_record_arn
|
1278
|
-
# The Amazon Resource Name (ARN) of the incident record
|
1279
|
-
#
|
1296
|
+
# The Amazon Resource Name (ARN) of the incident record containing the
|
1297
|
+
# listed related items.
|
1280
1298
|
# @return [String]
|
1281
1299
|
#
|
1282
1300
|
# @!attribute [rw] max_results
|
@@ -1460,11 +1478,22 @@ module Aws::SSMIncidents
|
|
1460
1478
|
# * `eventTime`
|
1461
1479
|
#
|
1462
1480
|
# * `eventType`
|
1481
|
+
#
|
1482
|
+
# Note the following when deciding how to use Filters:
|
1483
|
+
#
|
1484
|
+
# * If you don't specify a Filter, the response includes all timeline
|
1485
|
+
# events.
|
1486
|
+
#
|
1487
|
+
# * If you specify more than one filter in a single request, the
|
1488
|
+
# response returns timeline events that match all filters.
|
1489
|
+
#
|
1490
|
+
# * If you specify a filter with more than one value, the response
|
1491
|
+
# returns timeline events that match any of the values provided.
|
1463
1492
|
# @return [Array<Types::Filter>]
|
1464
1493
|
#
|
1465
1494
|
# @!attribute [rw] incident_record_arn
|
1466
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
1467
|
-
#
|
1495
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
1496
|
+
# timeline event.
|
1468
1497
|
# @return [String]
|
1469
1498
|
#
|
1470
1499
|
# @!attribute [rw] max_results
|
@@ -1576,22 +1605,26 @@ module Aws::SSMIncidents
|
|
1576
1605
|
include Aws::Structure
|
1577
1606
|
end
|
1578
1607
|
|
1579
|
-
# Information about a Region in your replication
|
1608
|
+
# Information about a Amazon Web Services Region in your replication
|
1609
|
+
# set.
|
1580
1610
|
#
|
1581
1611
|
# @!attribute [rw] sse_kms_key_id
|
1582
|
-
# The ID of the KMS key used to encrypt the data in this
|
1612
|
+
# The ID of the KMS key used to encrypt the data in this Amazon Web
|
1613
|
+
# Services Region.
|
1583
1614
|
# @return [String]
|
1584
1615
|
#
|
1585
1616
|
# @!attribute [rw] status
|
1586
|
-
# The status of the Region in the replication set.
|
1617
|
+
# The status of the Amazon Web Services Region in the replication set.
|
1587
1618
|
# @return [String]
|
1588
1619
|
#
|
1589
1620
|
# @!attribute [rw] status_message
|
1590
|
-
# Information displayed about the status of the
|
1621
|
+
# Information displayed about the status of the Amazon Web Services
|
1622
|
+
# Region.
|
1591
1623
|
# @return [String]
|
1592
1624
|
#
|
1593
1625
|
# @!attribute [rw] status_update_date_time
|
1594
|
-
# The most recent date and time that
|
1626
|
+
# The most recent date and time that Incident Manager updated the
|
1627
|
+
# Amazon Web Services Region's status.
|
1595
1628
|
# @return [Time]
|
1596
1629
|
#
|
1597
1630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/RegionInfo AWS API Documentation
|
@@ -1605,8 +1638,8 @@ module Aws::SSMIncidents
|
|
1605
1638
|
include Aws::Structure
|
1606
1639
|
end
|
1607
1640
|
|
1608
|
-
# The mapping between a Region and the key that's
|
1609
|
-
# data.
|
1641
|
+
# The mapping between a Amazon Web Services Region and the key that's
|
1642
|
+
# used to encrypt the data.
|
1610
1643
|
#
|
1611
1644
|
# @note When making an API call, you may pass RegionMapInputValue
|
1612
1645
|
# data as a hash:
|
@@ -1688,8 +1721,8 @@ module Aws::SSMIncidents
|
|
1688
1721
|
class Unknown < RelatedItemsUpdate; end
|
1689
1722
|
end
|
1690
1723
|
|
1691
|
-
# The set of
|
1692
|
-
# to and the KMS key used to encrypt the data.
|
1724
|
+
# The set of Amazon Web Services Region that your Incident Manager data
|
1725
|
+
# will be replicated to and the KMS key used to encrypt the data.
|
1693
1726
|
#
|
1694
1727
|
# @!attribute [rw] arn
|
1695
1728
|
# The Amazon Resource Name (ARN) of the replication set.
|
@@ -1706,7 +1739,7 @@ module Aws::SSMIncidents
|
|
1706
1739
|
# @!attribute [rw] deletion_protected
|
1707
1740
|
# Determines if the replication set deletion protection is enabled or
|
1708
1741
|
# not. If deletion protection is enabled, you can't delete the last
|
1709
|
-
# Region in the replication set.
|
1742
|
+
# Amazon Web Services Region in the replication set.
|
1710
1743
|
# @return [Boolean]
|
1711
1744
|
#
|
1712
1745
|
# @!attribute [rw] last_modified_by
|
@@ -1718,8 +1751,8 @@ module Aws::SSMIncidents
|
|
1718
1751
|
# @return [Time]
|
1719
1752
|
#
|
1720
1753
|
# @!attribute [rw] region_map
|
1721
|
-
# The map between each Region in your replication
|
1722
|
-
# that
|
1754
|
+
# The map between each Amazon Web Services Region in your replication
|
1755
|
+
# set and the KMS key that's used to encrypt the data in that Region.
|
1723
1756
|
# @return [Hash<String,Types::RegionInfo>]
|
1724
1757
|
#
|
1725
1758
|
# @!attribute [rw] status
|
@@ -1742,7 +1775,7 @@ module Aws::SSMIncidents
|
|
1742
1775
|
include Aws::Structure
|
1743
1776
|
end
|
1744
1777
|
|
1745
|
-
# Request references a resource which
|
1778
|
+
# Request references a resource which doesn't exist.
|
1746
1779
|
#
|
1747
1780
|
# @!attribute [rw] message
|
1748
1781
|
# @return [String]
|
@@ -1777,7 +1810,8 @@ module Aws::SSMIncidents
|
|
1777
1810
|
# @return [String]
|
1778
1811
|
#
|
1779
1812
|
# @!attribute [rw] ram_resource_share_region
|
1780
|
-
# The Region that policy allows resources to be
|
1813
|
+
# The Amazon Web Services Region that policy allows resources to be
|
1814
|
+
# used in.
|
1781
1815
|
# @return [String]
|
1782
1816
|
#
|
1783
1817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/ResourcePolicy AWS API Documentation
|
@@ -1929,7 +1963,7 @@ module Aws::SSMIncidents
|
|
1929
1963
|
# }
|
1930
1964
|
#
|
1931
1965
|
# @!attribute [rw] client_token
|
1932
|
-
# A token ensuring that the
|
1966
|
+
# A token ensuring that the operation is called only once with the
|
1933
1967
|
# specified details.
|
1934
1968
|
#
|
1935
1969
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -1961,13 +1995,13 @@ module Aws::SSMIncidents
|
|
1961
1995
|
# @!attribute [rw] related_items
|
1962
1996
|
# Add related items to the incident for other responders to use.
|
1963
1997
|
# Related items are AWS resources, external links, or files uploaded
|
1964
|
-
# to an S3 bucket.
|
1998
|
+
# to an Amazon S3 bucket.
|
1965
1999
|
# @return [Array<Types::RelatedItem>]
|
1966
2000
|
#
|
1967
2001
|
# @!attribute [rw] response_plan_arn
|
1968
2002
|
# The Amazon Resource Name (ARN) of the response plan that pre-defines
|
1969
|
-
# summary, chat channels, SNS topics, runbooks, title, and
|
1970
|
-
# the incident.
|
2003
|
+
# summary, chat channels, Amazon SNS topics, runbooks, title, and
|
2004
|
+
# impact of the incident.
|
1971
2005
|
# @return [String]
|
1972
2006
|
#
|
1973
2007
|
# @!attribute [rw] title
|
@@ -2114,16 +2148,16 @@ module Aws::SSMIncidents
|
|
2114
2148
|
# }
|
2115
2149
|
#
|
2116
2150
|
# @!attribute [rw] raw_data
|
2117
|
-
# Raw data passed from either EventBridge, CloudWatch,
|
2118
|
-
# Manager when an incident is created.
|
2151
|
+
# Raw data passed from either Amazon EventBridge, Amazon CloudWatch,
|
2152
|
+
# or Incident Manager when an incident is created.
|
2119
2153
|
# @return [String]
|
2120
2154
|
#
|
2121
2155
|
# @!attribute [rw] source
|
2122
2156
|
# Identifies the service that sourced the event. All events sourced
|
2123
|
-
# from within
|
2124
|
-
# have any value here, as long as it
|
2125
|
-
# recommend the use of Java
|
2126
|
-
# strings.
|
2157
|
+
# from within Amazon Web Services begin with "`aws.`"
|
2158
|
+
# Customer-generated events can have any value here, as long as it
|
2159
|
+
# doesn't begin with "`aws.`" We recommend the use of Java
|
2160
|
+
# package-name style reverse domain-name strings.
|
2127
2161
|
# @return [String]
|
2128
2162
|
#
|
2129
2163
|
# @!attribute [rw] timestamp
|
@@ -2131,7 +2165,8 @@ module Aws::SSMIncidents
|
|
2131
2165
|
# @return [Time]
|
2132
2166
|
#
|
2133
2167
|
# @!attribute [rw] trigger_arn
|
2134
|
-
# The ARN of the source that detected the
|
2168
|
+
# The Amazon Resource Name (ARN) of the source that detected the
|
2169
|
+
# incident.
|
2135
2170
|
# @return [String]
|
2136
2171
|
#
|
2137
2172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/TriggerDetails AWS API Documentation
|
@@ -2190,7 +2225,7 @@ module Aws::SSMIncidents
|
|
2190
2225
|
# @return [String]
|
2191
2226
|
#
|
2192
2227
|
# @!attribute [rw] client_token
|
2193
|
-
# A token ensuring that the
|
2228
|
+
# A token ensuring that the operation is called only once with the
|
2194
2229
|
# specified details.
|
2195
2230
|
#
|
2196
2231
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -2244,11 +2279,11 @@ module Aws::SSMIncidents
|
|
2244
2279
|
# @return [String]
|
2245
2280
|
#
|
2246
2281
|
# @!attribute [rw] chat_channel
|
2247
|
-
# The
|
2282
|
+
# The Chatbot chat channel where responders can collaborate.
|
2248
2283
|
# @return [Types::ChatChannel]
|
2249
2284
|
#
|
2250
2285
|
# @!attribute [rw] client_token
|
2251
|
-
# A token
|
2286
|
+
# A token that ensures that the operation is called only once with the
|
2252
2287
|
# specified details.
|
2253
2288
|
#
|
2254
2289
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -2256,13 +2291,14 @@ module Aws::SSMIncidents
|
|
2256
2291
|
# @return [String]
|
2257
2292
|
#
|
2258
2293
|
# @!attribute [rw] impact
|
2259
|
-
# Defines the impact to customers and applications.
|
2260
|
-
# impact overwrites the impact provided by the response
|
2294
|
+
# Defines the impact of the incident to customers and applications.
|
2295
|
+
# Providing an impact overwrites the impact provided by the response
|
2296
|
+
# plan.
|
2261
2297
|
#
|
2262
2298
|
# **Possible impacts:**
|
2263
2299
|
#
|
2264
|
-
# * `1` - Critical impact,
|
2265
|
-
#
|
2300
|
+
# * `1` - Critical impact, full application failure that impacts many
|
2301
|
+
# to all customers.
|
2266
2302
|
#
|
2267
2303
|
# * `2` - High impact, partial application failure with impact to many
|
2268
2304
|
# customers.
|
@@ -2270,18 +2306,17 @@ module Aws::SSMIncidents
|
|
2270
2306
|
# * `3` - Medium impact, the application is providing reduced service
|
2271
2307
|
# to customers.
|
2272
2308
|
#
|
2273
|
-
# * `4` - Low impact, customer
|
2274
|
-
# yet.
|
2309
|
+
# * `4` - Low impact, customer aren't impacted by the problem yet.
|
2275
2310
|
#
|
2276
2311
|
# * `5` - No impact, customers aren't currently impacted but urgent
|
2277
2312
|
# action is needed to avoid impact.
|
2278
2313
|
# @return [Integer]
|
2279
2314
|
#
|
2280
2315
|
# @!attribute [rw] notification_targets
|
2281
|
-
# The SNS targets that are notified when updates are made to an
|
2316
|
+
# The Amazon SNS targets that are notified when updates are made to an
|
2282
2317
|
# incident.
|
2283
2318
|
#
|
2284
|
-
# Using multiple SNS topics creates redundancy in the
|
2319
|
+
# Using multiple SNS topics creates redundancy in the event that a
|
2285
2320
|
# Region is down during the incident.
|
2286
2321
|
# @return [Array<Types::NotificationTargetItem>]
|
2287
2322
|
#
|
@@ -2290,11 +2325,11 @@ module Aws::SSMIncidents
|
|
2290
2325
|
# @return [String]
|
2291
2326
|
#
|
2292
2327
|
# @!attribute [rw] summary
|
2293
|
-
#
|
2328
|
+
# A longer description of what occurred during the incident.
|
2294
2329
|
# @return [String]
|
2295
2330
|
#
|
2296
2331
|
# @!attribute [rw] title
|
2297
|
-
#
|
2332
|
+
# A brief description of the incident.
|
2298
2333
|
# @return [String]
|
2299
2334
|
#
|
2300
2335
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/UpdateIncidentRecordInput AWS API Documentation
|
@@ -2346,7 +2381,7 @@ module Aws::SSMIncidents
|
|
2346
2381
|
# }
|
2347
2382
|
#
|
2348
2383
|
# @!attribute [rw] client_token
|
2349
|
-
# A token ensuring that the
|
2384
|
+
# A token ensuring that the operation is called only once with the
|
2350
2385
|
# specified details.
|
2351
2386
|
#
|
2352
2387
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -2354,8 +2389,8 @@ module Aws::SSMIncidents
|
|
2354
2389
|
# @return [String]
|
2355
2390
|
#
|
2356
2391
|
# @!attribute [rw] incident_record_arn
|
2357
|
-
# The Amazon Resource Name (ARN) of the incident record
|
2358
|
-
#
|
2392
|
+
# The Amazon Resource Name (ARN) of the incident record containing the
|
2393
|
+
# related items you are updating.
|
2359
2394
|
# @return [String]
|
2360
2395
|
#
|
2361
2396
|
# @!attribute [rw] related_items_update
|
@@ -2381,12 +2416,13 @@ module Aws::SSMIncidents
|
|
2381
2416
|
# @note UpdateReplicationSetAction is a union - when making an API calls you must set exactly one of the members.
|
2382
2417
|
#
|
2383
2418
|
# @!attribute [rw] add_region_action
|
2384
|
-
# Details about the Region that you're adding to
|
2419
|
+
# Details about the Amazon Web Services Region that you're adding to
|
2420
|
+
# the replication set.
|
2385
2421
|
# @return [Types::AddRegionAction]
|
2386
2422
|
#
|
2387
2423
|
# @!attribute [rw] delete_region_action
|
2388
|
-
# Details about the Region that you're deleting
|
2389
|
-
# set.
|
2424
|
+
# Details about the Amazon Web Services Region that you're deleting
|
2425
|
+
# to the replication set.
|
2390
2426
|
# @return [Types::DeleteRegionAction]
|
2391
2427
|
#
|
2392
2428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/UpdateReplicationSetAction AWS API Documentation
|
@@ -2433,7 +2469,7 @@ module Aws::SSMIncidents
|
|
2433
2469
|
# @return [String]
|
2434
2470
|
#
|
2435
2471
|
# @!attribute [rw] client_token
|
2436
|
-
# A token ensuring that the
|
2472
|
+
# A token ensuring that the operation is called only once with the
|
2437
2473
|
# specified details.
|
2438
2474
|
#
|
2439
2475
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -2501,15 +2537,14 @@ module Aws::SSMIncidents
|
|
2501
2537
|
# @return [String]
|
2502
2538
|
#
|
2503
2539
|
# @!attribute [rw] chat_channel
|
2504
|
-
# The
|
2505
|
-
# incident.
|
2540
|
+
# The Chatbot chat channel used for collaboration during an incident.
|
2506
2541
|
#
|
2507
2542
|
# Use the empty structure to remove the chat channel from the response
|
2508
2543
|
# plan.
|
2509
2544
|
# @return [Types::ChatChannel]
|
2510
2545
|
#
|
2511
2546
|
# @!attribute [rw] client_token
|
2512
|
-
# A token ensuring that the
|
2547
|
+
# A token ensuring that the operation is called only once with the
|
2513
2548
|
# specified details.
|
2514
2549
|
#
|
2515
2550
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -2517,7 +2552,8 @@ module Aws::SSMIncidents
|
|
2517
2552
|
# @return [String]
|
2518
2553
|
#
|
2519
2554
|
# @!attribute [rw] display_name
|
2520
|
-
# The long format name of the response plan.
|
2555
|
+
# The long format name of the response plan. The display name can't
|
2556
|
+
# contain spaces.
|
2521
2557
|
# @return [String]
|
2522
2558
|
#
|
2523
2559
|
# @!attribute [rw] engagements
|
@@ -2526,7 +2562,8 @@ module Aws::SSMIncidents
|
|
2526
2562
|
# @return [Array<String>]
|
2527
2563
|
#
|
2528
2564
|
# @!attribute [rw] incident_template_dedupe_string
|
2529
|
-
#
|
2565
|
+
# The string Incident Manager uses to prevent duplicate incidents from
|
2566
|
+
# being created by the same incident in the same account.
|
2530
2567
|
# @return [String]
|
2531
2568
|
#
|
2532
2569
|
# @!attribute [rw] incident_template_impact
|
@@ -2547,7 +2584,7 @@ module Aws::SSMIncidents
|
|
2547
2584
|
# @return [Integer]
|
2548
2585
|
#
|
2549
2586
|
# @!attribute [rw] incident_template_notification_targets
|
2550
|
-
# The SNS targets that are notified when updates are made to an
|
2587
|
+
# The Amazon SNS targets that are notified when updates are made to an
|
2551
2588
|
# incident.
|
2552
2589
|
# @return [Array<Types::NotificationTargetItem>]
|
2553
2590
|
#
|
@@ -2557,7 +2594,8 @@ module Aws::SSMIncidents
|
|
2557
2594
|
# @return [String]
|
2558
2595
|
#
|
2559
2596
|
# @!attribute [rw] incident_template_title
|
2560
|
-
# The short format name of the incident.
|
2597
|
+
# The short format name of the incident. The title can't contain
|
2598
|
+
# spaces.
|
2561
2599
|
# @return [String]
|
2562
2600
|
#
|
2563
2601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/UpdateResponsePlanInput AWS API Documentation
|
@@ -2595,7 +2633,7 @@ module Aws::SSMIncidents
|
|
2595
2633
|
# }
|
2596
2634
|
#
|
2597
2635
|
# @!attribute [rw] client_token
|
2598
|
-
# A token ensuring that the
|
2636
|
+
# A token ensuring that the operation is called only once with the
|
2599
2637
|
# specified details.
|
2600
2638
|
#
|
2601
2639
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -2620,8 +2658,8 @@ module Aws::SSMIncidents
|
|
2620
2658
|
# @return [String]
|
2621
2659
|
#
|
2622
2660
|
# @!attribute [rw] incident_record_arn
|
2623
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
2624
|
-
# event
|
2661
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
2662
|
+
# timeline event.
|
2625
2663
|
# @return [String]
|
2626
2664
|
#
|
2627
2665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/UpdateTimelineEventInput AWS API Documentation
|
@@ -2641,8 +2679,8 @@ module Aws::SSMIncidents
|
|
2641
2679
|
#
|
2642
2680
|
class UpdateTimelineEventOutput < Aws::EmptyStructure; end
|
2643
2681
|
|
2644
|
-
# The input fails to satisfy the constraints specified by an
|
2645
|
-
# service.
|
2682
|
+
# The input fails to satisfy the constraints specified by an Amazon Web
|
2683
|
+
# Services service.
|
2646
2684
|
#
|
2647
2685
|
# @!attribute [rw] message
|
2648
2686
|
# @return [String]
|
data/lib/aws-sdk-ssmincidents.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssmincidents
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|