aws-sdk-ssm 1.143.0 → 1.144.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c978c2844ef2463b5b07c7449198f6c17958e6d71bb5dff02166deb87df19f73
4
- data.tar.gz: b2a56e99f9fac1069f7293afdc628a91da5fa3c07ce7166624712a8b92e5336c
3
+ metadata.gz: 3e1f222b054c2cb6f9c4014c39882f20197f02cf5bfd6007619ea81da447f576
4
+ data.tar.gz: f3068a350d6f4b15cc245c68cc33d62c8704060238116b5be87a361da7485712
5
5
  SHA512:
6
- metadata.gz: 52b11837ce118b744953d4c7d2450512ee370bda3dc02535d578c7254894cb4aef8192ee97d6f4f3ae4c0673f495d6d0ba45805727026d939931652ef5690c2a
7
- data.tar.gz: ecacf0e92df3d57452ade0ec7b67a1d9782d424e8f93ca2be24d9b6568135f8743bcf5e588ec08063f1886e8cea9c3ff055e7cdf5de35ccb0e355d6c7bc196e1
6
+ metadata.gz: b139f19fbd3e23eb3672f177ec51002c725d1f2478aa0c2ea9f21d1b84890bef441e381d00c3a6842fc9b5f059d5f0e32eeaf71142d8b8b88d2d26103003ef48
7
+ data.tar.gz: 943cd6e1c12b5dec846024f333db23c0b1e1043c6da40ae599e7875ad87216bea14495b4a0ab5ea6055afb4a1ab720a77b8239865e0210c25a0403d5ac252eda
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.144.0 (2022-11-07)
5
+ ------------------
6
+
7
+ * Feature - This release includes support for applying a CloudWatch alarm to multi account multi region Systems Manager Automation
8
+
4
9
  1.143.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.143.0
1
+ 1.144.0
@@ -968,6 +968,14 @@ module Aws::SSM
968
968
  # target_location_max_concurrency: "MaxConcurrency",
969
969
  # target_location_max_errors: "MaxErrors",
970
970
  # execution_role_name: "ExecutionRoleName",
971
+ # target_location_alarm_configuration: {
972
+ # ignore_poll_alarm_failure: false,
973
+ # alarms: [ # required
974
+ # {
975
+ # name: "AlarmName", # required
976
+ # },
977
+ # ],
978
+ # },
971
979
  # },
972
980
  # ],
973
981
  # schedule_offset: 1,
@@ -1039,6 +1047,9 @@ module Aws::SSM
1039
1047
  # resp.association_description.target_locations[0].target_location_max_concurrency #=> String
1040
1048
  # resp.association_description.target_locations[0].target_location_max_errors #=> String
1041
1049
  # resp.association_description.target_locations[0].execution_role_name #=> String
1050
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
1051
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
1052
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
1042
1053
  # resp.association_description.schedule_offset #=> Integer
1043
1054
  # resp.association_description.target_maps #=> Array
1044
1055
  # resp.association_description.target_maps[0] #=> Hash
@@ -1120,6 +1131,14 @@ module Aws::SSM
1120
1131
  # target_location_max_concurrency: "MaxConcurrency",
1121
1132
  # target_location_max_errors: "MaxErrors",
1122
1133
  # execution_role_name: "ExecutionRoleName",
1134
+ # target_location_alarm_configuration: {
1135
+ # ignore_poll_alarm_failure: false,
1136
+ # alarms: [ # required
1137
+ # {
1138
+ # name: "AlarmName", # required
1139
+ # },
1140
+ # ],
1141
+ # },
1123
1142
  # },
1124
1143
  # ],
1125
1144
  # schedule_offset: 1,
@@ -1188,6 +1207,9 @@ module Aws::SSM
1188
1207
  # resp.successful[0].target_locations[0].target_location_max_concurrency #=> String
1189
1208
  # resp.successful[0].target_locations[0].target_location_max_errors #=> String
1190
1209
  # resp.successful[0].target_locations[0].execution_role_name #=> String
1210
+ # resp.successful[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
1211
+ # resp.successful[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
1212
+ # resp.successful[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
1191
1213
  # resp.successful[0].schedule_offset #=> Integer
1192
1214
  # resp.successful[0].target_maps #=> Array
1193
1215
  # resp.successful[0].target_maps[0] #=> Hash
@@ -1231,6 +1253,9 @@ module Aws::SSM
1231
1253
  # resp.failed[0].entry.target_locations[0].target_location_max_concurrency #=> String
1232
1254
  # resp.failed[0].entry.target_locations[0].target_location_max_errors #=> String
1233
1255
  # resp.failed[0].entry.target_locations[0].execution_role_name #=> String
1256
+ # resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
1257
+ # resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.alarms #=> Array
1258
+ # resp.failed[0].entry.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
1234
1259
  # resp.failed[0].entry.schedule_offset #=> Integer
1235
1260
  # resp.failed[0].entry.target_maps #=> Array
1236
1261
  # resp.failed[0].entry.target_maps[0] #=> Hash
@@ -2730,6 +2755,9 @@ module Aws::SSM
2730
2755
  # resp.association_description.target_locations[0].target_location_max_concurrency #=> String
2731
2756
  # resp.association_description.target_locations[0].target_location_max_errors #=> String
2732
2757
  # resp.association_description.target_locations[0].execution_role_name #=> String
2758
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
2759
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
2760
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
2733
2761
  # resp.association_description.schedule_offset #=> Integer
2734
2762
  # resp.association_description.target_maps #=> Array
2735
2763
  # resp.association_description.target_maps[0] #=> Hash
@@ -3004,6 +3032,9 @@ module Aws::SSM
3004
3032
  # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_max_concurrency #=> String
3005
3033
  # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_max_errors #=> String
3006
3034
  # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].execution_role_name #=> String
3035
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
3036
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
3037
+ # resp.automation_execution_metadata_list[0].runbooks[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
3007
3038
  # resp.automation_execution_metadata_list[0].ops_item_id #=> String
3008
3039
  # resp.automation_execution_metadata_list[0].association_id #=> String
3009
3040
  # resp.automation_execution_metadata_list[0].change_request_name #=> String
@@ -3108,6 +3139,12 @@ module Aws::SSM
3108
3139
  # resp.step_executions[0].target_location.target_location_max_concurrency #=> String
3109
3140
  # resp.step_executions[0].target_location.target_location_max_errors #=> String
3110
3141
  # resp.step_executions[0].target_location.execution_role_name #=> String
3142
+ # resp.step_executions[0].target_location.target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
3143
+ # resp.step_executions[0].target_location.target_location_alarm_configuration.alarms #=> Array
3144
+ # resp.step_executions[0].target_location.target_location_alarm_configuration.alarms[0].name #=> String
3145
+ # resp.step_executions[0].triggered_alarms #=> Array
3146
+ # resp.step_executions[0].triggered_alarms[0].name #=> String
3147
+ # resp.step_executions[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
3111
3148
  # resp.next_token #=> String
3112
3149
  #
3113
3150
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationStepExecutions AWS API Documentation
@@ -5207,6 +5244,12 @@ module Aws::SSM
5207
5244
  # resp.automation_execution.step_executions[0].target_location.target_location_max_concurrency #=> String
5208
5245
  # resp.automation_execution.step_executions[0].target_location.target_location_max_errors #=> String
5209
5246
  # resp.automation_execution.step_executions[0].target_location.execution_role_name #=> String
5247
+ # resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
5248
+ # resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.alarms #=> Array
5249
+ # resp.automation_execution.step_executions[0].target_location.target_location_alarm_configuration.alarms[0].name #=> String
5250
+ # resp.automation_execution.step_executions[0].triggered_alarms #=> Array
5251
+ # resp.automation_execution.step_executions[0].triggered_alarms[0].name #=> String
5252
+ # resp.automation_execution.step_executions[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
5210
5253
  # resp.automation_execution.step_executions_truncated #=> Boolean
5211
5254
  # resp.automation_execution.parameters #=> Hash
5212
5255
  # resp.automation_execution.parameters["AutomationParameterKey"] #=> Array
@@ -5243,6 +5286,9 @@ module Aws::SSM
5243
5286
  # resp.automation_execution.target_locations[0].target_location_max_concurrency #=> String
5244
5287
  # resp.automation_execution.target_locations[0].target_location_max_errors #=> String
5245
5288
  # resp.automation_execution.target_locations[0].execution_role_name #=> String
5289
+ # resp.automation_execution.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
5290
+ # resp.automation_execution.target_locations[0].target_location_alarm_configuration.alarms #=> Array
5291
+ # resp.automation_execution.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
5246
5292
  # resp.automation_execution.progress_counters.total_steps #=> Integer
5247
5293
  # resp.automation_execution.progress_counters.success_steps #=> Integer
5248
5294
  # resp.automation_execution.progress_counters.failed_steps #=> Integer
@@ -5281,6 +5327,9 @@ module Aws::SSM
5281
5327
  # resp.automation_execution.runbooks[0].target_locations[0].target_location_max_concurrency #=> String
5282
5328
  # resp.automation_execution.runbooks[0].target_locations[0].target_location_max_errors #=> String
5283
5329
  # resp.automation_execution.runbooks[0].target_locations[0].execution_role_name #=> String
5330
+ # resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
5331
+ # resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
5332
+ # resp.automation_execution.runbooks[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
5284
5333
  # resp.automation_execution.ops_item_id #=> String
5285
5334
  # resp.automation_execution.association_id #=> String
5286
5335
  # resp.automation_execution.change_request_name #=> String
@@ -6989,6 +7038,9 @@ module Aws::SSM
6989
7038
  # resp.association_versions[0].target_locations[0].target_location_max_concurrency #=> String
6990
7039
  # resp.association_versions[0].target_locations[0].target_location_max_errors #=> String
6991
7040
  # resp.association_versions[0].target_locations[0].execution_role_name #=> String
7041
+ # resp.association_versions[0].target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
7042
+ # resp.association_versions[0].target_locations[0].target_location_alarm_configuration.alarms #=> Array
7043
+ # resp.association_versions[0].target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
6992
7044
  # resp.association_versions[0].schedule_offset #=> Integer
6993
7045
  # resp.association_versions[0].target_maps #=> Array
6994
7046
  # resp.association_versions[0].target_maps[0] #=> Hash
@@ -9674,6 +9726,14 @@ module Aws::SSM
9674
9726
  # target_location_max_concurrency: "MaxConcurrency",
9675
9727
  # target_location_max_errors: "MaxErrors",
9676
9728
  # execution_role_name: "ExecutionRoleName",
9729
+ # target_location_alarm_configuration: {
9730
+ # ignore_poll_alarm_failure: false,
9731
+ # alarms: [ # required
9732
+ # {
9733
+ # name: "AlarmName", # required
9734
+ # },
9735
+ # ],
9736
+ # },
9677
9737
  # },
9678
9738
  # ],
9679
9739
  # tags: [
@@ -9831,6 +9891,14 @@ module Aws::SSM
9831
9891
  # target_location_max_concurrency: "MaxConcurrency",
9832
9892
  # target_location_max_errors: "MaxErrors",
9833
9893
  # execution_role_name: "ExecutionRoleName",
9894
+ # target_location_alarm_configuration: {
9895
+ # ignore_poll_alarm_failure: false,
9896
+ # alarms: [ # required
9897
+ # {
9898
+ # name: "AlarmName", # required
9899
+ # },
9900
+ # ],
9901
+ # },
9834
9902
  # },
9835
9903
  # ],
9836
9904
  # },
@@ -10284,6 +10352,14 @@ module Aws::SSM
10284
10352
  # target_location_max_concurrency: "MaxConcurrency",
10285
10353
  # target_location_max_errors: "MaxErrors",
10286
10354
  # execution_role_name: "ExecutionRoleName",
10355
+ # target_location_alarm_configuration: {
10356
+ # ignore_poll_alarm_failure: false,
10357
+ # alarms: [ # required
10358
+ # {
10359
+ # name: "AlarmName", # required
10360
+ # },
10361
+ # ],
10362
+ # },
10287
10363
  # },
10288
10364
  # ],
10289
10365
  # schedule_offset: 1,
@@ -10349,6 +10425,9 @@ module Aws::SSM
10349
10425
  # resp.association_description.target_locations[0].target_location_max_concurrency #=> String
10350
10426
  # resp.association_description.target_locations[0].target_location_max_errors #=> String
10351
10427
  # resp.association_description.target_locations[0].execution_role_name #=> String
10428
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
10429
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
10430
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
10352
10431
  # resp.association_description.schedule_offset #=> Integer
10353
10432
  # resp.association_description.target_maps #=> Array
10354
10433
  # resp.association_description.target_maps[0] #=> Hash
@@ -10451,6 +10530,9 @@ module Aws::SSM
10451
10530
  # resp.association_description.target_locations[0].target_location_max_concurrency #=> String
10452
10531
  # resp.association_description.target_locations[0].target_location_max_errors #=> String
10453
10532
  # resp.association_description.target_locations[0].execution_role_name #=> String
10533
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.ignore_poll_alarm_failure #=> Boolean
10534
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.alarms #=> Array
10535
+ # resp.association_description.target_locations[0].target_location_alarm_configuration.alarms[0].name #=> String
10454
10536
  # resp.association_description.schedule_offset #=> Integer
10455
10537
  # resp.association_description.target_maps #=> Array
10456
10538
  # resp.association_description.target_maps[0] #=> Hash
@@ -11844,7 +11926,7 @@ module Aws::SSM
11844
11926
  params: params,
11845
11927
  config: config)
11846
11928
  context[:gem_name] = 'aws-sdk-ssm'
11847
- context[:gem_version] = '1.143.0'
11929
+ context[:gem_version] = '1.144.0'
11848
11930
  Seahorse::Client::Request.new(handlers, context)
11849
11931
  end
11850
11932
 
@@ -4295,6 +4295,7 @@ module Aws::SSM
4295
4295
  StepExecution.add_member(:valid_next_steps, Shapes::ShapeRef.new(shape: ValidNextStepList, location_name: "ValidNextSteps"))
4296
4296
  StepExecution.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets", metadata: {"box"=>true}))
4297
4297
  StepExecution.add_member(:target_location, Shapes::ShapeRef.new(shape: TargetLocation, location_name: "TargetLocation", metadata: {"box"=>true}))
4298
+ StepExecution.add_member(:triggered_alarms, Shapes::ShapeRef.new(shape: AlarmStateInformationList, location_name: "TriggeredAlarms"))
4298
4299
  StepExecution.struct_class = Types::StepExecution
4299
4300
 
4300
4301
  StepExecutionFilter.add_member(:key, Shapes::ShapeRef.new(shape: StepExecutionFilterKey, required: true, location_name: "Key"))
@@ -4336,6 +4337,7 @@ module Aws::SSM
4336
4337
  TargetLocation.add_member(:target_location_max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "TargetLocationMaxConcurrency", metadata: {"box"=>true}))
4337
4338
  TargetLocation.add_member(:target_location_max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "TargetLocationMaxErrors", metadata: {"box"=>true}))
4338
4339
  TargetLocation.add_member(:execution_role_name, Shapes::ShapeRef.new(shape: ExecutionRoleName, location_name: "ExecutionRoleName", metadata: {"box"=>true}))
4340
+ TargetLocation.add_member(:target_location_alarm_configuration, Shapes::ShapeRef.new(shape: AlarmConfiguration, location_name: "TargetLocationAlarmConfiguration", metadata: {"box"=>true}))
4339
4341
  TargetLocation.struct_class = Types::TargetLocation
4340
4342
 
4341
4343
  TargetLocations.member = Shapes::ShapeRef.new(shape: TargetLocation)
@@ -3026,6 +3026,14 @@ module Aws::SSM
3026
3026
  # target_location_max_concurrency: "MaxConcurrency",
3027
3027
  # target_location_max_errors: "MaxErrors",
3028
3028
  # execution_role_name: "ExecutionRoleName",
3029
+ # target_location_alarm_configuration: {
3030
+ # ignore_poll_alarm_failure: false,
3031
+ # alarms: [ # required
3032
+ # {
3033
+ # name: "AlarmName", # required
3034
+ # },
3035
+ # ],
3036
+ # },
3029
3037
  # },
3030
3038
  # ],
3031
3039
  # schedule_offset: 1,
@@ -3100,6 +3108,14 @@ module Aws::SSM
3100
3108
  # target_location_max_concurrency: "MaxConcurrency",
3101
3109
  # target_location_max_errors: "MaxErrors",
3102
3110
  # execution_role_name: "ExecutionRoleName",
3111
+ # target_location_alarm_configuration: {
3112
+ # ignore_poll_alarm_failure: false,
3113
+ # alarms: [ # required
3114
+ # {
3115
+ # name: "AlarmName", # required
3116
+ # },
3117
+ # ],
3118
+ # },
3103
3119
  # },
3104
3120
  # ],
3105
3121
  # schedule_offset: 1,
@@ -3362,6 +3378,14 @@ module Aws::SSM
3362
3378
  # target_location_max_concurrency: "MaxConcurrency",
3363
3379
  # target_location_max_errors: "MaxErrors",
3364
3380
  # execution_role_name: "ExecutionRoleName",
3381
+ # target_location_alarm_configuration: {
3382
+ # ignore_poll_alarm_failure: false,
3383
+ # alarms: [ # required
3384
+ # {
3385
+ # name: "AlarmName", # required
3386
+ # },
3387
+ # ],
3388
+ # },
3365
3389
  # },
3366
3390
  # ],
3367
3391
  # schedule_offset: 1,
@@ -18341,6 +18365,14 @@ module Aws::SSM
18341
18365
  # target_location_max_concurrency: "MaxConcurrency",
18342
18366
  # target_location_max_errors: "MaxErrors",
18343
18367
  # execution_role_name: "ExecutionRoleName",
18368
+ # target_location_alarm_configuration: {
18369
+ # ignore_poll_alarm_failure: false,
18370
+ # alarms: [ # required
18371
+ # {
18372
+ # name: "AlarmName", # required
18373
+ # },
18374
+ # ],
18375
+ # },
18344
18376
  # },
18345
18377
  # ],
18346
18378
  # }
@@ -19136,6 +19168,14 @@ module Aws::SSM
19136
19168
  # target_location_max_concurrency: "MaxConcurrency",
19137
19169
  # target_location_max_errors: "MaxErrors",
19138
19170
  # execution_role_name: "ExecutionRoleName",
19171
+ # target_location_alarm_configuration: {
19172
+ # ignore_poll_alarm_failure: false,
19173
+ # alarms: [ # required
19174
+ # {
19175
+ # name: "AlarmName", # required
19176
+ # },
19177
+ # ],
19178
+ # },
19139
19179
  # },
19140
19180
  # ],
19141
19181
  # tags: [
@@ -19334,6 +19374,14 @@ module Aws::SSM
19334
19374
  # target_location_max_concurrency: "MaxConcurrency",
19335
19375
  # target_location_max_errors: "MaxErrors",
19336
19376
  # execution_role_name: "ExecutionRoleName",
19377
+ # target_location_alarm_configuration: {
19378
+ # ignore_poll_alarm_failure: false,
19379
+ # alarms: [ # required
19380
+ # {
19381
+ # name: "AlarmName", # required
19382
+ # },
19383
+ # ],
19384
+ # },
19337
19385
  # },
19338
19386
  # ],
19339
19387
  # },
@@ -19672,6 +19720,10 @@ module Aws::SSM
19672
19720
  # Services accounts targeted by the current Automation execution.
19673
19721
  # @return [Types::TargetLocation]
19674
19722
  #
19723
+ # @!attribute [rw] triggered_alarms
19724
+ # The CloudWatch alarms that were invoked by the automation.
19725
+ # @return [Array<Types::AlarmStateInformation>]
19726
+ #
19675
19727
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StepExecution AWS API Documentation
19676
19728
  #
19677
19729
  class StepExecution < Struct.new(
@@ -19696,7 +19748,8 @@ module Aws::SSM
19696
19748
  :is_critical,
19697
19749
  :valid_next_steps,
19698
19750
  :targets,
19699
- :target_location)
19751
+ :target_location,
19752
+ :triggered_alarms)
19700
19753
  SENSITIVE = []
19701
19754
  include Aws::Structure
19702
19755
  end
@@ -19933,6 +19986,14 @@ module Aws::SSM
19933
19986
  # target_location_max_concurrency: "MaxConcurrency",
19934
19987
  # target_location_max_errors: "MaxErrors",
19935
19988
  # execution_role_name: "ExecutionRoleName",
19989
+ # target_location_alarm_configuration: {
19990
+ # ignore_poll_alarm_failure: false,
19991
+ # alarms: [ # required
19992
+ # {
19993
+ # name: "AlarmName", # required
19994
+ # },
19995
+ # ],
19996
+ # },
19936
19997
  # }
19937
19998
  #
19938
19999
  # @!attribute [rw] accounts
@@ -19962,6 +20023,11 @@ module Aws::SSM
19962
20023
  # `AWS-SystemsManager-AutomationExecutionRole`.
19963
20024
  # @return [String]
19964
20025
  #
20026
+ # @!attribute [rw] target_location_alarm_configuration
20027
+ # The details for the CloudWatch alarm you want to apply to an
20028
+ # automation or command.
20029
+ # @return [Types::AlarmConfiguration]
20030
+ #
19965
20031
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/TargetLocation AWS API Documentation
19966
20032
  #
19967
20033
  class TargetLocation < Struct.new(
@@ -19969,7 +20035,8 @@ module Aws::SSM
19969
20035
  :regions,
19970
20036
  :target_location_max_concurrency,
19971
20037
  :target_location_max_errors,
19972
- :execution_role_name)
20038
+ :execution_role_name,
20039
+ :target_location_alarm_configuration)
19973
20040
  SENSITIVE = []
19974
20041
  include Aws::Structure
19975
20042
  end
@@ -20263,6 +20330,14 @@ module Aws::SSM
20263
20330
  # target_location_max_concurrency: "MaxConcurrency",
20264
20331
  # target_location_max_errors: "MaxErrors",
20265
20332
  # execution_role_name: "ExecutionRoleName",
20333
+ # target_location_alarm_configuration: {
20334
+ # ignore_poll_alarm_failure: false,
20335
+ # alarms: [ # required
20336
+ # {
20337
+ # name: "AlarmName", # required
20338
+ # },
20339
+ # ],
20340
+ # },
20266
20341
  # },
20267
20342
  # ],
20268
20343
  # schedule_offset: 1,
data/lib/aws-sdk-ssm.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ssm/customizations'
53
53
  # @!group service
54
54
  module Aws::SSM
55
55
 
56
- GEM_VERSION = '1.143.0'
56
+ GEM_VERSION = '1.144.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.143.0
4
+ version: 1.144.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-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core