aws-sdk-ssm 1.140.0 → 1.142.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.
@@ -174,6 +174,80 @@ module Aws::SSM
174
174
  #
175
175
  class AddTagsToResourceResult < Aws::EmptyStructure; end
176
176
 
177
+ # A CloudWatch alarm you apply to an automation or command.
178
+ #
179
+ # @note When making an API call, you may pass Alarm
180
+ # data as a hash:
181
+ #
182
+ # {
183
+ # name: "AlarmName", # required
184
+ # }
185
+ #
186
+ # @!attribute [rw] name
187
+ # The name of your CloudWatch alarm.
188
+ # @return [String]
189
+ #
190
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Alarm AWS API Documentation
191
+ #
192
+ class Alarm < Struct.new(
193
+ :name)
194
+ SENSITIVE = []
195
+ include Aws::Structure
196
+ end
197
+
198
+ # The details for the CloudWatch alarm you want to apply to an
199
+ # automation or command.
200
+ #
201
+ # @note When making an API call, you may pass AlarmConfiguration
202
+ # data as a hash:
203
+ #
204
+ # {
205
+ # ignore_poll_alarm_failure: false,
206
+ # alarms: [ # required
207
+ # {
208
+ # name: "AlarmName", # required
209
+ # },
210
+ # ],
211
+ # }
212
+ #
213
+ # @!attribute [rw] ignore_poll_alarm_failure
214
+ # If you specify `true` for this value, your automation or command
215
+ # continue to run even if we can't gather information about the state
216
+ # of your CloudWatch alarm. The default value is `false`.
217
+ # @return [Boolean]
218
+ #
219
+ # @!attribute [rw] alarms
220
+ # The name of the CloudWatch alarm specified in the configuration.
221
+ # @return [Array<Types::Alarm>]
222
+ #
223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AlarmConfiguration AWS API Documentation
224
+ #
225
+ class AlarmConfiguration < Struct.new(
226
+ :ignore_poll_alarm_failure,
227
+ :alarms)
228
+ SENSITIVE = []
229
+ include Aws::Structure
230
+ end
231
+
232
+ # The details about the state of your CloudWatch alarm.
233
+ #
234
+ # @!attribute [rw] name
235
+ # The name of your CloudWatch alarm.
236
+ # @return [String]
237
+ #
238
+ # @!attribute [rw] state
239
+ # The state of your CloudWatch alarm.
240
+ # @return [String]
241
+ #
242
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AlarmStateInformation AWS API Documentation
243
+ #
244
+ class AlarmStateInformation < Struct.new(
245
+ :name,
246
+ :state)
247
+ SENSITIVE = []
248
+ include Aws::Structure
249
+ end
250
+
177
251
  # Error returned if an attempt is made to register a patch group with a
178
252
  # patch baseline that is already registered with a different patch
179
253
  # baseline.
@@ -509,6 +583,15 @@ module Aws::SSM
509
583
  # Targets and TargetMaps can't be specified together.
510
584
  # @return [Array<Hash<String,Array<String>>>]
511
585
  #
586
+ # @!attribute [rw] alarm_configuration
587
+ # The details for the CloudWatch alarm you want to apply to an
588
+ # automation or command.
589
+ # @return [Types::AlarmConfiguration]
590
+ #
591
+ # @!attribute [rw] triggered_alarms
592
+ # The CloudWatch alarm that was invoked during the association.
593
+ # @return [Array<Types::AlarmStateInformation>]
594
+ #
512
595
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationDescription AWS API Documentation
513
596
  #
514
597
  class AssociationDescription < Struct.new(
@@ -537,7 +620,9 @@ module Aws::SSM
537
620
  :calendar_names,
538
621
  :target_locations,
539
622
  :schedule_offset,
540
- :target_maps)
623
+ :target_maps,
624
+ :alarm_configuration,
625
+ :triggered_alarms)
541
626
  SENSITIVE = [:parameters]
542
627
  include Aws::Structure
543
628
  end
@@ -590,6 +675,15 @@ module Aws::SSM
590
675
  # status type.
591
676
  # @return [String]
592
677
  #
678
+ # @!attribute [rw] alarm_configuration
679
+ # The details for the CloudWatch alarm you want to apply to an
680
+ # automation or command.
681
+ # @return [Types::AlarmConfiguration]
682
+ #
683
+ # @!attribute [rw] triggered_alarms
684
+ # The CloudWatch alarms that were invoked by the association.
685
+ # @return [Array<Types::AlarmStateInformation>]
686
+ #
593
687
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationExecution AWS API Documentation
594
688
  #
595
689
  class AssociationExecution < Struct.new(
@@ -600,7 +694,9 @@ module Aws::SSM
600
694
  :detailed_status,
601
695
  :created_time,
602
696
  :last_execution_date,
603
- :resource_count_by_status)
697
+ :resource_count_by_status,
698
+ :alarm_configuration,
699
+ :triggered_alarms)
604
700
  SENSITIVE = []
605
701
  include Aws::Structure
606
702
  end
@@ -1282,6 +1378,14 @@ module Aws::SSM
1282
1378
  # multi-account Automation execution.
1283
1379
  # @return [Types::ProgressCounters]
1284
1380
  #
1381
+ # @!attribute [rw] alarm_configuration
1382
+ # The details for the CloudWatch alarm applied to your automation.
1383
+ # @return [Types::AlarmConfiguration]
1384
+ #
1385
+ # @!attribute [rw] triggered_alarms
1386
+ # The CloudWatch alarm that was invoked by the automation.
1387
+ # @return [Array<Types::AlarmStateInformation>]
1388
+ #
1285
1389
  # @!attribute [rw] automation_subtype
1286
1390
  # The subtype of the Automation operation. Currently, the only
1287
1391
  # supported value is `ChangeRequest`.
@@ -1344,6 +1448,8 @@ module Aws::SSM
1344
1448
  :target,
1345
1449
  :target_locations,
1346
1450
  :progress_counters,
1451
+ :alarm_configuration,
1452
+ :triggered_alarms,
1347
1453
  :automation_subtype,
1348
1454
  :scheduled_time,
1349
1455
  :runbooks,
@@ -1500,6 +1606,14 @@ module Aws::SSM
1500
1606
  # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-automation-multiple-accounts-and-regions.html
1501
1607
  # @return [String]
1502
1608
  #
1609
+ # @!attribute [rw] alarm_configuration
1610
+ # The details for the CloudWatch alarm applied to your automation.
1611
+ # @return [Types::AlarmConfiguration]
1612
+ #
1613
+ # @!attribute [rw] triggered_alarms
1614
+ # The CloudWatch alarm that was invoked by the automation.
1615
+ # @return [Array<Types::AlarmStateInformation>]
1616
+ #
1503
1617
  # @!attribute [rw] automation_subtype
1504
1618
  # The subtype of the Automation operation. Currently, the only
1505
1619
  # supported value is `ChangeRequest`.
@@ -1559,6 +1673,8 @@ module Aws::SSM
1559
1673
  :max_errors,
1560
1674
  :target,
1561
1675
  :automation_type,
1676
+ :alarm_configuration,
1677
+ :triggered_alarms,
1562
1678
  :automation_subtype,
1563
1679
  :scheduled_time,
1564
1680
  :runbooks,
@@ -1603,7 +1719,7 @@ module Aws::SSM
1603
1719
  # data as a hash:
1604
1720
  #
1605
1721
  # {
1606
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
1722
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
1607
1723
  # global_filters: {
1608
1724
  # patch_filters: [ # required
1609
1725
  # {
@@ -2009,6 +2125,14 @@ module Aws::SSM
2009
2125
  # The `TimeoutSeconds` value specified for a command.
2010
2126
  # @return [Integer]
2011
2127
  #
2128
+ # @!attribute [rw] alarm_configuration
2129
+ # The details for the CloudWatch alarm applied to your command.
2130
+ # @return [Types::AlarmConfiguration]
2131
+ #
2132
+ # @!attribute [rw] triggered_alarms
2133
+ # The CloudWatch alarm that was invoked by the command.
2134
+ # @return [Array<Types::AlarmStateInformation>]
2135
+ #
2012
2136
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Command AWS API Documentation
2013
2137
  #
2014
2138
  class Command < Struct.new(
@@ -2035,7 +2159,9 @@ module Aws::SSM
2035
2159
  :service_role,
2036
2160
  :notification_config,
2037
2161
  :cloud_watch_output_config,
2038
- :timeout_seconds)
2162
+ :timeout_seconds,
2163
+ :alarm_configuration,
2164
+ :triggered_alarms)
2039
2165
  SENSITIVE = [:parameters]
2040
2166
  include Aws::Structure
2041
2167
  end
@@ -2908,6 +3034,14 @@ module Aws::SSM
2908
3034
  # "TargetMapKey" => ["TargetMapValue"],
2909
3035
  # },
2910
3036
  # ],
3037
+ # alarm_configuration: {
3038
+ # ignore_poll_alarm_failure: false,
3039
+ # alarms: [ # required
3040
+ # {
3041
+ # name: "AlarmName", # required
3042
+ # },
3043
+ # ],
3044
+ # },
2911
3045
  # },
2912
3046
  # ],
2913
3047
  # }
@@ -2974,6 +3108,14 @@ module Aws::SSM
2974
3108
  # "TargetMapKey" => ["TargetMapValue"],
2975
3109
  # },
2976
3110
  # ],
3111
+ # alarm_configuration: {
3112
+ # ignore_poll_alarm_failure: false,
3113
+ # alarms: [ # required
3114
+ # {
3115
+ # name: "AlarmName", # required
3116
+ # },
3117
+ # ],
3118
+ # },
2977
3119
  # }
2978
3120
  #
2979
3121
  # @!attribute [rw] name
@@ -3133,6 +3275,11 @@ module Aws::SSM
3133
3275
  # Targets and TargetMaps can't be specified together.
3134
3276
  # @return [Array<Hash<String,Array<String>>>]
3135
3277
  #
3278
+ # @!attribute [rw] alarm_configuration
3279
+ # The details for the CloudWatch alarm you want to apply to an
3280
+ # automation or command.
3281
+ # @return [Types::AlarmConfiguration]
3282
+ #
3136
3283
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatchRequestEntry AWS API Documentation
3137
3284
  #
3138
3285
  class CreateAssociationBatchRequestEntry < Struct.new(
@@ -3153,7 +3300,8 @@ module Aws::SSM
3153
3300
  :calendar_names,
3154
3301
  :target_locations,
3155
3302
  :schedule_offset,
3156
- :target_maps)
3303
+ :target_maps,
3304
+ :alarm_configuration)
3157
3305
  SENSITIVE = [:parameters]
3158
3306
  include Aws::Structure
3159
3307
  end
@@ -3228,6 +3376,14 @@ module Aws::SSM
3228
3376
  # value: "TagValue", # required
3229
3377
  # },
3230
3378
  # ],
3379
+ # alarm_configuration: {
3380
+ # ignore_poll_alarm_failure: false,
3381
+ # alarms: [ # required
3382
+ # {
3383
+ # name: "AlarmName", # required
3384
+ # },
3385
+ # ],
3386
+ # },
3231
3387
  # }
3232
3388
  #
3233
3389
  # @!attribute [rw] name
@@ -3432,6 +3588,11 @@ module Aws::SSM
3432
3588
  # consists of a key and an optional value, both of which you define.
3433
3589
  # @return [Array<Types::Tag>]
3434
3590
  #
3591
+ # @!attribute [rw] alarm_configuration
3592
+ # The details for the CloudWatch alarm you want to apply to an
3593
+ # automation or command.
3594
+ # @return [Types::AlarmConfiguration]
3595
+ #
3435
3596
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationRequest AWS API Documentation
3436
3597
  #
3437
3598
  class CreateAssociationRequest < Struct.new(
@@ -3453,7 +3614,8 @@ module Aws::SSM
3453
3614
  :target_locations,
3454
3615
  :schedule_offset,
3455
3616
  :target_maps,
3456
- :tags)
3617
+ :tags,
3618
+ :alarm_configuration)
3457
3619
  SENSITIVE = [:parameters]
3458
3620
  include Aws::Structure
3459
3621
  end
@@ -4061,7 +4223,7 @@ module Aws::SSM
4061
4223
  # data as a hash:
4062
4224
  #
4063
4225
  # {
4064
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
4226
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
4065
4227
  # name: "BaselineName", # required
4066
4228
  # global_filters: {
4067
4229
  # patch_filters: [ # required
@@ -7050,7 +7212,7 @@ module Aws::SSM
7050
7212
  # data as a hash:
7051
7213
  #
7052
7214
  # {
7053
- # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
7215
+ # operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
7054
7216
  # property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
7055
7217
  # patch_set: "OS", # accepts OS, APPLICATION
7056
7218
  # max_results: 1,
@@ -7722,9 +7884,14 @@ module Aws::SSM
7722
7884
  end
7723
7885
 
7724
7886
  # The document can't be shared with more Amazon Web Services user
7725
- # accounts. You can share a document with a maximum of 20 accounts. You
7726
- # can publicly share up to five documents. If you need to increase this
7727
- # limit, contact Amazon Web Services Support.
7887
+ # accounts. You can specify a maximum of 20 accounts per API operation
7888
+ # to share a private document.
7889
+ #
7890
+ # By default, you can share a private document with a maximum of 1,000
7891
+ # accounts and publicly share up to five documents.
7892
+ #
7893
+ # If you need to increase the quota for privately or publicly shared
7894
+ # Systems Manager documents, contact Amazon Web Services Support.
7728
7895
  #
7729
7896
  # @!attribute [rw] message
7730
7897
  # @return [String]
@@ -8477,7 +8644,7 @@ module Aws::SSM
8477
8644
  # data as a hash:
8478
8645
  #
8479
8646
  # {
8480
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
8647
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
8481
8648
  # }
8482
8649
  #
8483
8650
  # @!attribute [rw] operating_system
@@ -8517,7 +8684,7 @@ module Aws::SSM
8517
8684
  # instance_id: "InstanceId", # required
8518
8685
  # snapshot_id: "SnapshotId", # required
8519
8686
  # baseline_override: {
8520
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
8687
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
8521
8688
  # global_filters: {
8522
8689
  # patch_filters: [ # required
8523
8690
  # {
@@ -9168,6 +9335,16 @@ module Aws::SSM
9168
9335
  # The time the task execution completed.
9169
9336
  # @return [Time]
9170
9337
  #
9338
+ # @!attribute [rw] alarm_configuration
9339
+ # The details for the CloudWatch alarm you applied to your maintenance
9340
+ # window task.
9341
+ # @return [Types::AlarmConfiguration]
9342
+ #
9343
+ # @!attribute [rw] triggered_alarms
9344
+ # The CloudWatch alarms that were invoked by the maintenance window
9345
+ # task.
9346
+ # @return [Array<Types::AlarmStateInformation>]
9347
+ #
9171
9348
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowExecutionTaskResult AWS API Documentation
9172
9349
  #
9173
9350
  class GetMaintenanceWindowExecutionTaskResult < Struct.new(
@@ -9183,7 +9360,9 @@ module Aws::SSM
9183
9360
  :status,
9184
9361
  :status_details,
9185
9362
  :start_time,
9186
- :end_time)
9363
+ :end_time,
9364
+ :alarm_configuration,
9365
+ :triggered_alarms)
9187
9366
  SENSITIVE = [:task_parameters]
9188
9367
  include Aws::Structure
9189
9368
  end
@@ -9445,6 +9624,11 @@ module Aws::SSM
9445
9624
  # operation.
9446
9625
  # @return [String]
9447
9626
  #
9627
+ # @!attribute [rw] alarm_configuration
9628
+ # The details for the CloudWatch alarm you applied to your maintenance
9629
+ # window task.
9630
+ # @return [Types::AlarmConfiguration]
9631
+ #
9448
9632
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetMaintenanceWindowTaskResult AWS API Documentation
9449
9633
  #
9450
9634
  class GetMaintenanceWindowTaskResult < Struct.new(
@@ -9462,7 +9646,8 @@ module Aws::SSM
9462
9646
  :logging_info,
9463
9647
  :name,
9464
9648
  :description,
9465
- :cutoff_behavior)
9649
+ :cutoff_behavior,
9650
+ :alarm_configuration)
9466
9651
  SENSITIVE = [:task_parameters, :description]
9467
9652
  include Aws::Structure
9468
9653
  end
@@ -9905,7 +10090,7 @@ module Aws::SSM
9905
10090
  #
9906
10091
  # {
9907
10092
  # patch_group: "PatchGroup", # required
9908
- # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
10093
+ # operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
9909
10094
  # }
9910
10095
  #
9911
10096
  # @!attribute [rw] patch_group
@@ -10566,18 +10751,30 @@ module Aws::SSM
10566
10751
  # }
10567
10752
  #
10568
10753
  # @!attribute [rw] key
10569
- # The filter key name to describe your managed nodes. For example:
10754
+ # The filter key name to describe your managed nodes.
10755
+ #
10756
+ # Valid filter key values: ActivationIds \| AgentVersion \|
10757
+ # AssociationStatus \| IamRole \| InstanceIds \| PingStatus \|
10758
+ # PlatformTypes \| ResourceType \| SourceIds \| SourceTypes \|
10759
+ # "tag-key" \| "tag:`\{keyname\}`
10760
+ #
10761
+ # * Valid values for the `AssociationStatus` filter key: Success \|
10762
+ # Pending \| Failed
10763
+ #
10764
+ # * Valid values for the `PingStatus` filter key: Online \|
10765
+ # ConnectionLost \| Inactive (deprecated)
10766
+ #
10767
+ # * Valid values for the `PlatformType` filter key: Windows \| Linux
10768
+ # \| MacOS
10570
10769
  #
10571
- # "InstanceIds" \| "AgentVersion" \| "PingStatus" \|
10572
- # "PlatformTypes" \| "ActivationIds" \| "IamRole" \|
10573
- # "ResourceType" \| "AssociationStatus" \| "tag-key" \|
10574
- # "tag:`\{keyname\}`
10770
+ # * Valid values for the `ResourceType` filter key: EC2Instance \|
10771
+ # ManagedInstance
10575
10772
  #
10576
- # `Tag Key` isn't a valid filter. You must specify either `tag-key`
10577
- # or `tag:\{keyname\}` and a string. Here are some valid examples:
10578
- # `tag-key`, `tag:123`, `tag:al!`, `tag:Windows`. Here are some
10579
- # *invalid* examples: `tag-keys`, `Tag Key`, `tag:`, `tagKey`,
10580
- # `abc:keyname`.
10773
+ # * Valid values for the `SourceType` filter key: AWS::EC2::Instance
10774
+ # \| AWS::SSM::ManagedInstance \| AWS::IoT::Thing
10775
+ #
10776
+ # * Valid tag examples: `Key=tag-key,Values=Purpose` \|
10777
+ # `Key=tag:Purpose,Values=Test`.
10581
10778
  # @return [String]
10582
10779
  #
10583
10780
  # @!attribute [rw] values
@@ -10732,26 +10929,25 @@ module Aws::SSM
10732
10929
  # @return [String]
10733
10930
  #
10734
10931
  # @!attribute [rw] critical_non_compliant_count
10735
- # The number of managed nodes where patches that are specified as
10736
- # `Critical` for compliance reporting in the patch baseline aren't
10737
- # installed. These patches might be missing, have failed installation,
10738
- # were rejected, or were installed but awaiting a required managed
10739
- # node reboot. The status of these managed nodes is `NON_COMPLIANT`.
10932
+ # The number of patches per node that are specified as `Critical` for
10933
+ # compliance reporting in the patch baseline aren't installed. These
10934
+ # patches might be missing, have failed installation, were rejected,
10935
+ # or were installed but awaiting a required managed node reboot. The
10936
+ # status of these managed nodes is `NON_COMPLIANT`.
10740
10937
  # @return [Integer]
10741
10938
  #
10742
10939
  # @!attribute [rw] security_non_compliant_count
10743
- # The number of managed nodes where patches that are specified as
10744
- # `Security` in a patch advisory aren't installed. These patches
10745
- # might be missing, have failed installation, were rejected, or were
10746
- # installed but awaiting a required managed node reboot. The status of
10747
- # these managed nodes is `NON_COMPLIANT`.
10940
+ # The number of patches per node that are specified as `Security` in a
10941
+ # patch advisory aren't installed. These patches might be missing,
10942
+ # have failed installation, were rejected, or were installed but
10943
+ # awaiting a required managed node reboot. The status of these managed
10944
+ # nodes is `NON_COMPLIANT`.
10748
10945
  # @return [Integer]
10749
10946
  #
10750
10947
  # @!attribute [rw] other_non_compliant_count
10751
- # The number of managed nodes with patches installed that are
10752
- # specified as other than `Critical` or `Security` but aren't
10753
- # compliant with the patch baseline. The status of these managed nodes
10754
- # is `NON_COMPLIANT`.
10948
+ # The number of patches per node that are specified as other than
10949
+ # `Critical` or `Security` but aren't compliant with the patch
10950
+ # baseline. The status of these managed nodes is `NON_COMPLIANT`.
10755
10951
  # @return [Integer]
10756
10952
  #
10757
10953
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstancePatchState AWS API Documentation
@@ -11439,7 +11635,7 @@ module Aws::SSM
11439
11635
  include Aws::Structure
11440
11636
  end
11441
11637
 
11442
- # The specified tag key or value is not valid.
11638
+ # The specified tag key or value isn't valid.
11443
11639
  #
11444
11640
  # @!attribute [rw] message
11445
11641
  # @return [String]
@@ -13118,7 +13314,7 @@ module Aws::SSM
13118
13314
  # }
13119
13315
  #
13120
13316
  # @!attribute [rw] s3_bucket_name
13121
- # The name of an S3 bucket where execution logs are stored .
13317
+ # The name of an S3 bucket where execution logs are stored.
13122
13318
  # @return [String]
13123
13319
  #
13124
13320
  # @!attribute [rw] s3_key_prefix
@@ -13267,6 +13463,16 @@ module Aws::SSM
13267
13463
  # The type of task that ran.
13268
13464
  # @return [String]
13269
13465
  #
13466
+ # @!attribute [rw] alarm_configuration
13467
+ # The details for the CloudWatch alarm applied to your maintenance
13468
+ # window task.
13469
+ # @return [Types::AlarmConfiguration]
13470
+ #
13471
+ # @!attribute [rw] triggered_alarms
13472
+ # The CloudWatch alarm that was invoked by the maintenance window
13473
+ # task.
13474
+ # @return [Array<Types::AlarmStateInformation>]
13475
+ #
13270
13476
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowExecutionTaskIdentity AWS API Documentation
13271
13477
  #
13272
13478
  class MaintenanceWindowExecutionTaskIdentity < Struct.new(
@@ -13277,7 +13483,9 @@ module Aws::SSM
13277
13483
  :start_time,
13278
13484
  :end_time,
13279
13485
  :task_arn,
13280
- :task_type)
13486
+ :task_type,
13487
+ :alarm_configuration,
13488
+ :triggered_alarms)
13281
13489
  SENSITIVE = []
13282
13490
  include Aws::Structure
13283
13491
  end
@@ -13916,6 +14124,11 @@ module Aws::SSM
13916
14124
  # cutoff time specified in the maintenance windows is reached.
13917
14125
  # @return [String]
13918
14126
  #
14127
+ # @!attribute [rw] alarm_configuration
14128
+ # The details for the CloudWatch alarm applied to your maintenance
14129
+ # window task.
14130
+ # @return [Types::AlarmConfiguration]
14131
+ #
13919
14132
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/MaintenanceWindowTask AWS API Documentation
13920
14133
  #
13921
14134
  class MaintenanceWindowTask < Struct.new(
@@ -13932,7 +14145,8 @@ module Aws::SSM
13932
14145
  :max_errors,
13933
14146
  :name,
13934
14147
  :description,
13935
- :cutoff_behavior)
14148
+ :cutoff_behavior,
14149
+ :alarm_configuration)
13936
14150
  SENSITIVE = [:task_parameters, :description]
13937
14151
  include Aws::Structure
13938
14152
  end
@@ -17051,6 +17265,14 @@ module Aws::SSM
17051
17265
  # description: "MaintenanceWindowDescription",
17052
17266
  # client_token: "ClientToken",
17053
17267
  # cutoff_behavior: "CONTINUE_TASK", # accepts CONTINUE_TASK, CANCEL_TASK
17268
+ # alarm_configuration: {
17269
+ # ignore_poll_alarm_failure: false,
17270
+ # alarms: [ # required
17271
+ # {
17272
+ # name: "AlarmName", # required
17273
+ # },
17274
+ # ],
17275
+ # },
17054
17276
  # }
17055
17277
  #
17056
17278
  # @!attribute [rw] window_id
@@ -17228,6 +17450,11 @@ module Aws::SSM
17228
17450
  # The status for tasks that are not completed is `TIMED_OUT`.
17229
17451
  # @return [String]
17230
17452
  #
17453
+ # @!attribute [rw] alarm_configuration
17454
+ # The CloudWatch alarm you want to apply to your maintenance window
17455
+ # task.
17456
+ # @return [Types::AlarmConfiguration]
17457
+ #
17231
17458
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/RegisterTaskWithMaintenanceWindowRequest AWS API Documentation
17232
17459
  #
17233
17460
  class RegisterTaskWithMaintenanceWindowRequest < Struct.new(
@@ -17245,7 +17472,8 @@ module Aws::SSM
17245
17472
  :name,
17246
17473
  :description,
17247
17474
  :client_token,
17248
- :cutoff_behavior)
17475
+ :cutoff_behavior,
17476
+ :alarm_configuration)
17249
17477
  SENSITIVE = [:task_parameters, :description]
17250
17478
  include Aws::Structure
17251
17479
  end
@@ -18341,6 +18569,14 @@ module Aws::SSM
18341
18569
  # cloud_watch_log_group_name: "CloudWatchLogGroupName",
18342
18570
  # cloud_watch_output_enabled: false,
18343
18571
  # },
18572
+ # alarm_configuration: {
18573
+ # ignore_poll_alarm_failure: false,
18574
+ # alarms: [ # required
18575
+ # {
18576
+ # name: "AlarmName", # required
18577
+ # },
18578
+ # ],
18579
+ # },
18344
18580
  # }
18345
18581
  #
18346
18582
  # @!attribute [rw] instance_ids
@@ -18519,6 +18755,10 @@ module Aws::SSM
18519
18755
  # Amazon Web Services Systems Manager.
18520
18756
  # @return [Types::CloudWatchOutputConfig]
18521
18757
  #
18758
+ # @!attribute [rw] alarm_configuration
18759
+ # The CloudWatch alarm you want to apply to your command.
18760
+ # @return [Types::AlarmConfiguration]
18761
+ #
18522
18762
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/SendCommandRequest AWS API Documentation
18523
18763
  #
18524
18764
  class SendCommandRequest < Struct.new(
@@ -18538,7 +18778,8 @@ module Aws::SSM
18538
18778
  :max_errors,
18539
18779
  :service_role_arn,
18540
18780
  :notification_config,
18541
- :cloud_watch_output_config)
18781
+ :cloud_watch_output_config,
18782
+ :alarm_configuration)
18542
18783
  SENSITIVE = [:parameters]
18543
18784
  include Aws::Structure
18544
18785
  end
@@ -18903,6 +19144,14 @@ module Aws::SSM
18903
19144
  # value: "TagValue", # required
18904
19145
  # },
18905
19146
  # ],
19147
+ # alarm_configuration: {
19148
+ # ignore_poll_alarm_failure: false,
19149
+ # alarms: [ # required
19150
+ # {
19151
+ # name: "AlarmName", # required
19152
+ # },
19153
+ # ],
19154
+ # },
18906
19155
  # }
18907
19156
  #
18908
19157
  # @!attribute [rw] document_name
@@ -19008,6 +19257,10 @@ module Aws::SSM
19008
19257
  # </note>
19009
19258
  # @return [Array<Types::Tag>]
19010
19259
  #
19260
+ # @!attribute [rw] alarm_configuration
19261
+ # The CloudWatch alarm you want to apply to your automation.
19262
+ # @return [Types::AlarmConfiguration]
19263
+ #
19011
19264
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartAutomationExecutionRequest AWS API Documentation
19012
19265
  #
19013
19266
  class StartAutomationExecutionRequest < Struct.new(
@@ -19022,7 +19275,8 @@ module Aws::SSM
19022
19275
  :max_concurrency,
19023
19276
  :max_errors,
19024
19277
  :target_locations,
19025
- :tags)
19278
+ :tags,
19279
+ :alarm_configuration)
19026
19280
  SENSITIVE = []
19027
19281
  include Aws::Structure
19028
19282
  end
@@ -20017,6 +20271,14 @@ module Aws::SSM
20017
20271
  # "TargetMapKey" => ["TargetMapValue"],
20018
20272
  # },
20019
20273
  # ],
20274
+ # alarm_configuration: {
20275
+ # ignore_poll_alarm_failure: false,
20276
+ # alarms: [ # required
20277
+ # {
20278
+ # name: "AlarmName", # required
20279
+ # },
20280
+ # ],
20281
+ # },
20020
20282
  # }
20021
20283
  #
20022
20284
  # @!attribute [rw] association_id
@@ -20218,6 +20480,11 @@ module Aws::SSM
20218
20480
  # Targets and TargetMaps can't be specified together.
20219
20481
  # @return [Array<Hash<String,Array<String>>>]
20220
20482
  #
20483
+ # @!attribute [rw] alarm_configuration
20484
+ # The details for the CloudWatch alarm you want to apply to an
20485
+ # automation or command.
20486
+ # @return [Types::AlarmConfiguration]
20487
+ #
20221
20488
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationRequest AWS API Documentation
20222
20489
  #
20223
20490
  class UpdateAssociationRequest < Struct.new(
@@ -20239,7 +20506,8 @@ module Aws::SSM
20239
20506
  :calendar_names,
20240
20507
  :target_locations,
20241
20508
  :schedule_offset,
20242
- :target_maps)
20509
+ :target_maps,
20510
+ :alarm_configuration)
20243
20511
  SENSITIVE = [:parameters]
20244
20512
  include Aws::Structure
20245
20513
  end
@@ -20862,6 +21130,14 @@ module Aws::SSM
20862
21130
  # description: "MaintenanceWindowDescription",
20863
21131
  # replace: false,
20864
21132
  # cutoff_behavior: "CONTINUE_TASK", # accepts CONTINUE_TASK, CANCEL_TASK
21133
+ # alarm_configuration: {
21134
+ # ignore_poll_alarm_failure: false,
21135
+ # alarms: [ # required
21136
+ # {
21137
+ # name: "AlarmName", # required
21138
+ # },
21139
+ # ],
21140
+ # },
20865
21141
  # }
20866
21142
  #
20867
21143
  # @!attribute [rw] window_id
@@ -21053,6 +21329,11 @@ module Aws::SSM
21053
21329
  # The status for tasks that are not completed is `TIMED_OUT`.
21054
21330
  # @return [String]
21055
21331
  #
21332
+ # @!attribute [rw] alarm_configuration
21333
+ # The CloudWatch alarm you want to apply to your maintenance window
21334
+ # task.
21335
+ # @return [Types::AlarmConfiguration]
21336
+ #
21056
21337
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateMaintenanceWindowTaskRequest AWS API Documentation
21057
21338
  #
21058
21339
  class UpdateMaintenanceWindowTaskRequest < Struct.new(
@@ -21070,7 +21351,8 @@ module Aws::SSM
21070
21351
  :name,
21071
21352
  :description,
21072
21353
  :replace,
21073
- :cutoff_behavior)
21354
+ :cutoff_behavior,
21355
+ :alarm_configuration)
21074
21356
  SENSITIVE = [:task_parameters, :description]
21075
21357
  include Aws::Structure
21076
21358
  end
@@ -21153,6 +21435,11 @@ module Aws::SSM
21153
21435
  # cutoff time specified in the maintenance windows is reached.
21154
21436
  # @return [String]
21155
21437
  #
21438
+ # @!attribute [rw] alarm_configuration
21439
+ # The details for the CloudWatch alarm you applied to your maintenance
21440
+ # window task.
21441
+ # @return [Types::AlarmConfiguration]
21442
+ #
21156
21443
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateMaintenanceWindowTaskResult AWS API Documentation
21157
21444
  #
21158
21445
  class UpdateMaintenanceWindowTaskResult < Struct.new(
@@ -21169,7 +21456,8 @@ module Aws::SSM
21169
21456
  :logging_info,
21170
21457
  :name,
21171
21458
  :description,
21172
- :cutoff_behavior)
21459
+ :cutoff_behavior,
21460
+ :alarm_configuration)
21173
21461
  SENSITIVE = [:task_parameters, :description]
21174
21462
  include Aws::Structure
21175
21463
  end