aws-sdk-ssmincidents 1.5.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssmincidents/client.rb +104 -61
- 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 +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fdf348d0717b43232064686039c3887c21466fbd613fc304beb2c12959d5e31f
|
4
|
+
data.tar.gz: eca67a487a5f2385d89a5714bb1c1a3b2f1ea71fb78da622e9625dac3733749c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58a173355d511763f95bb1bde10415614f4d60ce8e0275b8ef1a14e198792cd74aec626acbf36f845870c954226a81cccb3626bff4075699a4668b9c49c02a01
|
7
|
+
data.tar.gz: dfcc6c48ec14145067e924aa76eb83541c8e8ddcc1fbb9226ca18dfb5cbc9f928d253faba6a8f5534626d17960d3e96f134ca177ab78ca4f9b8c3c2263bb7b38
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.9.0 (2021-12-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.8.0 (2021-11-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.7.0 (2021-11-04)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.6.0 (2021-10-28)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Updating documentation, adding new field to ConflictException to indicate earliest retry timestamp for some operations, increase maximum length of nextToken fields
|
23
|
+
|
4
24
|
1.5.0 (2021-10-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.9.0
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::SSMIncidents
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::SSMIncidents
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::SSMIncidents
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -275,6 +283,15 @@ module Aws::SSMIncidents
|
|
275
283
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
284
|
# requests are made, and retries are disabled.
|
277
285
|
#
|
286
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
287
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
288
|
+
# will be used if available.
|
289
|
+
#
|
290
|
+
# @option options [Boolean] :use_fips_endpoint
|
291
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
292
|
+
# When a `fips` region is used, the region is normalized and this config
|
293
|
+
# is set to `true`.
|
294
|
+
#
|
278
295
|
# @option options [Boolean] :validate_params (true)
|
279
296
|
# When `true`, request parameters are validated before
|
280
297
|
# sending the request.
|
@@ -286,7 +303,7 @@ module Aws::SSMIncidents
|
|
286
303
|
# seconds to wait when opening a HTTP session before raising a
|
287
304
|
# `Timeout::Error`.
|
288
305
|
#
|
289
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
290
307
|
# number of seconds to wait for response data. This value can
|
291
308
|
# safely be set per-request on the session.
|
292
309
|
#
|
@@ -302,6 +319,9 @@ module Aws::SSMIncidents
|
|
302
319
|
# disables this behaviour. This value can safely be set per
|
303
320
|
# request on the session.
|
304
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
305
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
306
326
|
# HTTP debug output will be sent to the `:logger`.
|
307
327
|
#
|
@@ -331,7 +351,7 @@ module Aws::SSMIncidents
|
|
331
351
|
# Regions with the provided KMS key.
|
332
352
|
#
|
333
353
|
# @option params [String] :client_token
|
334
|
-
# A token ensuring that the
|
354
|
+
# A token ensuring that the operation is called only once with the
|
335
355
|
# specified details.
|
336
356
|
#
|
337
357
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -378,11 +398,10 @@ module Aws::SSMIncidents
|
|
378
398
|
# incident.
|
379
399
|
#
|
380
400
|
# @option params [Types::ChatChannel] :chat_channel
|
381
|
-
# The
|
382
|
-
# incident.
|
401
|
+
# The Chatbot chat channel used for collaboration during an incident.
|
383
402
|
#
|
384
403
|
# @option params [String] :client_token
|
385
|
-
# A token ensuring that the
|
404
|
+
# A token ensuring that the operation is called only once with the
|
386
405
|
# specified details.
|
387
406
|
#
|
388
407
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -477,8 +496,8 @@ module Aws::SSMIncidents
|
|
477
496
|
# not need to pass this option.**
|
478
497
|
#
|
479
498
|
# @option params [required, String] :event_data
|
480
|
-
# A valid JSON string. There is no
|
481
|
-
#
|
499
|
+
# A short description of the event as a valid JSON string. There is no
|
500
|
+
# other schema imposed.
|
482
501
|
#
|
483
502
|
# @option params [required, Time,DateTime,Date,Integer,String] :event_time
|
484
503
|
# The time that the event occurred.
|
@@ -488,8 +507,8 @@ module Aws::SSMIncidents
|
|
488
507
|
# Event`.
|
489
508
|
#
|
490
509
|
# @option params [required, String] :incident_record_arn
|
491
|
-
# The Amazon Resource Name (ARN) of the incident record
|
492
|
-
#
|
510
|
+
# The Amazon Resource Name (ARN) of the incident record to which the
|
511
|
+
# event will be added.
|
493
512
|
#
|
494
513
|
# @return [Types::CreateTimelineEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
495
514
|
#
|
@@ -567,8 +586,8 @@ module Aws::SSMIncidents
|
|
567
586
|
req.send_request(options)
|
568
587
|
end
|
569
588
|
|
570
|
-
# Deletes the resource policy that
|
571
|
-
#
|
589
|
+
# Deletes the resource policy that Resource Access Manager uses to share
|
590
|
+
# your Incident Manager resource.
|
572
591
|
#
|
573
592
|
# @option params [required, String] :policy_id
|
574
593
|
# The ID of the resource policy you're deleting.
|
@@ -626,8 +645,8 @@ module Aws::SSMIncidents
|
|
626
645
|
# `ListTimelineEvents`.
|
627
646
|
#
|
628
647
|
# @option params [required, String] :incident_record_arn
|
629
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
630
|
-
#
|
648
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
649
|
+
# timeline event.
|
631
650
|
#
|
632
651
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
633
652
|
#
|
@@ -647,7 +666,7 @@ module Aws::SSMIncidents
|
|
647
666
|
req.send_request(options)
|
648
667
|
end
|
649
668
|
|
650
|
-
# Returns the details
|
669
|
+
# Returns the details for the specified incident record.
|
651
670
|
#
|
652
671
|
# @option params [required, String] :arn
|
653
672
|
# The Amazon Resource Name (ARN) of the incident record.
|
@@ -843,12 +862,12 @@ module Aws::SSMIncidents
|
|
843
862
|
# Retrieves a timeline event based on its ID and incident record.
|
844
863
|
#
|
845
864
|
# @option params [required, String] :event_id
|
846
|
-
# The ID of the event. You can get an event's ID when you create it or
|
865
|
+
# The ID of the event. You can get an event's ID when you create it, or
|
847
866
|
# by using `ListTimelineEvents`.
|
848
867
|
#
|
849
868
|
# @option params [required, String] :incident_record_arn
|
850
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
851
|
-
#
|
869
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
870
|
+
# timeline event.
|
852
871
|
#
|
853
872
|
# @return [Types::GetTimelineEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
854
873
|
#
|
@@ -884,8 +903,8 @@ module Aws::SSMIncidents
|
|
884
903
|
# want to update.
|
885
904
|
#
|
886
905
|
# @option params [Array<Types::Filter>] :filters
|
887
|
-
#
|
888
|
-
# filter on the following keys:
|
906
|
+
# Filters the list of incident records through which you are searching.
|
907
|
+
# You can filter on the following keys:
|
889
908
|
#
|
890
909
|
# * `creationTime`
|
891
910
|
#
|
@@ -895,6 +914,17 @@ module Aws::SSMIncidents
|
|
895
914
|
#
|
896
915
|
# * `createdBy`
|
897
916
|
#
|
917
|
+
# Note the following when deciding how to use Filters:
|
918
|
+
#
|
919
|
+
# * If you don't specify a Filter, the response includes all incident
|
920
|
+
# records.
|
921
|
+
#
|
922
|
+
# * If you specify more than one filter in a single request, the
|
923
|
+
# response returns incident records that match all filters.
|
924
|
+
#
|
925
|
+
# * If you specify a filter with more than one value, the response
|
926
|
+
# returns incident records that match any of the values provided.
|
927
|
+
#
|
898
928
|
# @option params [Integer] :max_results
|
899
929
|
# The maximum number of results per page.
|
900
930
|
#
|
@@ -955,8 +985,8 @@ module Aws::SSMIncidents
|
|
955
985
|
# List all related items for an incident record.
|
956
986
|
#
|
957
987
|
# @option params [required, String] :incident_record_arn
|
958
|
-
# The Amazon Resource Name (ARN) of the incident record
|
959
|
-
#
|
988
|
+
# The Amazon Resource Name (ARN) of the incident record containing the
|
989
|
+
# listed related items.
|
960
990
|
#
|
961
991
|
# @option params [Integer] :max_results
|
962
992
|
# The maximum number of related items per page.
|
@@ -1103,7 +1133,7 @@ module Aws::SSMIncidents
|
|
1103
1133
|
req.send_request(options)
|
1104
1134
|
end
|
1105
1135
|
|
1106
|
-
# Lists timeline events
|
1136
|
+
# Lists timeline events for the specified incident record.
|
1107
1137
|
#
|
1108
1138
|
# @option params [Array<Types::Filter>] :filters
|
1109
1139
|
# Filters the timeline events based on the provided conditional values.
|
@@ -1113,9 +1143,20 @@ module Aws::SSMIncidents
|
|
1113
1143
|
#
|
1114
1144
|
# * `eventType`
|
1115
1145
|
#
|
1146
|
+
# Note the following when deciding how to use Filters:
|
1147
|
+
#
|
1148
|
+
# * If you don't specify a Filter, the response includes all timeline
|
1149
|
+
# events.
|
1150
|
+
#
|
1151
|
+
# * If you specify more than one filter in a single request, the
|
1152
|
+
# response returns timeline events that match all filters.
|
1153
|
+
#
|
1154
|
+
# * If you specify a filter with more than one value, the response
|
1155
|
+
# returns timeline events that match any of the values provided.
|
1156
|
+
#
|
1116
1157
|
# @option params [required, String] :incident_record_arn
|
1117
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
1118
|
-
#
|
1158
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
1159
|
+
# timeline event.
|
1119
1160
|
#
|
1120
1161
|
# @option params [Integer] :max_results
|
1121
1162
|
# The maximum number of results per page.
|
@@ -1216,7 +1257,7 @@ module Aws::SSMIncidents
|
|
1216
1257
|
# or manually.
|
1217
1258
|
#
|
1218
1259
|
# @option params [String] :client_token
|
1219
|
-
# A token ensuring that the
|
1260
|
+
# A token ensuring that the operation is called only once with the
|
1220
1261
|
# specified details.
|
1221
1262
|
#
|
1222
1263
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -1245,13 +1286,13 @@ module Aws::SSMIncidents
|
|
1245
1286
|
#
|
1246
1287
|
# @option params [Array<Types::RelatedItem>] :related_items
|
1247
1288
|
# 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.
|
1289
|
+
# items are AWS resources, external links, or files uploaded to an
|
1290
|
+
# Amazon S3 bucket.
|
1250
1291
|
#
|
1251
1292
|
# @option params [required, String] :response_plan_arn
|
1252
1293
|
# The Amazon Resource Name (ARN) of the response plan that pre-defines
|
1253
|
-
# summary, chat channels, SNS topics, runbooks, title, and impact
|
1254
|
-
# incident.
|
1294
|
+
# summary, chat channels, Amazon SNS topics, runbooks, title, and impact
|
1295
|
+
# of the incident.
|
1255
1296
|
#
|
1256
1297
|
# @option params [String] :title
|
1257
1298
|
# Provide a title for the incident. Providing a title overwrites the
|
@@ -1369,7 +1410,7 @@ module Aws::SSMIncidents
|
|
1369
1410
|
# updating.
|
1370
1411
|
#
|
1371
1412
|
# @option params [String] :client_token
|
1372
|
-
# A token ensuring that the
|
1413
|
+
# A token ensuring that the operation is called only once with the
|
1373
1414
|
# specified details.
|
1374
1415
|
#
|
1375
1416
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -1397,8 +1438,8 @@ module Aws::SSMIncidents
|
|
1397
1438
|
req.send_request(options)
|
1398
1439
|
end
|
1399
1440
|
|
1400
|
-
# Update the details of an incident record. You can use this
|
1401
|
-
# update an incident record from the defined chat channel. For more
|
1441
|
+
# Update the details of an incident record. You can use this operation
|
1442
|
+
# to update an incident record from the defined chat channel. For more
|
1402
1443
|
# information about using actions in chat channels, see [Interacting
|
1403
1444
|
# through chat][1].
|
1404
1445
|
#
|
@@ -1411,23 +1452,24 @@ module Aws::SSMIncidents
|
|
1411
1452
|
# updating.
|
1412
1453
|
#
|
1413
1454
|
# @option params [Types::ChatChannel] :chat_channel
|
1414
|
-
# The
|
1455
|
+
# The Chatbot chat channel where responders can collaborate.
|
1415
1456
|
#
|
1416
1457
|
# @option params [String] :client_token
|
1417
|
-
# A token
|
1458
|
+
# A token that ensures that the operation is called only once with the
|
1418
1459
|
# specified details.
|
1419
1460
|
#
|
1420
1461
|
# **A suitable default value is auto-generated.** You should normally
|
1421
1462
|
# not need to pass this option.**
|
1422
1463
|
#
|
1423
1464
|
# @option params [Integer] :impact
|
1424
|
-
# Defines the impact to customers and applications.
|
1425
|
-
# overwrites the impact provided by the response
|
1465
|
+
# Defines the impact of the incident to customers and applications.
|
1466
|
+
# Providing an impact overwrites the impact provided by the response
|
1467
|
+
# plan.
|
1426
1468
|
#
|
1427
1469
|
# **Possible impacts:**
|
1428
1470
|
#
|
1429
|
-
# * `1` - Critical impact,
|
1430
|
-
#
|
1471
|
+
# * `1` - Critical impact, full application failure that impacts many to
|
1472
|
+
# all customers.
|
1431
1473
|
#
|
1432
1474
|
# * `2` - High impact, partial application failure with impact to many
|
1433
1475
|
# customers.
|
@@ -1435,27 +1477,26 @@ module Aws::SSMIncidents
|
|
1435
1477
|
# * `3` - Medium impact, the application is providing reduced service to
|
1436
1478
|
# customers.
|
1437
1479
|
#
|
1438
|
-
# * `4` - Low impact, customer
|
1439
|
-
# yet.
|
1480
|
+
# * `4` - Low impact, customer aren't impacted by the problem yet.
|
1440
1481
|
#
|
1441
1482
|
# * `5` - No impact, customers aren't currently impacted but urgent
|
1442
1483
|
# action is needed to avoid impact.
|
1443
1484
|
#
|
1444
1485
|
# @option params [Array<Types::NotificationTargetItem>] :notification_targets
|
1445
|
-
# The SNS targets that are notified when updates are made to an
|
1486
|
+
# The Amazon SNS targets that are notified when updates are made to an
|
1446
1487
|
# incident.
|
1447
1488
|
#
|
1448
|
-
# Using multiple SNS topics creates redundancy in the
|
1449
|
-
# is down during the incident.
|
1489
|
+
# Using multiple SNS topics creates redundancy in the event that a
|
1490
|
+
# Region is down during the incident.
|
1450
1491
|
#
|
1451
1492
|
# @option params [String] :status
|
1452
1493
|
# The status of the incident. An incident can be `Open` or `Resolved`.
|
1453
1494
|
#
|
1454
1495
|
# @option params [String] :summary
|
1455
|
-
#
|
1496
|
+
# A longer description of what occurred during the incident.
|
1456
1497
|
#
|
1457
1498
|
# @option params [String] :title
|
1458
|
-
#
|
1499
|
+
# A brief description of the incident.
|
1459
1500
|
#
|
1460
1501
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1461
1502
|
#
|
@@ -1493,15 +1534,15 @@ module Aws::SSMIncidents
|
|
1493
1534
|
# record.
|
1494
1535
|
#
|
1495
1536
|
# @option params [String] :client_token
|
1496
|
-
# A token ensuring that the
|
1537
|
+
# A token ensuring that the operation is called only once with the
|
1497
1538
|
# specified details.
|
1498
1539
|
#
|
1499
1540
|
# **A suitable default value is auto-generated.** You should normally
|
1500
1541
|
# not need to pass this option.**
|
1501
1542
|
#
|
1502
1543
|
# @option params [required, String] :incident_record_arn
|
1503
|
-
# The Amazon Resource Name (ARN) of the incident record
|
1504
|
-
# related items
|
1544
|
+
# The Amazon Resource Name (ARN) of the incident record containing the
|
1545
|
+
# related items you are updating.
|
1505
1546
|
#
|
1506
1547
|
# @option params [required, Types::RelatedItemsUpdate] :related_items_update
|
1507
1548
|
# Details about the item you are adding or deleting.
|
@@ -1555,7 +1596,7 @@ module Aws::SSMIncidents
|
|
1555
1596
|
# updating.
|
1556
1597
|
#
|
1557
1598
|
# @option params [String] :client_token
|
1558
|
-
# A token ensuring that the
|
1599
|
+
# A token ensuring that the operation is called only once with the
|
1559
1600
|
# specified details.
|
1560
1601
|
#
|
1561
1602
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -1600,28 +1641,29 @@ module Aws::SSMIncidents
|
|
1600
1641
|
# The Amazon Resource Name (ARN) of the response plan.
|
1601
1642
|
#
|
1602
1643
|
# @option params [Types::ChatChannel] :chat_channel
|
1603
|
-
# The
|
1604
|
-
# incident.
|
1644
|
+
# The Chatbot chat channel used for collaboration during an incident.
|
1605
1645
|
#
|
1606
1646
|
# Use the empty structure to remove the chat channel from the response
|
1607
1647
|
# plan.
|
1608
1648
|
#
|
1609
1649
|
# @option params [String] :client_token
|
1610
|
-
# A token ensuring that the
|
1650
|
+
# A token ensuring that the operation is called only once with the
|
1611
1651
|
# specified details.
|
1612
1652
|
#
|
1613
1653
|
# **A suitable default value is auto-generated.** You should normally
|
1614
1654
|
# not need to pass this option.**
|
1615
1655
|
#
|
1616
1656
|
# @option params [String] :display_name
|
1617
|
-
# The long format name of the response plan.
|
1657
|
+
# The long format name of the response plan. The display name can't
|
1658
|
+
# contain spaces.
|
1618
1659
|
#
|
1619
1660
|
# @option params [Array<String>] :engagements
|
1620
1661
|
# The contacts and escalation plans that Incident Manager engages at the
|
1621
1662
|
# start of the incident.
|
1622
1663
|
#
|
1623
1664
|
# @option params [String] :incident_template_dedupe_string
|
1624
|
-
#
|
1665
|
+
# The string Incident Manager uses to prevent duplicate incidents from
|
1666
|
+
# being created by the same incident in the same account.
|
1625
1667
|
#
|
1626
1668
|
# @option params [Integer] :incident_template_impact
|
1627
1669
|
# Defines the impact to the customers. Providing an impact overwrites
|
@@ -1640,7 +1682,7 @@ module Aws::SSMIncidents
|
|
1640
1682
|
# * `1` - No impact
|
1641
1683
|
#
|
1642
1684
|
# @option params [Array<Types::NotificationTargetItem>] :incident_template_notification_targets
|
1643
|
-
# The SNS targets that are notified when updates are made to an
|
1685
|
+
# The Amazon SNS targets that are notified when updates are made to an
|
1644
1686
|
# incident.
|
1645
1687
|
#
|
1646
1688
|
# @option params [String] :incident_template_summary
|
@@ -1648,7 +1690,8 @@ module Aws::SSMIncidents
|
|
1648
1690
|
# happened, what's currently happening, and next steps.
|
1649
1691
|
#
|
1650
1692
|
# @option params [String] :incident_template_title
|
1651
|
-
# The short format name of the incident.
|
1693
|
+
# The short format name of the incident. The title can't contain
|
1694
|
+
# spaces.
|
1652
1695
|
#
|
1653
1696
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1654
1697
|
#
|
@@ -1701,7 +1744,7 @@ module Aws::SSMIncidents
|
|
1701
1744
|
# Event`.
|
1702
1745
|
#
|
1703
1746
|
# @option params [String] :client_token
|
1704
|
-
# A token ensuring that the
|
1747
|
+
# A token ensuring that the operation is called only once with the
|
1705
1748
|
# specified details.
|
1706
1749
|
#
|
1707
1750
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -1721,8 +1764,8 @@ module Aws::SSMIncidents
|
|
1721
1764
|
# The type of the event. You can update events of type `Custom Event`.
|
1722
1765
|
#
|
1723
1766
|
# @option params [required, String] :incident_record_arn
|
1724
|
-
# The Amazon Resource Name (ARN) of the incident that the
|
1725
|
-
#
|
1767
|
+
# The Amazon Resource Name (ARN) of the incident that includes the
|
1768
|
+
# timeline event.
|
1726
1769
|
#
|
1727
1770
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1728
1771
|
#
|
@@ -1759,7 +1802,7 @@ module Aws::SSMIncidents
|
|
1759
1802
|
params: params,
|
1760
1803
|
config: config)
|
1761
1804
|
context[:gem_name] = 'aws-sdk-ssmincidents'
|
1762
|
-
context[:gem_version] = '1.
|
1805
|
+
context[:gem_version] = '1.9.0'
|
1763
1806
|
Seahorse::Client::Request.new(handlers, context)
|
1764
1807
|
end
|
1765
1808
|
|
@@ -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.9.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-
|
11
|
+
date: 2021-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.125.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.125.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|