aws-sdk-ssmincidents 1.21.0 → 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1172a9defe1aa5af2063fc48e262108b8a605966e943e84a085917016215daf1
4
- data.tar.gz: 6d15ee176e28ea246276f8f3f381877d4e6445e4ad17123338ddacc54f60b1fb
3
+ metadata.gz: b0e52bea8432cf3f6be9d1a08e4f4b0c8e686e075eacfd9d24a47299f8486dc5
4
+ data.tar.gz: 823e55019dc29a21fc09ab3ed81e00fddf528723030e576635c07e5e90a2b337
5
5
  SHA512:
6
- metadata.gz: 26dfb11b1d240cb6e2773272687561a4fb9395dee076a7bee880e6388891d2251beb9523b2490ad70399e00fcddba968a55d7cd33c6e7f8ed5f35db5d953b5c4
7
- data.tar.gz: e726935e0c9ac6fcda23894b3c9644a2d21006c88686a9d09685a9ce462402a9d5a94b554d4dcdb246c359dfd3ffa1faf71974dc75a41ca8998daecdc4789aff
6
+ metadata.gz: f1c1f6a999419a5c91bf1f595487a63a2902176a8912de8af699a5cee719f0fe7ad524e131789f9842641edcb1730fd8171dfd72f0ccf08af6a6436f4347fa6e
7
+ data.tar.gz: c391b15006f11267da2b3c1c488464094375af69b97a5a5f58bba4cdbc04e0ba09739b92630535424bbd311f751b56fbd3d4c79950ec2c22509f9bae32768c69
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2023-03-28)
5
+ ------------------
6
+
7
+ * Feature - Increased maximum length of "TriggerDetails.rawData" to 10K characters and "IncidentSummary" to 8K characters.
8
+
4
9
  1.21.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.22.0
@@ -533,13 +533,13 @@ module Aws::SSMIncidents
533
533
  end
534
534
 
535
535
  # Creates a custom timeline event on the incident details page of an
536
- # incident record. Timeline events are automatically created by Incident
537
- # Manager, marking key moment during an incident. You can create custom
538
- # timeline events to mark important events that are automatically
539
- # detected by Incident Manager.
536
+ # incident record. Incident Manager automatically creates timeline
537
+ # events that mark key moments during an incident. You can create custom
538
+ # timeline events to mark important events that Incident Manager can
539
+ # detect automatically.
540
540
  #
541
541
  # @option params [String] :client_token
542
- # A token ensuring that the action is called only once with the
542
+ # A token that ensures that a client calls the action only once with the
543
543
  # specified details.
544
544
  #
545
545
  # **A suitable default value is auto-generated.** You should normally
@@ -549,25 +549,24 @@ module Aws::SSMIncidents
549
549
  # A short description of the event.
550
550
  #
551
551
  # @option params [Array<Types::EventReference>] :event_references
552
- # Adds one or more references to the `TimelineEvent`. A reference can be
553
- # an Amazon Web Services resource involved in the incident or in some
554
- # way associated with it. When you specify a reference, you enter the
555
- # Amazon Resource Name (ARN) of the resource. You can also specify a
556
- # related item. As an example, you could specify the ARN of an Amazon
557
- # DynamoDB (DynamoDB) table. The table for this example is the resource.
558
- # You could also specify a Amazon CloudWatch metric for that table. The
559
- # metric is the related item.
552
+ # Adds one or more references to the `TimelineEvent`. A reference is an
553
+ # Amazon Web Services resource involved or associated with the incident.
554
+ # To specify a reference, enter its Amazon Resource Name (ARN). You can
555
+ # also specify a related item associated with a resource. For example,
556
+ # to specify an Amazon DynamoDB (DynamoDB) table as a resource, use the
557
+ # table's ARN. You can also specify an Amazon CloudWatch metric
558
+ # associated with the DynamoDB table as a related item.
560
559
  #
561
560
  # @option params [required, Time,DateTime,Date,Integer,String] :event_time
562
561
  # The time that the event occurred.
563
562
  #
564
563
  # @option params [required, String] :event_type
565
- # The type of the event. You can create timeline events of type `Custom
564
+ # The type of event. You can create timeline events of type `Custom
566
565
  # Event`.
567
566
  #
568
567
  # @option params [required, String] :incident_record_arn
569
- # The Amazon Resource Name (ARN) of the incident record to which the
570
- # event will be added.
568
+ # The Amazon Resource Name (ARN) of the incident record that the action
569
+ # adds the incident to.
571
570
  #
572
571
  # @return [Types::CreateTimelineEventOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
573
572
  #
@@ -706,8 +705,8 @@ module Aws::SSMIncidents
706
705
  # Deletes a timeline event from an incident.
707
706
  #
708
707
  # @option params [required, String] :event_id
709
- # The ID of the event you are updating. You can find this by using
710
- # `ListTimelineEvents`.
708
+ # The ID of the event to update. You can use `ListTimelineEvents` to
709
+ # find an event's ID.
711
710
  #
712
711
  # @option params [required, String] :incident_record_arn
713
712
  # The Amazon Resource Name (ARN) of the incident that includes the
@@ -980,8 +979,8 @@ module Aws::SSMIncidents
980
979
  # want to update.
981
980
  #
982
981
  # @option params [Array<Types::Filter>] :filters
983
- # Filters the list of incident records through which you are searching.
984
- # You can filter on the following keys:
982
+ # Filters the list of incident records you want to search through. You
983
+ # can filter on the following keys:
985
984
  #
986
985
  # * `creationTime`
987
986
  #
@@ -991,7 +990,7 @@ module Aws::SSMIncidents
991
990
  #
992
991
  # * `createdBy`
993
992
  #
994
- # Note the following when deciding how to use Filters:
993
+ # Note the following when when you use Filters:
995
994
  #
996
995
  # * If you don't specify a Filter, the response includes all incident
997
996
  # records.
@@ -1218,7 +1217,7 @@ module Aws::SSMIncidents
1218
1217
  #
1219
1218
  # @option params [Array<Types::Filter>] :filters
1220
1219
  # Filters the timeline events based on the provided conditional values.
1221
- # You can filter timeline events using the following keys:
1220
+ # You can filter timeline events with the following keys:
1222
1221
  #
1223
1222
  # * `eventTime`
1224
1223
  #
@@ -1246,7 +1245,7 @@ module Aws::SSMIncidents
1246
1245
  # The pagination token to continue to the next page of results.
1247
1246
  #
1248
1247
  # @option params [String] :sort_by
1249
- # Sort by the specified key value pair.
1248
+ # Sort timeline events by the specified key value pair.
1250
1249
  #
1251
1250
  # @option params [String] :sort_order
1252
1251
  # Sorts the order of timeline events by the value specified in the
@@ -1377,8 +1376,8 @@ module Aws::SSMIncidents
1377
1376
  #
1378
1377
  # @option params [Array<Types::RelatedItem>] :related_items
1379
1378
  # Add related items to the incident for other responders to use. Related
1380
- # items are AWS resources, external links, or files uploaded to an
1381
- # Amazon S3 bucket.
1379
+ # items are Amazon Web Services resources, external links, or files
1380
+ # uploaded to an Amazon S3 bucket.
1382
1381
  #
1383
1382
  # @option params [required, String] :response_plan_arn
1384
1383
  # The Amazon Resource Name (ARN) of the response plan that pre-defines
@@ -1551,16 +1550,16 @@ module Aws::SSMIncidents
1551
1550
  # The Chatbot chat channel where responders can collaborate.
1552
1551
  #
1553
1552
  # @option params [String] :client_token
1554
- # A token that ensures that the operation is called only once with the
1555
- # specified details.
1553
+ # A token that ensures that a client calls the operation only once with
1554
+ # the specified details.
1556
1555
  #
1557
1556
  # **A suitable default value is auto-generated.** You should normally
1558
1557
  # not need to pass this option.**
1559
1558
  #
1560
1559
  # @option params [Integer] :impact
1561
- # Defines the impact of the incident to customers and applications.
1562
- # Providing an impact overwrites the impact provided by the response
1563
- # plan.
1560
+ # Defines the impact of the incident to customers and applications. If
1561
+ # you provide an impact for an incident, it overwrites the impact
1562
+ # provided by the response plan.
1564
1563
  #
1565
1564
  # **Possible impacts:**
1566
1565
  #
@@ -1579,14 +1578,15 @@ module Aws::SSMIncidents
1579
1578
  # action is needed to avoid impact.
1580
1579
  #
1581
1580
  # @option params [Array<Types::NotificationTargetItem>] :notification_targets
1582
- # The Amazon SNS targets that are notified when updates are made to an
1583
- # incident.
1581
+ # The Amazon SNS targets that Incident Manager notifies when a client
1582
+ # updates an incident.
1584
1583
  #
1585
1584
  # Using multiple SNS topics creates redundancy in the event that a
1586
1585
  # Region is down during the incident.
1587
1586
  #
1588
1587
  # @option params [String] :status
1589
- # The status of the incident. An incident can be `Open` or `Resolved`.
1588
+ # The status of the incident. Possible statuses are `Open` or
1589
+ # `Resolved`.
1590
1590
  #
1591
1591
  # @option params [String] :summary
1592
1592
  # A longer description of what occurred during the incident.
@@ -1630,18 +1630,19 @@ module Aws::SSMIncidents
1630
1630
  # record.
1631
1631
  #
1632
1632
  # @option params [String] :client_token
1633
- # A token ensuring that the operation is called only once with the
1634
- # specified details.
1633
+ # A token that ensures that a client calls the operation only once with
1634
+ # the specified details.
1635
1635
  #
1636
1636
  # **A suitable default value is auto-generated.** You should normally
1637
1637
  # not need to pass this option.**
1638
1638
  #
1639
1639
  # @option params [required, String] :incident_record_arn
1640
- # The Amazon Resource Name (ARN) of the incident record containing the
1641
- # related items you are updating.
1640
+ # The Amazon Resource Name (ARN) of the incident record that contains
1641
+ # the related items that you update.
1642
1642
  #
1643
1643
  # @option params [required, Types::RelatedItemsUpdate] :related_items_update
1644
- # Details about the item you are adding or deleting.
1644
+ # Details about the item that you are add to, or delete from, an
1645
+ # incident.
1645
1646
  #
1646
1647
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1647
1648
  #
@@ -1880,8 +1881,8 @@ module Aws::SSMIncidents
1880
1881
  # Event`.
1881
1882
  #
1882
1883
  # @option params [String] :client_token
1883
- # A token ensuring that the operation is called only once with the
1884
- # specified details.
1884
+ # A token that ensures that a client calls the operation only once with
1885
+ # the specified details.
1885
1886
  #
1886
1887
  # **A suitable default value is auto-generated.** You should normally
1887
1888
  # not need to pass this option.**
@@ -1890,28 +1891,28 @@ module Aws::SSMIncidents
1890
1891
  # A short description of the event.
1891
1892
  #
1892
1893
  # @option params [required, String] :event_id
1893
- # The ID of the event you are updating. You can find this by using
1894
- # `ListTimelineEvents`.
1894
+ # The ID of the event to update. You can use `ListTimelineEvents` to
1895
+ # find an event's ID.
1895
1896
  #
1896
1897
  # @option params [Array<Types::EventReference>] :event_references
1897
- # Updates all existing references in a `TimelineEvent`. A reference can
1898
- # be an Amazon Web Services resource involved in the incident or in some
1899
- # way associated with it. When you specify a reference, you enter the
1900
- # Amazon Resource Name (ARN) of the resource. You can also specify a
1901
- # related item. As an example, you could specify the ARN of an Amazon
1902
- # DynamoDB (DynamoDB) table. The table for this example is the resource.
1903
- # You could also specify a Amazon CloudWatch metric for that table. The
1904
- # metric is the related item.
1898
+ # Updates all existing references in a `TimelineEvent`. A reference is
1899
+ # an Amazon Web Services resource involved or associated with the
1900
+ # incident. To specify a reference, enter its Amazon Resource Name
1901
+ # (ARN). You can also specify a related item associated with that
1902
+ # resource. For example, to specify an Amazon DynamoDB (DynamoDB) table
1903
+ # as a resource, use its ARN. You can also specify an Amazon CloudWatch
1904
+ # metric associated with the DynamoDB table as a related item.
1905
1905
  #
1906
1906
  # This update action overrides all existing references. If you want to
1907
1907
  # keep existing references, you must specify them in the call. If you
1908
- # don't, this action removes them and enters only new references.
1908
+ # don't, this action removes any existing references and enters only
1909
+ # new references.
1909
1910
  #
1910
1911
  # @option params [Time,DateTime,Date,Integer,String] :event_time
1911
1912
  # The time that the event occurred.
1912
1913
  #
1913
1914
  # @option params [String] :event_type
1914
- # The type of the event. You can update events of type `Custom Event`.
1915
+ # The type of event. You can update events of type `Custom Event`.
1915
1916
  #
1916
1917
  # @option params [required, String] :incident_record_arn
1917
1918
  # The Amazon Resource Name (ARN) of the incident that includes the
@@ -1958,7 +1959,7 @@ module Aws::SSMIncidents
1958
1959
  params: params,
1959
1960
  config: config)
1960
1961
  context[:gem_name] = 'aws-sdk-ssmincidents'
1961
- context[:gem_version] = '1.21.0'
1962
+ context[:gem_version] = '1.22.0'
1962
1963
  Seahorse::Client::Request.new(handlers, context)
1963
1964
  end
1964
1965
 
@@ -14,36 +14,39 @@ module Aws::SSMIncidents
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
- end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
- end
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
- end
37
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
- return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -327,8 +327,8 @@ module Aws::SSMIncidents
327
327
  end
328
328
 
329
329
  # @!attribute [rw] client_token
330
- # A token ensuring that the action is called only once with the
331
- # specified details.
330
+ # A token that ensures that a client calls the action only once with
331
+ # the specified details.
332
332
  #
333
333
  # **A suitable default value is auto-generated.** You should normally
334
334
  # not need to pass this option.
@@ -339,14 +339,14 @@ module Aws::SSMIncidents
339
339
  # @return [String]
340
340
  #
341
341
  # @!attribute [rw] event_references
342
- # Adds one or more references to the `TimelineEvent`. A reference can
343
- # be an Amazon Web Services resource involved in the incident or in
344
- # some way associated with it. When you specify a reference, you enter
345
- # the Amazon Resource Name (ARN) of the resource. You can also specify
346
- # a related item. As an example, you could specify the ARN of an
347
- # Amazon DynamoDB (DynamoDB) table. The table for this example is the
348
- # resource. You could also specify a Amazon CloudWatch metric for that
349
- # table. The metric is the related item.
342
+ # Adds one or more references to the `TimelineEvent`. A reference is
343
+ # an Amazon Web Services resource involved or associated with the
344
+ # incident. To specify a reference, enter its Amazon Resource Name
345
+ # (ARN). You can also specify a related item associated with a
346
+ # resource. For example, to specify an Amazon DynamoDB (DynamoDB)
347
+ # table as a resource, use the table's ARN. You can also specify an
348
+ # Amazon CloudWatch metric associated with the DynamoDB table as a
349
+ # related item.
350
350
  # @return [Array<Types::EventReference>]
351
351
  #
352
352
  # @!attribute [rw] event_time
@@ -354,13 +354,13 @@ module Aws::SSMIncidents
354
354
  # @return [Time]
355
355
  #
356
356
  # @!attribute [rw] event_type
357
- # The type of the event. You can create timeline events of type
358
- # `Custom Event`.
357
+ # The type of event. You can create timeline events of type `Custom
358
+ # Event`.
359
359
  # @return [String]
360
360
  #
361
361
  # @!attribute [rw] incident_record_arn
362
- # The Amazon Resource Name (ARN) of the incident record to which the
363
- # event will be added.
362
+ # The Amazon Resource Name (ARN) of the incident record that the
363
+ # action adds the incident to.
364
364
  # @return [String]
365
365
  #
366
366
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/CreateTimelineEventInput AWS API Documentation
@@ -482,8 +482,8 @@ module Aws::SSMIncidents
482
482
  class DeleteResponsePlanOutput < Aws::EmptyStructure; end
483
483
 
484
484
  # @!attribute [rw] event_id
485
- # The ID of the event you are updating. You can find this by using
486
- # `ListTimelineEvents`.
485
+ # The ID of the event to update. You can use `ListTimelineEvents` to
486
+ # find an event's ID.
487
487
  # @return [String]
488
488
  #
489
489
  # @!attribute [rw] incident_record_arn
@@ -1124,8 +1124,8 @@ module Aws::SSMIncidents
1124
1124
  end
1125
1125
 
1126
1126
  # @!attribute [rw] filters
1127
- # Filters the list of incident records through which you are
1128
- # searching. You can filter on the following keys:
1127
+ # Filters the list of incident records you want to search through. You
1128
+ # can filter on the following keys:
1129
1129
  #
1130
1130
  # * `creationTime`
1131
1131
  #
@@ -1135,7 +1135,7 @@ module Aws::SSMIncidents
1135
1135
  #
1136
1136
  # * `createdBy`
1137
1137
  #
1138
- # Note the following when deciding how to use Filters:
1138
+ # Note the following when when you use Filters:
1139
1139
  #
1140
1140
  # * If you don't specify a Filter, the response includes all incident
1141
1141
  # records.
@@ -1316,7 +1316,7 @@ module Aws::SSMIncidents
1316
1316
 
1317
1317
  # @!attribute [rw] filters
1318
1318
  # Filters the timeline events based on the provided conditional
1319
- # values. You can filter timeline events using the following keys:
1319
+ # values. You can filter timeline events with the following keys:
1320
1320
  #
1321
1321
  # * `eventTime`
1322
1322
  #
@@ -1348,7 +1348,7 @@ module Aws::SSMIncidents
1348
1348
  # @return [String]
1349
1349
  #
1350
1350
  # @!attribute [rw] sort_by
1351
- # Sort by the specified key value pair.
1351
+ # Sort timeline events by the specified key value pair.
1352
1352
  # @return [String]
1353
1353
  #
1354
1354
  # @!attribute [rw] sort_order
@@ -1851,8 +1851,8 @@ module Aws::SSMIncidents
1851
1851
  #
1852
1852
  # @!attribute [rw] related_items
1853
1853
  # Add related items to the incident for other responders to use.
1854
- # Related items are AWS resources, external links, or files uploaded
1855
- # to an Amazon S3 bucket.
1854
+ # Related items are Amazon Web Services resources, external links, or
1855
+ # files uploaded to an Amazon S3 bucket.
1856
1856
  # @return [Array<Types::RelatedItem>]
1857
1857
  #
1858
1858
  # @!attribute [rw] response_plan_arn
@@ -2085,17 +2085,17 @@ module Aws::SSMIncidents
2085
2085
  # @return [Types::ChatChannel]
2086
2086
  #
2087
2087
  # @!attribute [rw] client_token
2088
- # A token that ensures that the operation is called only once with the
2089
- # specified details.
2088
+ # A token that ensures that a client calls the operation only once
2089
+ # with the specified details.
2090
2090
  #
2091
2091
  # **A suitable default value is auto-generated.** You should normally
2092
2092
  # not need to pass this option.
2093
2093
  # @return [String]
2094
2094
  #
2095
2095
  # @!attribute [rw] impact
2096
- # Defines the impact of the incident to customers and applications.
2097
- # Providing an impact overwrites the impact provided by the response
2098
- # plan.
2096
+ # Defines the impact of the incident to customers and applications. If
2097
+ # you provide an impact for an incident, it overwrites the impact
2098
+ # provided by the response plan.
2099
2099
  #
2100
2100
  # **Possible impacts:**
2101
2101
  #
@@ -2115,15 +2115,16 @@ module Aws::SSMIncidents
2115
2115
  # @return [Integer]
2116
2116
  #
2117
2117
  # @!attribute [rw] notification_targets
2118
- # The Amazon SNS targets that are notified when updates are made to an
2119
- # incident.
2118
+ # The Amazon SNS targets that Incident Manager notifies when a client
2119
+ # updates an incident.
2120
2120
  #
2121
2121
  # Using multiple SNS topics creates redundancy in the event that a
2122
2122
  # Region is down during the incident.
2123
2123
  # @return [Array<Types::NotificationTargetItem>]
2124
2124
  #
2125
2125
  # @!attribute [rw] status
2126
- # The status of the incident. An incident can be `Open` or `Resolved`.
2126
+ # The status of the incident. Possible statuses are `Open` or
2127
+ # `Resolved`.
2127
2128
  # @return [String]
2128
2129
  #
2129
2130
  # @!attribute [rw] summary
@@ -2154,20 +2155,21 @@ module Aws::SSMIncidents
2154
2155
  class UpdateIncidentRecordOutput < Aws::EmptyStructure; end
2155
2156
 
2156
2157
  # @!attribute [rw] client_token
2157
- # A token ensuring that the operation is called only once with the
2158
- # specified details.
2158
+ # A token that ensures that a client calls the operation only once
2159
+ # with the specified details.
2159
2160
  #
2160
2161
  # **A suitable default value is auto-generated.** You should normally
2161
2162
  # not need to pass this option.
2162
2163
  # @return [String]
2163
2164
  #
2164
2165
  # @!attribute [rw] incident_record_arn
2165
- # The Amazon Resource Name (ARN) of the incident record containing the
2166
- # related items you are updating.
2166
+ # The Amazon Resource Name (ARN) of the incident record that contains
2167
+ # the related items that you update.
2167
2168
  # @return [String]
2168
2169
  #
2169
2170
  # @!attribute [rw] related_items_update
2170
- # Details about the item you are adding or deleting.
2171
+ # Details about the item that you are add to, or delete from, an
2172
+ # incident.
2171
2173
  # @return [Types::RelatedItemsUpdate]
2172
2174
  #
2173
2175
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-incidents-2018-05-10/UpdateRelatedItemsInput AWS API Documentation
@@ -2353,8 +2355,8 @@ module Aws::SSMIncidents
2353
2355
  class UpdateResponsePlanOutput < Aws::EmptyStructure; end
2354
2356
 
2355
2357
  # @!attribute [rw] client_token
2356
- # A token ensuring that the operation is called only once with the
2357
- # specified details.
2358
+ # A token that ensures that a client calls the operation only once
2359
+ # with the specified details.
2358
2360
  #
2359
2361
  # **A suitable default value is auto-generated.** You should normally
2360
2362
  # not need to pass this option.
@@ -2365,23 +2367,24 @@ module Aws::SSMIncidents
2365
2367
  # @return [String]
2366
2368
  #
2367
2369
  # @!attribute [rw] event_id
2368
- # The ID of the event you are updating. You can find this by using
2369
- # `ListTimelineEvents`.
2370
+ # The ID of the event to update. You can use `ListTimelineEvents` to
2371
+ # find an event's ID.
2370
2372
  # @return [String]
2371
2373
  #
2372
2374
  # @!attribute [rw] event_references
2373
- # Updates all existing references in a `TimelineEvent`. A reference
2374
- # can be an Amazon Web Services resource involved in the incident or
2375
- # in some way associated with it. When you specify a reference, you
2376
- # enter the Amazon Resource Name (ARN) of the resource. You can also
2377
- # specify a related item. As an example, you could specify the ARN of
2378
- # an Amazon DynamoDB (DynamoDB) table. The table for this example is
2379
- # the resource. You could also specify a Amazon CloudWatch metric for
2380
- # that table. The metric is the related item.
2375
+ # Updates all existing references in a `TimelineEvent`. A reference is
2376
+ # an Amazon Web Services resource involved or associated with the
2377
+ # incident. To specify a reference, enter its Amazon Resource Name
2378
+ # (ARN). You can also specify a related item associated with that
2379
+ # resource. For example, to specify an Amazon DynamoDB (DynamoDB)
2380
+ # table as a resource, use its ARN. You can also specify an Amazon
2381
+ # CloudWatch metric associated with the DynamoDB table as a related
2382
+ # item.
2381
2383
  #
2382
2384
  # This update action overrides all existing references. If you want to
2383
2385
  # keep existing references, you must specify them in the call. If you
2384
- # don't, this action removes them and enters only new references.
2386
+ # don't, this action removes any existing references and enters only
2387
+ # new references.
2385
2388
  # @return [Array<Types::EventReference>]
2386
2389
  #
2387
2390
  # @!attribute [rw] event_time
@@ -2389,7 +2392,7 @@ module Aws::SSMIncidents
2389
2392
  # @return [Time]
2390
2393
  #
2391
2394
  # @!attribute [rw] event_type
2392
- # The type of the event. You can update events of type `Custom Event`.
2395
+ # The type of event. You can update events of type `Custom Event`.
2393
2396
  # @return [String]
2394
2397
  #
2395
2398
  # @!attribute [rw] incident_record_arn
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ssmincidents/customizations'
53
53
  # @!group service
54
54
  module Aws::SSMIncidents
55
55
 
56
- GEM_VERSION = '1.21.0'
56
+ GEM_VERSION = '1.22.0'
57
57
 
58
58
  end
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.21.0
4
+ version: 1.22.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: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core