aws-sdk-ssmincidents 1.20.0 → 1.21.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: f0916452fe2b57acc4d8657fd01a288ed4077c594f87dcc3b75c0fa930be8f4a
4
- data.tar.gz: b2761b43a13eb81e78843155d3b2210dc57e6adc155fa85f7f92797e4e05e891
3
+ metadata.gz: 1172a9defe1aa5af2063fc48e262108b8a605966e943e84a085917016215daf1
4
+ data.tar.gz: 6d15ee176e28ea246276f8f3f381877d4e6445e4ad17123338ddacc54f60b1fb
5
5
  SHA512:
6
- metadata.gz: 952b2f51278c74dacb3b651666a695a8bc74f27ad6fa6e0b1ff703a0729ca5e357b61dffe6bca9dfdb2460d6f6228e62f72fb25c90a3b258c5b2e2e52be0a69d
7
- data.tar.gz: 9be9d43f8986f0e27a08c4804d098d1ad06bb7f2e2082dd860c131c36eb04b4f68789a5dbb667c1a3742829a6547d8a8ffc85cb35978bd97a244bcb21a86d2ef
6
+ metadata.gz: 26dfb11b1d240cb6e2773272687561a4fb9395dee076a7bee880e6388891d2251beb9523b2490ad70399e00fcddba968a55d7cd33c6e7f8ed5f35db5d953b5c4
7
+ data.tar.gz: e726935e0c9ac6fcda23894b3c9644a2d21006c88686a9d09685a9ce462402a9d5a94b554d4dcdb246c359dfd3ffa1faf71974dc75a41ca8998daecdc4789aff
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.21.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.20.0 (2022-11-16)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.21.0
@@ -1958,7 +1958,7 @@ module Aws::SSMIncidents
1958
1958
  params: params,
1959
1959
  config: config)
1960
1960
  context[:gem_name] = 'aws-sdk-ssmincidents'
1961
- context[:gem_version] = '1.20.0'
1961
+ context[:gem_version] = '1.21.0'
1962
1962
  Seahorse::Client::Request.new(handlers, context)
1963
1963
  end
1964
1964
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::SSMIncidents
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
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
33
+ 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"
38
+ end
39
+ 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: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-incidents.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3NzbS1pbmNpZGVudHMtZmlwcy57UmVnaW9u
77
- fS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9w
78
- ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
79
- LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNr
80
- IGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
81
- cG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
82
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
83
- c2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
84
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
85
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
86
- bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
87
- IjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
88
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc3Nt
89
- LWluY2lkZW50cy1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5z
90
- U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
91
- OiJlbmRwb2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJ
92
- UFMgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
93
- cG9ydCBGSVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7
94
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
95
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
96
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
97
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
98
- In0sInN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1
99
- bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0
100
- cHM6Ly9zc20taW5jaWRlbnRzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQj
101
- ZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJz
102
- Ijp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwi
103
- ZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRp
104
- b24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3Ii
105
- fV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
106
- Oi8vc3NtLWluY2lkZW50cy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ru
107
- c1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
108
- IjoiZW5kcG9pbnQifV19XX0=
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -51,14 +51,6 @@ module Aws::SSMIncidents
51
51
  # Defines the Amazon Web Services Region and KMS key to add to the
52
52
  # replication set.
53
53
  #
54
- # @note When making an API call, you may pass AddRegionAction
55
- # data as a hash:
56
- #
57
- # {
58
- # region_name: "RegionName", # required
59
- # sse_kms_key_id: "SseKmsKey",
60
- # }
61
- #
62
54
  # @!attribute [rw] region_name
63
55
  # The Amazon Web Services Region name to add to the replication set.
64
56
  # @return [String]
@@ -223,21 +215,6 @@ module Aws::SSMIncidents
223
215
  include Aws::Structure
224
216
  end
225
217
 
226
- # @note When making an API call, you may pass CreateReplicationSetInput
227
- # data as a hash:
228
- #
229
- # {
230
- # client_token: "ClientToken",
231
- # regions: { # required
232
- # "RegionName" => {
233
- # sse_kms_key_id: "SseKmsKey",
234
- # },
235
- # },
236
- # tags: {
237
- # "TagKey" => "TagValue",
238
- # },
239
- # }
240
- #
241
218
  # @!attribute [rw] client_token
242
219
  # A token that ensures that the operation is called only once with the
243
220
  # specified details.
@@ -277,67 +254,6 @@ module Aws::SSMIncidents
277
254
  include Aws::Structure
278
255
  end
279
256
 
280
- # @note When making an API call, you may pass CreateResponsePlanInput
281
- # data as a hash:
282
- #
283
- # {
284
- # actions: [
285
- # {
286
- # ssm_automation: {
287
- # document_name: "SsmAutomationDocumentNameString", # required
288
- # document_version: "SsmAutomationDocumentVersionString",
289
- # dynamic_parameters: {
290
- # "DynamicSsmParametersKeyString" => {
291
- # variable: "INCIDENT_RECORD_ARN", # accepts INCIDENT_RECORD_ARN, INVOLVED_RESOURCES
292
- # },
293
- # },
294
- # parameters: {
295
- # "SsmParametersKeyString" => ["SsmParameterValuesMemberString"],
296
- # },
297
- # role_arn: "RoleArn", # required
298
- # target_account: "RESPONSE_PLAN_OWNER_ACCOUNT", # accepts RESPONSE_PLAN_OWNER_ACCOUNT, IMPACTED_ACCOUNT
299
- # },
300
- # },
301
- # ],
302
- # chat_channel: {
303
- # chatbot_sns: ["SnsArn"],
304
- # empty: {
305
- # },
306
- # },
307
- # client_token: "ClientToken",
308
- # display_name: "ResponsePlanDisplayName",
309
- # engagements: ["SsmContactsArn"],
310
- # incident_template: { # required
311
- # dedupe_string: "DedupeString",
312
- # impact: 1, # required
313
- # incident_tags: {
314
- # "TagKey" => "TagValue",
315
- # },
316
- # notification_targets: [
317
- # {
318
- # sns_topic_arn: "Arn",
319
- # },
320
- # ],
321
- # summary: "IncidentSummary",
322
- # title: "IncidentTitle", # required
323
- # },
324
- # integrations: [
325
- # {
326
- # pager_duty_configuration: {
327
- # name: "PagerDutyConfigurationNameString", # required
328
- # pager_duty_incident_configuration: { # required
329
- # service_id: "PagerDutyIncidentConfigurationServiceIdString", # required
330
- # },
331
- # secret_id: "PagerDutyConfigurationSecretIdString", # required
332
- # },
333
- # },
334
- # ],
335
- # name: "ResponsePlanName", # required
336
- # tags: {
337
- # "TagKey" => "TagValue",
338
- # },
339
- # }
340
- #
341
257
  # @!attribute [rw] actions
342
258
  # The actions that the response plan starts at the beginning of an
343
259
  # incident.
@@ -410,23 +326,6 @@ module Aws::SSMIncidents
410
326
  include Aws::Structure
411
327
  end
412
328
 
413
- # @note When making an API call, you may pass CreateTimelineEventInput
414
- # data as a hash:
415
- #
416
- # {
417
- # client_token: "ClientToken",
418
- # event_data: "EventData", # required
419
- # event_references: [
420
- # {
421
- # related_item_id: "GeneratedId",
422
- # resource: "Arn",
423
- # },
424
- # ],
425
- # event_time: Time.now, # required
426
- # event_type: "TimelineEventType", # required
427
- # incident_record_arn: "Arn", # required
428
- # }
429
- #
430
329
  # @!attribute [rw] client_token
431
330
  # A token ensuring that the action is called only once with the
432
331
  # specified details.
@@ -494,13 +393,6 @@ module Aws::SSMIncidents
494
393
  include Aws::Structure
495
394
  end
496
395
 
497
- # @note When making an API call, you may pass DeleteIncidentRecordInput
498
- # data as a hash:
499
- #
500
- # {
501
- # arn: "Arn", # required
502
- # }
503
- #
504
396
  # @!attribute [rw] arn
505
397
  # The Amazon Resource Name (ARN) of the incident record you are
506
398
  # deleting.
@@ -521,13 +413,6 @@ module Aws::SSMIncidents
521
413
  # Defines the information about the Amazon Web Services Region you're
522
414
  # deleting from your replication set.
523
415
  #
524
- # @note When making an API call, you may pass DeleteRegionAction
525
- # data as a hash:
526
- #
527
- # {
528
- # region_name: "RegionName", # required
529
- # }
530
- #
531
416
  # @!attribute [rw] region_name
532
417
  # The name of the Amazon Web Services Region you're deleting from the
533
418
  # replication set.
@@ -541,13 +426,6 @@ module Aws::SSMIncidents
541
426
  include Aws::Structure
542
427
  end
543
428
 
544
- # @note When making an API call, you may pass DeleteReplicationSetInput
545
- # data as a hash:
546
- #
547
- # {
548
- # arn: "Arn", # required
549
- # }
550
- #
551
429
  # @!attribute [rw] arn
552
430
  # The Amazon Resource Name (ARN) of the replication set you're
553
431
  # deleting.
@@ -565,14 +443,6 @@ module Aws::SSMIncidents
565
443
  #
566
444
  class DeleteReplicationSetOutput < Aws::EmptyStructure; end
567
445
 
568
- # @note When making an API call, you may pass DeleteResourcePolicyInput
569
- # data as a hash:
570
- #
571
- # {
572
- # policy_id: "PolicyId", # required
573
- # resource_arn: "Arn", # required
574
- # }
575
- #
576
446
  # @!attribute [rw] policy_id
577
447
  # The ID of the resource policy you're deleting.
578
448
  # @return [String]
@@ -595,13 +465,6 @@ module Aws::SSMIncidents
595
465
  #
596
466
  class DeleteResourcePolicyOutput < Aws::EmptyStructure; end
597
467
 
598
- # @note When making an API call, you may pass DeleteResponsePlanInput
599
- # data as a hash:
600
- #
601
- # {
602
- # arn: "Arn", # required
603
- # }
604
- #
605
468
  # @!attribute [rw] arn
606
469
  # The Amazon Resource Name (ARN) of the response plan.
607
470
  # @return [String]
@@ -618,14 +481,6 @@ module Aws::SSMIncidents
618
481
  #
619
482
  class DeleteResponsePlanOutput < Aws::EmptyStructure; end
620
483
 
621
- # @note When making an API call, you may pass DeleteTimelineEventInput
622
- # data as a hash:
623
- #
624
- # {
625
- # event_id: "UUID", # required
626
- # incident_record_arn: "Arn", # required
627
- # }
628
- #
629
484
  # @!attribute [rw] event_id
630
485
  # The ID of the event you are updating. You can find this by using
631
486
  # `ListTimelineEvents`.
@@ -756,21 +611,6 @@ module Aws::SSMIncidents
756
611
 
757
612
  # Filter the selection by using a condition.
758
613
  #
759
- # @note When making an API call, you may pass Filter
760
- # data as a hash:
761
- #
762
- # {
763
- # condition: { # required
764
- # after: Time.now,
765
- # before: Time.now,
766
- # equals: {
767
- # integer_values: [1],
768
- # string_values: ["StringListMemberString"],
769
- # },
770
- # },
771
- # key: "FilterKeyString", # required
772
- # }
773
- #
774
614
  # @!attribute [rw] condition
775
615
  # The condition accepts before or after a specified time, equal to a
776
616
  # string, or equal to an integer.
@@ -789,13 +629,6 @@ module Aws::SSMIncidents
789
629
  include Aws::Structure
790
630
  end
791
631
 
792
- # @note When making an API call, you may pass GetIncidentRecordInput
793
- # data as a hash:
794
- #
795
- # {
796
- # arn: "Arn", # required
797
- # }
798
- #
799
632
  # @!attribute [rw] arn
800
633
  # The Amazon Resource Name (ARN) of the incident record.
801
634
  # @return [String]
@@ -820,13 +653,6 @@ module Aws::SSMIncidents
820
653
  include Aws::Structure
821
654
  end
822
655
 
823
- # @note When making an API call, you may pass GetReplicationSetInput
824
- # data as a hash:
825
- #
826
- # {
827
- # arn: "Arn", # required
828
- # }
829
- #
830
656
  # @!attribute [rw] arn
831
657
  # The Amazon Resource Name (ARN) of the replication set you want to
832
658
  # retrieve.
@@ -852,15 +678,6 @@ module Aws::SSMIncidents
852
678
  include Aws::Structure
853
679
  end
854
680
 
855
- # @note When making an API call, you may pass GetResourcePoliciesInput
856
- # data as a hash:
857
- #
858
- # {
859
- # max_results: 1,
860
- # next_token: "NextToken",
861
- # resource_arn: "Arn", # required
862
- # }
863
- #
864
681
  # @!attribute [rw] max_results
865
682
  # The maximum number of resource policies to display for each page of
866
683
  # results.
@@ -902,13 +719,6 @@ module Aws::SSMIncidents
902
719
  include Aws::Structure
903
720
  end
904
721
 
905
- # @note When making an API call, you may pass GetResponsePlanInput
906
- # data as a hash:
907
- #
908
- # {
909
- # arn: "Arn", # required
910
- # }
911
- #
912
722
  # @!attribute [rw] arn
913
723
  # The Amazon Resource Name (ARN) of the response plan.
914
724
  # @return [String]
@@ -972,14 +782,6 @@ module Aws::SSMIncidents
972
782
  include Aws::Structure
973
783
  end
974
784
 
975
- # @note When making an API call, you may pass GetTimelineEventInput
976
- # data as a hash:
977
- #
978
- # {
979
- # event_id: "UUID", # required
980
- # incident_record_arn: "Arn", # required
981
- # }
982
- #
983
785
  # @!attribute [rw] event_id
984
786
  # The ID of the event. You can get an event's ID when you create it,
985
787
  # or by using `ListTimelineEvents`.
@@ -1177,24 +979,6 @@ module Aws::SSMIncidents
1177
979
  # Basic details used in creating a response plan. The response plan is
1178
980
  # then used to create an incident record.
1179
981
  #
1180
- # @note When making an API call, you may pass IncidentTemplate
1181
- # data as a hash:
1182
- #
1183
- # {
1184
- # dedupe_string: "DedupeString",
1185
- # impact: 1, # required
1186
- # incident_tags: {
1187
- # "TagKey" => "TagValue",
1188
- # },
1189
- # notification_targets: [
1190
- # {
1191
- # sns_topic_arn: "Arn",
1192
- # },
1193
- # ],
1194
- # summary: "IncidentSummary",
1195
- # title: "IncidentTitle", # required
1196
- # }
1197
- #
1198
982
  # @!attribute [rw] dedupe_string
1199
983
  # Used to stop Incident Manager from creating multiple incident
1200
984
  # records for the same incident.
@@ -1278,23 +1062,6 @@ module Aws::SSMIncidents
1278
1062
 
1279
1063
  # Details and type of a related item.
1280
1064
  #
1281
- # @note When making an API call, you may pass ItemIdentifier
1282
- # data as a hash:
1283
- #
1284
- # {
1285
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
1286
- # value: { # required
1287
- # arn: "Arn",
1288
- # metric_definition: "MetricDefinition",
1289
- # pager_duty_incident_detail: {
1290
- # auto_resolve: false,
1291
- # id: "PagerDutyIncidentDetailIdString", # required
1292
- # secret_id: "PagerDutyIncidentDetailSecretIdString",
1293
- # },
1294
- # url: "Url",
1295
- # },
1296
- # }
1297
- #
1298
1065
  # @!attribute [rw] type
1299
1066
  # The type of related item.
1300
1067
  # @return [String]
@@ -1356,27 +1123,6 @@ module Aws::SSMIncidents
1356
1123
  class Unknown < ItemValue; end
1357
1124
  end
1358
1125
 
1359
- # @note When making an API call, you may pass ListIncidentRecordsInput
1360
- # data as a hash:
1361
- #
1362
- # {
1363
- # filters: [
1364
- # {
1365
- # condition: { # required
1366
- # after: Time.now,
1367
- # before: Time.now,
1368
- # equals: {
1369
- # integer_values: [1],
1370
- # string_values: ["StringListMemberString"],
1371
- # },
1372
- # },
1373
- # key: "FilterKeyString", # required
1374
- # },
1375
- # ],
1376
- # max_results: 1,
1377
- # next_token: "NextToken",
1378
- # }
1379
- #
1380
1126
  # @!attribute [rw] filters
1381
1127
  # Filters the list of incident records through which you are
1382
1128
  # searching. You can filter on the following keys:
@@ -1436,15 +1182,6 @@ module Aws::SSMIncidents
1436
1182
  include Aws::Structure
1437
1183
  end
1438
1184
 
1439
- # @note When making an API call, you may pass ListRelatedItemsInput
1440
- # data as a hash:
1441
- #
1442
- # {
1443
- # incident_record_arn: "Arn", # required
1444
- # max_results: 1,
1445
- # next_token: "NextToken",
1446
- # }
1447
- #
1448
1185
  # @!attribute [rw] incident_record_arn
1449
1186
  # The Amazon Resource Name (ARN) of the incident record containing the
1450
1187
  # listed related items.
@@ -1485,14 +1222,6 @@ module Aws::SSMIncidents
1485
1222
  include Aws::Structure
1486
1223
  end
1487
1224
 
1488
- # @note When making an API call, you may pass ListReplicationSetsInput
1489
- # data as a hash:
1490
- #
1491
- # {
1492
- # max_results: 1,
1493
- # next_token: "NextToken",
1494
- # }
1495
- #
1496
1225
  # @!attribute [rw] max_results
1497
1226
  # The maximum number of results per page.
1498
1227
  # @return [Integer]
@@ -1527,14 +1256,6 @@ module Aws::SSMIncidents
1527
1256
  include Aws::Structure
1528
1257
  end
1529
1258
 
1530
- # @note When making an API call, you may pass ListResponsePlansInput
1531
- # data as a hash:
1532
- #
1533
- # {
1534
- # max_results: 1,
1535
- # next_token: "NextToken",
1536
- # }
1537
- #
1538
1259
  # @!attribute [rw] max_results
1539
1260
  # The maximum number of response plans per page.
1540
1261
  # @return [Integer]
@@ -1569,13 +1290,6 @@ module Aws::SSMIncidents
1569
1290
  include Aws::Structure
1570
1291
  end
1571
1292
 
1572
- # @note When making an API call, you may pass ListTagsForResourceRequest
1573
- # data as a hash:
1574
- #
1575
- # {
1576
- # resource_arn: "String", # required
1577
- # }
1578
- #
1579
1293
  # @!attribute [rw] resource_arn
1580
1294
  # The Amazon Resource Name (ARN) of the response plan.
1581
1295
  # @return [String]
@@ -1600,30 +1314,6 @@ module Aws::SSMIncidents
1600
1314
  include Aws::Structure
1601
1315
  end
1602
1316
 
1603
- # @note When making an API call, you may pass ListTimelineEventsInput
1604
- # data as a hash:
1605
- #
1606
- # {
1607
- # filters: [
1608
- # {
1609
- # condition: { # required
1610
- # after: Time.now,
1611
- # before: Time.now,
1612
- # equals: {
1613
- # integer_values: [1],
1614
- # string_values: ["StringListMemberString"],
1615
- # },
1616
- # },
1617
- # key: "FilterKeyString", # required
1618
- # },
1619
- # ],
1620
- # incident_record_arn: "Arn", # required
1621
- # max_results: 1,
1622
- # next_token: "NextToken",
1623
- # sort_by: "EVENT_TIME", # accepts EVENT_TIME
1624
- # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
1625
- # }
1626
- #
1627
1317
  # @!attribute [rw] filters
1628
1318
  # Filters the timeline events based on the provided conditional
1629
1319
  # values. You can filter timeline events using the following keys:
@@ -1722,17 +1412,6 @@ module Aws::SSMIncidents
1722
1412
 
1723
1413
  # Details about the PagerDuty configuration for a response plan.
1724
1414
  #
1725
- # @note When making an API call, you may pass PagerDutyConfiguration
1726
- # data as a hash:
1727
- #
1728
- # {
1729
- # name: "PagerDutyConfigurationNameString", # required
1730
- # pager_duty_incident_configuration: { # required
1731
- # service_id: "PagerDutyIncidentConfigurationServiceIdString", # required
1732
- # },
1733
- # secret_id: "PagerDutyConfigurationSecretIdString", # required
1734
- # }
1735
- #
1736
1415
  # @!attribute [rw] name
1737
1416
  # The name of the PagerDuty configuration.
1738
1417
  # @return [String]
@@ -1761,13 +1440,6 @@ module Aws::SSMIncidents
1761
1440
  # Details about the PagerDuty service where the response plan creates an
1762
1441
  # incident.
1763
1442
  #
1764
- # @note When making an API call, you may pass PagerDutyIncidentConfiguration
1765
- # data as a hash:
1766
- #
1767
- # {
1768
- # service_id: "PagerDutyIncidentConfigurationServiceIdString", # required
1769
- # }
1770
- #
1771
1443
  # @!attribute [rw] service_id
1772
1444
  # The ID of the PagerDuty service that the response plan associates
1773
1445
  # with an incident when it launches.
@@ -1784,15 +1456,6 @@ module Aws::SSMIncidents
1784
1456
  # Details about the PagerDuty incident associated with an incident
1785
1457
  # created by an Incident Manager response plan.
1786
1458
  #
1787
- # @note When making an API call, you may pass PagerDutyIncidentDetail
1788
- # data as a hash:
1789
- #
1790
- # {
1791
- # auto_resolve: false,
1792
- # id: "PagerDutyIncidentDetailIdString", # required
1793
- # secret_id: "PagerDutyIncidentDetailSecretIdString",
1794
- # }
1795
- #
1796
1459
  # @!attribute [rw] auto_resolve
1797
1460
  # Indicates whether to resolve the PagerDuty incident when you resolve
1798
1461
  # the associated Incident Manager incident.
@@ -1819,14 +1482,6 @@ module Aws::SSMIncidents
1819
1482
  include Aws::Structure
1820
1483
  end
1821
1484
 
1822
- # @note When making an API call, you may pass PutResourcePolicyInput
1823
- # data as a hash:
1824
- #
1825
- # {
1826
- # policy: "Policy", # required
1827
- # resource_arn: "Arn", # required
1828
- # }
1829
- #
1830
1485
  # @!attribute [rw] policy
1831
1486
  # Details of the resource policy.
1832
1487
  # @return [String]
@@ -1893,13 +1548,6 @@ module Aws::SSMIncidents
1893
1548
  # The mapping between a Amazon Web Services Region and the key that's
1894
1549
  # used to encrypt the data.
1895
1550
  #
1896
- # @note When making an API call, you may pass RegionMapInputValue
1897
- # data as a hash:
1898
- #
1899
- # {
1900
- # sse_kms_key_id: "SseKmsKey",
1901
- # }
1902
- #
1903
1551
  # @!attribute [rw] sse_kms_key_id
1904
1552
  # The KMS key used to encrypt the data in your replication set.
1905
1553
  # @return [String]
@@ -1914,27 +1562,6 @@ module Aws::SSMIncidents
1914
1562
 
1915
1563
  # Resources that responders use to triage and mitigate the incident.
1916
1564
  #
1917
- # @note When making an API call, you may pass RelatedItem
1918
- # data as a hash:
1919
- #
1920
- # {
1921
- # generated_id: "GeneratedId",
1922
- # identifier: { # required
1923
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
1924
- # value: { # required
1925
- # arn: "Arn",
1926
- # metric_definition: "MetricDefinition",
1927
- # pager_duty_incident_detail: {
1928
- # auto_resolve: false,
1929
- # id: "PagerDutyIncidentDetailIdString", # required
1930
- # secret_id: "PagerDutyIncidentDetailSecretIdString",
1931
- # },
1932
- # url: "Url",
1933
- # },
1934
- # },
1935
- # title: "RelatedItemTitleString",
1936
- # }
1937
- #
1938
1565
  # @!attribute [rw] generated_id
1939
1566
  # A unique ID for a `RelatedItem`.
1940
1567
  #
@@ -2151,24 +1778,6 @@ module Aws::SSMIncidents
2151
1778
  # Details about the Systems Manager automation document that will be
2152
1779
  # used as a runbook during an incident.
2153
1780
  #
2154
- # @note When making an API call, you may pass SsmAutomation
2155
- # data as a hash:
2156
- #
2157
- # {
2158
- # document_name: "SsmAutomationDocumentNameString", # required
2159
- # document_version: "SsmAutomationDocumentVersionString",
2160
- # dynamic_parameters: {
2161
- # "DynamicSsmParametersKeyString" => {
2162
- # variable: "INCIDENT_RECORD_ARN", # accepts INCIDENT_RECORD_ARN, INVOLVED_RESOURCES
2163
- # },
2164
- # },
2165
- # parameters: {
2166
- # "SsmParametersKeyString" => ["SsmParameterValuesMemberString"],
2167
- # },
2168
- # role_arn: "RoleArn", # required
2169
- # target_account: "RESPONSE_PLAN_OWNER_ACCOUNT", # accepts RESPONSE_PLAN_OWNER_ACCOUNT, IMPACTED_ACCOUNT
2170
- # }
2171
- #
2172
1781
  # @!attribute [rw] document_name
2173
1782
  # The automation document's name.
2174
1783
  # @return [String]
@@ -2210,41 +1819,6 @@ module Aws::SSMIncidents
2210
1819
  include Aws::Structure
2211
1820
  end
2212
1821
 
2213
- # @note When making an API call, you may pass StartIncidentInput
2214
- # data as a hash:
2215
- #
2216
- # {
2217
- # client_token: "ClientToken",
2218
- # impact: 1,
2219
- # related_items: [
2220
- # {
2221
- # generated_id: "GeneratedId",
2222
- # identifier: { # required
2223
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
2224
- # value: { # required
2225
- # arn: "Arn",
2226
- # metric_definition: "MetricDefinition",
2227
- # pager_duty_incident_detail: {
2228
- # auto_resolve: false,
2229
- # id: "PagerDutyIncidentDetailIdString", # required
2230
- # secret_id: "PagerDutyIncidentDetailSecretIdString",
2231
- # },
2232
- # url: "Url",
2233
- # },
2234
- # },
2235
- # title: "RelatedItemTitleString",
2236
- # },
2237
- # ],
2238
- # response_plan_arn: "Arn", # required
2239
- # title: "IncidentTitle",
2240
- # trigger_details: {
2241
- # raw_data: "RawData",
2242
- # source: "IncidentSource", # required
2243
- # timestamp: Time.now, # required
2244
- # trigger_arn: "Arn",
2245
- # },
2246
- # }
2247
- #
2248
1822
  # @!attribute [rw] client_token
2249
1823
  # A token ensuring that the operation is called only once with the
2250
1824
  # specified details.
@@ -2321,16 +1895,6 @@ module Aws::SSMIncidents
2321
1895
  include Aws::Structure
2322
1896
  end
2323
1897
 
2324
- # @note When making an API call, you may pass TagResourceRequest
2325
- # data as a hash:
2326
- #
2327
- # {
2328
- # resource_arn: "String", # required
2329
- # tags: { # required
2330
- # "TagKey" => "TagValue",
2331
- # },
2332
- # }
2333
- #
2334
1898
  # @!attribute [rw] resource_arn
2335
1899
  # The Amazon Resource Name (ARN) of the response plan you're adding
2336
1900
  # the tags to.
@@ -2425,16 +1989,6 @@ module Aws::SSMIncidents
2425
1989
  # Details about what caused the incident to be created in Incident
2426
1990
  # Manager.
2427
1991
  #
2428
- # @note When making an API call, you may pass TriggerDetails
2429
- # data as a hash:
2430
- #
2431
- # {
2432
- # raw_data: "RawData",
2433
- # source: "IncidentSource", # required
2434
- # timestamp: Time.now, # required
2435
- # trigger_arn: "Arn",
2436
- # }
2437
- #
2438
1992
  # @!attribute [rw] raw_data
2439
1993
  # Raw data passed from either Amazon EventBridge, Amazon CloudWatch,
2440
1994
  # or Incident Manager when an incident is created.
@@ -2468,14 +2022,6 @@ module Aws::SSMIncidents
2468
2022
  include Aws::Structure
2469
2023
  end
2470
2024
 
2471
- # @note When making an API call, you may pass UntagResourceRequest
2472
- # data as a hash:
2473
- #
2474
- # {
2475
- # resource_arn: "String", # required
2476
- # tag_keys: ["TagKey"], # required
2477
- # }
2478
- #
2479
2025
  # @!attribute [rw] resource_arn
2480
2026
  # The Amazon Resource Name (ARN) of the response plan you're removing
2481
2027
  # a tag from.
@@ -2498,15 +2044,6 @@ module Aws::SSMIncidents
2498
2044
  #
2499
2045
  class UntagResourceResponse < Aws::EmptyStructure; end
2500
2046
 
2501
- # @note When making an API call, you may pass UpdateDeletionProtectionInput
2502
- # data as a hash:
2503
- #
2504
- # {
2505
- # arn: "Arn", # required
2506
- # client_token: "ClientToken",
2507
- # deletion_protected: false, # required
2508
- # }
2509
- #
2510
2047
  # @!attribute [rw] arn
2511
2048
  # The Amazon Resource Name (ARN) of the replication set to update.
2512
2049
  # @return [String]
@@ -2538,28 +2075,6 @@ module Aws::SSMIncidents
2538
2075
  #
2539
2076
  class UpdateDeletionProtectionOutput < Aws::EmptyStructure; end
2540
2077
 
2541
- # @note When making an API call, you may pass UpdateIncidentRecordInput
2542
- # data as a hash:
2543
- #
2544
- # {
2545
- # arn: "Arn", # required
2546
- # chat_channel: {
2547
- # chatbot_sns: ["SnsArn"],
2548
- # empty: {
2549
- # },
2550
- # },
2551
- # client_token: "ClientToken",
2552
- # impact: 1,
2553
- # notification_targets: [
2554
- # {
2555
- # sns_topic_arn: "Arn",
2556
- # },
2557
- # ],
2558
- # status: "OPEN", # accepts OPEN, RESOLVED
2559
- # summary: "IncidentSummary",
2560
- # title: "IncidentTitle",
2561
- # }
2562
- #
2563
2078
  # @!attribute [rw] arn
2564
2079
  # The Amazon Resource Name (ARN) of the incident record you are
2565
2080
  # updating.
@@ -2638,46 +2153,6 @@ module Aws::SSMIncidents
2638
2153
  #
2639
2154
  class UpdateIncidentRecordOutput < Aws::EmptyStructure; end
2640
2155
 
2641
- # @note When making an API call, you may pass UpdateRelatedItemsInput
2642
- # data as a hash:
2643
- #
2644
- # {
2645
- # client_token: "ClientToken",
2646
- # incident_record_arn: "Arn", # required
2647
- # related_items_update: { # required
2648
- # item_to_add: {
2649
- # generated_id: "GeneratedId",
2650
- # identifier: { # required
2651
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
2652
- # value: { # required
2653
- # arn: "Arn",
2654
- # metric_definition: "MetricDefinition",
2655
- # pager_duty_incident_detail: {
2656
- # auto_resolve: false,
2657
- # id: "PagerDutyIncidentDetailIdString", # required
2658
- # secret_id: "PagerDutyIncidentDetailSecretIdString",
2659
- # },
2660
- # url: "Url",
2661
- # },
2662
- # },
2663
- # title: "RelatedItemTitleString",
2664
- # },
2665
- # item_to_remove: {
2666
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
2667
- # value: { # required
2668
- # arn: "Arn",
2669
- # metric_definition: "MetricDefinition",
2670
- # pager_duty_incident_detail: {
2671
- # auto_resolve: false,
2672
- # id: "PagerDutyIncidentDetailIdString", # required
2673
- # secret_id: "PagerDutyIncidentDetailSecretIdString",
2674
- # },
2675
- # url: "Url",
2676
- # },
2677
- # },
2678
- # },
2679
- # }
2680
- #
2681
2156
  # @!attribute [rw] client_token
2682
2157
  # A token ensuring that the operation is called only once with the
2683
2158
  # specified details.
@@ -2738,25 +2213,6 @@ module Aws::SSMIncidents
2738
2213
  class Unknown < UpdateReplicationSetAction; end
2739
2214
  end
2740
2215
 
2741
- # @note When making an API call, you may pass UpdateReplicationSetInput
2742
- # data as a hash:
2743
- #
2744
- # {
2745
- # actions: [ # required
2746
- # {
2747
- # add_region_action: {
2748
- # region_name: "RegionName", # required
2749
- # sse_kms_key_id: "SseKmsKey",
2750
- # },
2751
- # delete_region_action: {
2752
- # region_name: "RegionName", # required
2753
- # },
2754
- # },
2755
- # ],
2756
- # arn: "Arn", # required
2757
- # client_token: "ClientToken",
2758
- # }
2759
- #
2760
2216
  # @!attribute [rw] actions
2761
2217
  # An action to add or delete a Region.
2762
2218
  # @return [Array<Types::UpdateReplicationSetAction>]
@@ -2788,62 +2244,6 @@ module Aws::SSMIncidents
2788
2244
  #
2789
2245
  class UpdateReplicationSetOutput < Aws::EmptyStructure; end
2790
2246
 
2791
- # @note When making an API call, you may pass UpdateResponsePlanInput
2792
- # data as a hash:
2793
- #
2794
- # {
2795
- # actions: [
2796
- # {
2797
- # ssm_automation: {
2798
- # document_name: "SsmAutomationDocumentNameString", # required
2799
- # document_version: "SsmAutomationDocumentVersionString",
2800
- # dynamic_parameters: {
2801
- # "DynamicSsmParametersKeyString" => {
2802
- # variable: "INCIDENT_RECORD_ARN", # accepts INCIDENT_RECORD_ARN, INVOLVED_RESOURCES
2803
- # },
2804
- # },
2805
- # parameters: {
2806
- # "SsmParametersKeyString" => ["SsmParameterValuesMemberString"],
2807
- # },
2808
- # role_arn: "RoleArn", # required
2809
- # target_account: "RESPONSE_PLAN_OWNER_ACCOUNT", # accepts RESPONSE_PLAN_OWNER_ACCOUNT, IMPACTED_ACCOUNT
2810
- # },
2811
- # },
2812
- # ],
2813
- # arn: "Arn", # required
2814
- # chat_channel: {
2815
- # chatbot_sns: ["SnsArn"],
2816
- # empty: {
2817
- # },
2818
- # },
2819
- # client_token: "ClientToken",
2820
- # display_name: "ResponsePlanDisplayName",
2821
- # engagements: ["SsmContactsArn"],
2822
- # incident_template_dedupe_string: "DedupeString",
2823
- # incident_template_impact: 1,
2824
- # incident_template_notification_targets: [
2825
- # {
2826
- # sns_topic_arn: "Arn",
2827
- # },
2828
- # ],
2829
- # incident_template_summary: "IncidentSummary",
2830
- # incident_template_tags: {
2831
- # "TagKey" => "TagValue",
2832
- # },
2833
- # incident_template_title: "IncidentTitle",
2834
- # integrations: [
2835
- # {
2836
- # pager_duty_configuration: {
2837
- # name: "PagerDutyConfigurationNameString", # required
2838
- # pager_duty_incident_configuration: { # required
2839
- # service_id: "PagerDutyIncidentConfigurationServiceIdString", # required
2840
- # },
2841
- # secret_id: "PagerDutyConfigurationSecretIdString", # required
2842
- # },
2843
- # },
2844
- # ],
2845
- # }
2846
- #
2847
2247
  # @!attribute [rw] actions
2848
2248
  # The actions that this response plan takes at the beginning of an
2849
2249
  # incident.
@@ -2952,24 +2352,6 @@ module Aws::SSMIncidents
2952
2352
  #
2953
2353
  class UpdateResponsePlanOutput < Aws::EmptyStructure; end
2954
2354
 
2955
- # @note When making an API call, you may pass UpdateTimelineEventInput
2956
- # data as a hash:
2957
- #
2958
- # {
2959
- # client_token: "ClientToken",
2960
- # event_data: "EventData",
2961
- # event_id: "UUID", # required
2962
- # event_references: [
2963
- # {
2964
- # related_item_id: "GeneratedId",
2965
- # resource: "Arn",
2966
- # },
2967
- # ],
2968
- # event_time: Time.now,
2969
- # event_type: "TimelineEventType",
2970
- # incident_record_arn: "Arn", # required
2971
- # }
2972
- #
2973
2355
  # @!attribute [rw] client_token
2974
2356
  # A token ensuring that the operation is called only once with the
2975
2357
  # specified details.
@@ -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.20.0'
56
+ GEM_VERSION = '1.21.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.20.0
4
+ version: 1.21.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: 2022-11-16 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core