aws-sdk-ssm 1.106.0 → 1.111.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +350 -45
- data/lib/aws-sdk-ssm/client_api.rb +169 -0
- data/lib/aws-sdk-ssm/customizations.rb +1 -1
- data/lib/aws-sdk-ssm/errors.rb +42 -0
- data/lib/aws-sdk-ssm/types.rb +663 -81
- metadata +5 -6
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -152,9 +152,7 @@ module Aws::SSM
|
|
152
152
|
# @return [String]
|
153
153
|
#
|
154
154
|
# @!attribute [rw] tags
|
155
|
-
# One or more tags. The value parameter is required
|
156
|
-
# want the tag to have a value, specify the parameter with no value,
|
157
|
-
# and we set the value to an empty string.
|
155
|
+
# One or more tags. The value parameter is required.
|
158
156
|
#
|
159
157
|
# Do not enter personally identifiable information in this field.
|
160
158
|
# @return [Array<Types::Tag>]
|
@@ -188,6 +186,65 @@ module Aws::SSM
|
|
188
186
|
include Aws::Structure
|
189
187
|
end
|
190
188
|
|
189
|
+
# @note When making an API call, you may pass AssociateOpsItemRelatedItemRequest
|
190
|
+
# data as a hash:
|
191
|
+
#
|
192
|
+
# {
|
193
|
+
# ops_item_id: "OpsItemId", # required
|
194
|
+
# association_type: "OpsItemRelatedItemAssociationType", # required
|
195
|
+
# resource_type: "OpsItemRelatedItemAssociationResourceType", # required
|
196
|
+
# resource_uri: "OpsItemRelatedItemAssociationResourceUri", # required
|
197
|
+
# }
|
198
|
+
#
|
199
|
+
# @!attribute [rw] ops_item_id
|
200
|
+
# The ID of the OpsItem to which you want to associate a resource as a
|
201
|
+
# related item.
|
202
|
+
# @return [String]
|
203
|
+
#
|
204
|
+
# @!attribute [rw] association_type
|
205
|
+
# The type of association that you want to create between an OpsItem
|
206
|
+
# and a resource. OpsCenter supports `IsParentOf` and `RelatesTo`
|
207
|
+
# association types.
|
208
|
+
# @return [String]
|
209
|
+
#
|
210
|
+
# @!attribute [rw] resource_type
|
211
|
+
# The type of resource that you want to associate with an OpsItem.
|
212
|
+
# OpsCenter supports the following types:
|
213
|
+
#
|
214
|
+
# `AWS::SSMIncidents::IncidentRecord`\: an Incident Manager incident.
|
215
|
+
# Incident Manager is a capability of AWS Systems Manager.
|
216
|
+
#
|
217
|
+
# `AWS::SSM::Document`\: a Systems Manager (SSM) document.
|
218
|
+
# @return [String]
|
219
|
+
#
|
220
|
+
# @!attribute [rw] resource_uri
|
221
|
+
# The Amazon Resource Name (ARN) of the AWS resource that you want to
|
222
|
+
# associate with the OpsItem.
|
223
|
+
# @return [String]
|
224
|
+
#
|
225
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociateOpsItemRelatedItemRequest AWS API Documentation
|
226
|
+
#
|
227
|
+
class AssociateOpsItemRelatedItemRequest < Struct.new(
|
228
|
+
:ops_item_id,
|
229
|
+
:association_type,
|
230
|
+
:resource_type,
|
231
|
+
:resource_uri)
|
232
|
+
SENSITIVE = []
|
233
|
+
include Aws::Structure
|
234
|
+
end
|
235
|
+
|
236
|
+
# @!attribute [rw] association_id
|
237
|
+
# The association ID.
|
238
|
+
# @return [String]
|
239
|
+
#
|
240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociateOpsItemRelatedItemResponse AWS API Documentation
|
241
|
+
#
|
242
|
+
class AssociateOpsItemRelatedItemResponse < Struct.new(
|
243
|
+
:association_id)
|
244
|
+
SENSITIVE = []
|
245
|
+
include Aws::Structure
|
246
|
+
end
|
247
|
+
|
191
248
|
# You must disassociate a document from all instances before you can
|
192
249
|
# delete it.
|
193
250
|
#
|
@@ -234,7 +291,7 @@ module Aws::SSM
|
|
234
291
|
#
|
235
292
|
# @!attribute [rw] schedule_expression
|
236
293
|
# A cron expression that specifies a schedule when the association
|
237
|
-
# runs.
|
294
|
+
# runs. The schedule runs in Coordinated Universal Time (UTC).
|
238
295
|
# @return [String]
|
239
296
|
#
|
240
297
|
# @!attribute [rw] association_name
|
@@ -397,6 +454,17 @@ module Aws::SSM
|
|
397
454
|
# supported for rate expressions.
|
398
455
|
# @return [Boolean]
|
399
456
|
#
|
457
|
+
# @!attribute [rw] calendar_names
|
458
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
459
|
+
# Change Calendar type documents your associations are gated under.
|
460
|
+
# The associations only run when that Change Calendar is open. For
|
461
|
+
# more information, see [AWS Systems Manager Change Calendar][1].
|
462
|
+
#
|
463
|
+
#
|
464
|
+
#
|
465
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
466
|
+
# @return [Array<String>]
|
467
|
+
#
|
400
468
|
# @!attribute [rw] target_locations
|
401
469
|
# The combination of AWS Regions and AWS accounts where you want to
|
402
470
|
# run the association.
|
@@ -427,6 +495,7 @@ module Aws::SSM
|
|
427
495
|
:compliance_severity,
|
428
496
|
:sync_compliance,
|
429
497
|
:apply_only_at_cron_interval,
|
498
|
+
:calendar_names,
|
430
499
|
:target_locations)
|
431
500
|
SENSITIVE = []
|
432
501
|
include Aws::Structure
|
@@ -834,6 +903,18 @@ module Aws::SSM
|
|
834
903
|
# supported for rate expressions.
|
835
904
|
# @return [Boolean]
|
836
905
|
#
|
906
|
+
# @!attribute [rw] calendar_names
|
907
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
908
|
+
# Change Calendar type documents your associations are gated under.
|
909
|
+
# The associations for this version only run when that Change Calendar
|
910
|
+
# is open. For more information, see [AWS Systems Manager Change
|
911
|
+
# Calendar][1].
|
912
|
+
#
|
913
|
+
#
|
914
|
+
#
|
915
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
916
|
+
# @return [Array<String>]
|
917
|
+
#
|
837
918
|
# @!attribute [rw] target_locations
|
838
919
|
# The combination of AWS Regions and AWS accounts where you wanted to
|
839
920
|
# run the association when this association version was created.
|
@@ -857,6 +938,7 @@ module Aws::SSM
|
|
857
938
|
:compliance_severity,
|
858
939
|
:sync_compliance,
|
859
940
|
:apply_only_at_cron_interval,
|
941
|
+
:calendar_names,
|
860
942
|
:target_locations)
|
861
943
|
SENSITIVE = []
|
862
944
|
include Aws::Structure
|
@@ -2072,6 +2154,7 @@ module Aws::SSM
|
|
2072
2154
|
# @return [String]
|
2073
2155
|
#
|
2074
2156
|
# @!attribute [rw] command_plugins
|
2157
|
+
# Plugins processed by the command.
|
2075
2158
|
# @return [Array<Types::CommandPlugin>]
|
2076
2159
|
#
|
2077
2160
|
# @!attribute [rw] service_role
|
@@ -2575,8 +2658,10 @@ module Aws::SSM
|
|
2575
2658
|
# @return [Integer]
|
2576
2659
|
#
|
2577
2660
|
# @!attribute [rw] expiration_date
|
2578
|
-
# The date by which this activation request should expire
|
2579
|
-
#
|
2661
|
+
# The date by which this activation request should expire, in
|
2662
|
+
# timestamp format, such as "2021-07-07T00:00:00". You can specify a
|
2663
|
+
# date up to 30 days in advance. If you don't provide an expiration
|
2664
|
+
# date, the activation code expires in 24 hours.
|
2580
2665
|
# @return [Time]
|
2581
2666
|
#
|
2582
2667
|
# @!attribute [rw] tags
|
@@ -2672,6 +2757,7 @@ module Aws::SSM
|
|
2672
2757
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2673
2758
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2674
2759
|
# apply_only_at_cron_interval: false,
|
2760
|
+
# calendar_names: ["CalendarNameOrARN"],
|
2675
2761
|
# target_locations: [
|
2676
2762
|
# {
|
2677
2763
|
# accounts: ["Account"],
|
@@ -2731,6 +2817,7 @@ module Aws::SSM
|
|
2731
2817
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2732
2818
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2733
2819
|
# apply_only_at_cron_interval: false,
|
2820
|
+
# calendar_names: ["CalendarNameOrARN"],
|
2734
2821
|
# target_locations: [
|
2735
2822
|
# {
|
2736
2823
|
# accounts: ["Account"],
|
@@ -2859,6 +2946,17 @@ module Aws::SSM
|
|
2859
2946
|
# supported for rate expressions.
|
2860
2947
|
# @return [Boolean]
|
2861
2948
|
#
|
2949
|
+
# @!attribute [rw] calendar_names
|
2950
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
2951
|
+
# Change Calendar type documents your associations are gated under.
|
2952
|
+
# The associations only run when that Change Calendar is open. For
|
2953
|
+
# more information, see [AWS Systems Manager Change Calendar][1].
|
2954
|
+
#
|
2955
|
+
#
|
2956
|
+
#
|
2957
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
2958
|
+
# @return [Array<String>]
|
2959
|
+
#
|
2862
2960
|
# @!attribute [rw] target_locations
|
2863
2961
|
# Use this action to create an association in multiple Regions and
|
2864
2962
|
# multiple accounts.
|
@@ -2881,6 +2979,7 @@ module Aws::SSM
|
|
2881
2979
|
:compliance_severity,
|
2882
2980
|
:sync_compliance,
|
2883
2981
|
:apply_only_at_cron_interval,
|
2982
|
+
:calendar_names,
|
2884
2983
|
:target_locations)
|
2885
2984
|
SENSITIVE = []
|
2886
2985
|
include Aws::Structure
|
@@ -2934,6 +3033,7 @@ module Aws::SSM
|
|
2934
3033
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2935
3034
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2936
3035
|
# apply_only_at_cron_interval: false,
|
3036
|
+
# calendar_names: ["CalendarNameOrARN"],
|
2937
3037
|
# target_locations: [
|
2938
3038
|
# {
|
2939
3039
|
# accounts: ["Account"],
|
@@ -3076,13 +3176,24 @@ module Aws::SSM
|
|
3076
3176
|
# @return [String]
|
3077
3177
|
#
|
3078
3178
|
# @!attribute [rw] apply_only_at_cron_interval
|
3079
|
-
# By default, when you create a new
|
3179
|
+
# By default, when you create a new association, the system runs it
|
3080
3180
|
# immediately after it is created and then according to the schedule
|
3081
3181
|
# you specified. Specify this option if you don't want an association
|
3082
3182
|
# to run immediately after you create it. This parameter is not
|
3083
3183
|
# supported for rate expressions.
|
3084
3184
|
# @return [Boolean]
|
3085
3185
|
#
|
3186
|
+
# @!attribute [rw] calendar_names
|
3187
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
3188
|
+
# Change Calendar type documents you want to gate your associations
|
3189
|
+
# under. The associations only run when that Change Calendar is open.
|
3190
|
+
# For more information, see [AWS Systems Manager Change Calendar][1].
|
3191
|
+
#
|
3192
|
+
#
|
3193
|
+
#
|
3194
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
3195
|
+
# @return [Array<String>]
|
3196
|
+
#
|
3086
3197
|
# @!attribute [rw] target_locations
|
3087
3198
|
# A location is a combination of AWS Regions and AWS accounts where
|
3088
3199
|
# you want to run the association. Use this action to create an
|
@@ -3106,6 +3217,7 @@ module Aws::SSM
|
|
3106
3217
|
:compliance_severity,
|
3107
3218
|
:sync_compliance,
|
3108
3219
|
:apply_only_at_cron_interval,
|
3220
|
+
:calendar_names,
|
3109
3221
|
:target_locations)
|
3110
3222
|
SENSITIVE = []
|
3111
3223
|
include Aws::Structure
|
@@ -3142,8 +3254,9 @@ module Aws::SSM
|
|
3142
3254
|
# },
|
3143
3255
|
# ],
|
3144
3256
|
# name: "DocumentName", # required
|
3257
|
+
# display_name: "DocumentDisplayName",
|
3145
3258
|
# version_name: "DocumentVersionName",
|
3146
|
-
# document_type: "Command", # accepts Command, Policy, Automation, Session, Package, ApplicationConfiguration, ApplicationConfigurationSchema, DeploymentStrategy, ChangeCalendar, Automation.ChangeTemplate
|
3259
|
+
# document_type: "Command", # accepts Command, Policy, Automation, Session, Package, ApplicationConfiguration, ApplicationConfigurationSchema, DeploymentStrategy, ChangeCalendar, Automation.ChangeTemplate, ProblemAnalysis, ProblemAnalysisTemplate
|
3147
3260
|
# document_format: "YAML", # accepts YAML, JSON, TEXT
|
3148
3261
|
# target_type: "TargetType",
|
3149
3262
|
# tags: [
|
@@ -3207,6 +3320,13 @@ module Aws::SSM
|
|
3207
3320
|
# * `amzn`
|
3208
3321
|
# @return [String]
|
3209
3322
|
#
|
3323
|
+
# @!attribute [rw] display_name
|
3324
|
+
# An optional field where you can specify a friendly name for the
|
3325
|
+
# Systems Manager document. This value can differ for each version of
|
3326
|
+
# the document. You can update this value at a later time using the
|
3327
|
+
# UpdateDocument action.
|
3328
|
+
# @return [String]
|
3329
|
+
#
|
3210
3330
|
# @!attribute [rw] version_name
|
3211
3331
|
# An optional field specifying the version of the artifact you are
|
3212
3332
|
# creating with the document. For example, "Release 12, Update 6".
|
@@ -3234,7 +3354,7 @@ module Aws::SSM
|
|
3234
3354
|
#
|
3235
3355
|
#
|
3236
3356
|
#
|
3237
|
-
# [1]:
|
3357
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
3238
3358
|
# @return [String]
|
3239
3359
|
#
|
3240
3360
|
# @!attribute [rw] tags
|
@@ -3262,6 +3382,7 @@ module Aws::SSM
|
|
3262
3382
|
:requires,
|
3263
3383
|
:attachments,
|
3264
3384
|
:name,
|
3385
|
+
:display_name,
|
3265
3386
|
:version_name,
|
3266
3387
|
:document_type,
|
3267
3388
|
:document_format,
|
@@ -3914,6 +4035,7 @@ module Aws::SSM
|
|
3914
4035
|
# },
|
3915
4036
|
# source_regions: ["ResourceDataSyncSourceRegion"], # required
|
3916
4037
|
# include_future_regions: false,
|
4038
|
+
# enable_all_ops_data_sources: false,
|
3917
4039
|
# },
|
3918
4040
|
# }
|
3919
4041
|
#
|
@@ -4878,8 +5000,8 @@ module Aws::SSM
|
|
4878
5000
|
# @return [Integer]
|
4879
5001
|
#
|
4880
5002
|
# @!attribute [rw] reverse_order
|
4881
|
-
#
|
4882
|
-
#
|
5003
|
+
# Indicates whether to list step executions in reverse order by start
|
5004
|
+
# time. The default value is 'false'.
|
4883
5005
|
# @return [Boolean]
|
4884
5006
|
#
|
4885
5007
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationStepExecutionsRequest AWS API Documentation
|
@@ -6428,6 +6550,28 @@ module Aws::SSM
|
|
6428
6550
|
# Inventory.
|
6429
6551
|
# @return [Integer]
|
6430
6552
|
#
|
6553
|
+
# @!attribute [rw] instances_with_critical_non_compliant_patches
|
6554
|
+
# The number of instances where patches that are specified as
|
6555
|
+
# "Critical" for compliance reporting in the patch baseline are not
|
6556
|
+
# installed. These patches might be missing, have failed installation,
|
6557
|
+
# were rejected, or were installed but awaiting a required instance
|
6558
|
+
# reboot. The status of these instances is `NON_COMPLIANT`.
|
6559
|
+
# @return [Integer]
|
6560
|
+
#
|
6561
|
+
# @!attribute [rw] instances_with_security_non_compliant_patches
|
6562
|
+
# The number of instances where patches that are specified as
|
6563
|
+
# "Security" in a patch advisory are not installed. These patches
|
6564
|
+
# might be missing, have failed installation, were rejected, or were
|
6565
|
+
# installed but awaiting a required instance reboot. The status of
|
6566
|
+
# these instances is `NON_COMPLIANT`.
|
6567
|
+
# @return [Integer]
|
6568
|
+
#
|
6569
|
+
# @!attribute [rw] instances_with_other_non_compliant_patches
|
6570
|
+
# The number of instances with patches installed that are specified as
|
6571
|
+
# other than "Critical" or "Security" but are not compliant with
|
6572
|
+
# the patch baseline. The status of these instances is NON\_COMPLIANT.
|
6573
|
+
# @return [Integer]
|
6574
|
+
#
|
6431
6575
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribePatchGroupStateResult AWS API Documentation
|
6432
6576
|
#
|
6433
6577
|
class DescribePatchGroupStateResult < Struct.new(
|
@@ -6439,7 +6583,10 @@ module Aws::SSM
|
|
6439
6583
|
:instances_with_missing_patches,
|
6440
6584
|
:instances_with_failed_patches,
|
6441
6585
|
:instances_with_not_applicable_patches,
|
6442
|
-
:instances_with_unreported_not_applicable_patches
|
6586
|
+
:instances_with_unreported_not_applicable_patches,
|
6587
|
+
:instances_with_critical_non_compliant_patches,
|
6588
|
+
:instances_with_security_non_compliant_patches,
|
6589
|
+
:instances_with_other_non_compliant_patches)
|
6443
6590
|
SENSITIVE = []
|
6444
6591
|
include Aws::Structure
|
6445
6592
|
end
|
@@ -6653,6 +6800,37 @@ module Aws::SSM
|
|
6653
6800
|
include Aws::Structure
|
6654
6801
|
end
|
6655
6802
|
|
6803
|
+
# @note When making an API call, you may pass DisassociateOpsItemRelatedItemRequest
|
6804
|
+
# data as a hash:
|
6805
|
+
#
|
6806
|
+
# {
|
6807
|
+
# ops_item_id: "OpsItemId", # required
|
6808
|
+
# association_id: "OpsItemRelatedItemAssociationId", # required
|
6809
|
+
# }
|
6810
|
+
#
|
6811
|
+
# @!attribute [rw] ops_item_id
|
6812
|
+
# The ID of the OpsItem for which you want to delete an association
|
6813
|
+
# between the OpsItem and a related resource.
|
6814
|
+
# @return [String]
|
6815
|
+
#
|
6816
|
+
# @!attribute [rw] association_id
|
6817
|
+
# The ID of the association for which you want to delete an
|
6818
|
+
# association between the OpsItem and a related resource.
|
6819
|
+
# @return [String]
|
6820
|
+
#
|
6821
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DisassociateOpsItemRelatedItemRequest AWS API Documentation
|
6822
|
+
#
|
6823
|
+
class DisassociateOpsItemRelatedItemRequest < Struct.new(
|
6824
|
+
:ops_item_id,
|
6825
|
+
:association_id)
|
6826
|
+
SENSITIVE = []
|
6827
|
+
include Aws::Structure
|
6828
|
+
end
|
6829
|
+
|
6830
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DisassociateOpsItemRelatedItemResponse AWS API Documentation
|
6831
|
+
#
|
6832
|
+
class DisassociateOpsItemRelatedItemResponse < Aws::EmptyStructure; end
|
6833
|
+
|
6656
6834
|
# The specified document already exists.
|
6657
6835
|
#
|
6658
6836
|
# @!attribute [rw] message
|
@@ -6718,6 +6896,12 @@ module Aws::SSM
|
|
6718
6896
|
# The name of the Systems Manager document.
|
6719
6897
|
# @return [String]
|
6720
6898
|
#
|
6899
|
+
# @!attribute [rw] display_name
|
6900
|
+
# The friendly name of the Systems Manager document. This value can
|
6901
|
+
# differ for each version of the document. If you want to update this
|
6902
|
+
# value, see UpdateDocument.
|
6903
|
+
# @return [String]
|
6904
|
+
#
|
6721
6905
|
# @!attribute [rw] version_name
|
6722
6906
|
# The version of the artifact associated with the document.
|
6723
6907
|
# @return [String]
|
@@ -6786,7 +6970,7 @@ module Aws::SSM
|
|
6786
6970
|
#
|
6787
6971
|
#
|
6788
6972
|
#
|
6789
|
-
# [1]:
|
6973
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
6790
6974
|
# @return [String]
|
6791
6975
|
#
|
6792
6976
|
# @!attribute [rw] tags
|
@@ -6832,6 +7016,7 @@ module Aws::SSM
|
|
6832
7016
|
:hash,
|
6833
7017
|
:hash_type,
|
6834
7018
|
:name,
|
7019
|
+
:display_name,
|
6835
7020
|
:version_name,
|
6836
7021
|
:owner,
|
6837
7022
|
:created_date,
|
@@ -6892,6 +7077,16 @@ module Aws::SSM
|
|
6892
7077
|
# The name of the Systems Manager document.
|
6893
7078
|
# @return [String]
|
6894
7079
|
#
|
7080
|
+
# @!attribute [rw] created_date
|
7081
|
+
# The date the Systems Manager document was created.
|
7082
|
+
# @return [Time]
|
7083
|
+
#
|
7084
|
+
# @!attribute [rw] display_name
|
7085
|
+
# An optional field where you can specify a friendly name for the
|
7086
|
+
# Systems Manager document. This value can differ for each version of
|
7087
|
+
# the document. If you want to update this value, see UpdateDocument.
|
7088
|
+
# @return [String]
|
7089
|
+
#
|
6895
7090
|
# @!attribute [rw] owner
|
6896
7091
|
# The AWS user account that created the document.
|
6897
7092
|
# @return [String]
|
@@ -6930,7 +7125,7 @@ module Aws::SSM
|
|
6930
7125
|
#
|
6931
7126
|
#
|
6932
7127
|
#
|
6933
|
-
# [1]:
|
7128
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
6934
7129
|
# @return [String]
|
6935
7130
|
#
|
6936
7131
|
# @!attribute [rw] tags
|
@@ -6955,6 +7150,8 @@ module Aws::SSM
|
|
6955
7150
|
#
|
6956
7151
|
class DocumentIdentifier < Struct.new(
|
6957
7152
|
:name,
|
7153
|
+
:created_date,
|
7154
|
+
:display_name,
|
6958
7155
|
:owner,
|
6959
7156
|
:version_name,
|
6960
7157
|
:platform_types,
|
@@ -7047,7 +7244,7 @@ module Aws::SSM
|
|
7047
7244
|
#
|
7048
7245
|
#
|
7049
7246
|
#
|
7050
|
-
# [1]:
|
7247
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html
|
7051
7248
|
#
|
7052
7249
|
# @note When making an API call, you may pass DocumentKeyValuesFilter
|
7053
7250
|
# data as a hash:
|
@@ -7292,6 +7489,12 @@ module Aws::SSM
|
|
7292
7489
|
# The document name.
|
7293
7490
|
# @return [String]
|
7294
7491
|
#
|
7492
|
+
# @!attribute [rw] display_name
|
7493
|
+
# The friendly name of the Systems Manager document. This value can
|
7494
|
+
# differ for each version of the document. If you want to update this
|
7495
|
+
# value, see UpdateDocument.
|
7496
|
+
# @return [String]
|
7497
|
+
#
|
7295
7498
|
# @!attribute [rw] document_version
|
7296
7499
|
# The document version.
|
7297
7500
|
# @return [String]
|
@@ -7335,6 +7538,7 @@ module Aws::SSM
|
|
7335
7538
|
#
|
7336
7539
|
class DocumentVersionInfo < Struct.new(
|
7337
7540
|
:name,
|
7541
|
+
:display_name,
|
7338
7542
|
:document_version,
|
7339
7543
|
:version_name,
|
7340
7544
|
:created_date,
|
@@ -7628,19 +7832,26 @@ module Aws::SSM
|
|
7628
7832
|
#
|
7629
7833
|
# @!attribute [rw] instance_id
|
7630
7834
|
# (Required) The ID of the managed instance targeted by the command. A
|
7631
|
-
# managed instance can be an
|
7632
|
-
# hybrid environment that is
|
7835
|
+
# managed instance can be an Amazon Elastic Compute Cloud (Amazon EC2)
|
7836
|
+
# instance or an instance in your hybrid environment that is
|
7837
|
+
# configured for AWS Systems Manager.
|
7633
7838
|
# @return [String]
|
7634
7839
|
#
|
7635
7840
|
# @!attribute [rw] plugin_name
|
7636
7841
|
# The name of the plugin for which you want detailed results. If the
|
7637
7842
|
# document contains only one plugin, you can omit the name and details
|
7638
|
-
# for that plugin
|
7639
|
-
#
|
7640
|
-
#
|
7843
|
+
# for that plugin. If the document contains more than one plugin, you
|
7844
|
+
# must specify the name of the plugin for which you want to view
|
7845
|
+
# details.
|
7641
7846
|
#
|
7642
7847
|
# Plugin names are also referred to as *step names* in Systems Manager
|
7643
7848
|
# documents. For example, `aws:RunShellScript` is a plugin.
|
7849
|
+
#
|
7850
|
+
# To find the `PluginName`, check the document content and find the
|
7851
|
+
# name of the plugin. Alternatively, use ListCommandInvocations with
|
7852
|
+
# the `CommandId` and `Details` parameters. The `PluginName` is the
|
7853
|
+
# `Name` attribute of the `CommandPlugin` object in the
|
7854
|
+
# `CommandPlugins` list.
|
7644
7855
|
# @return [String]
|
7645
7856
|
#
|
7646
7857
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetCommandInvocationRequest AWS API Documentation
|
@@ -7669,7 +7880,7 @@ module Aws::SSM
|
|
7669
7880
|
#
|
7670
7881
|
# @!attribute [rw] document_name
|
7671
7882
|
# The name of the document that was run. For example,
|
7672
|
-
# AWS-RunShellScript
|
7883
|
+
# `AWS-RunShellScript`.
|
7673
7884
|
# @return [String]
|
7674
7885
|
#
|
7675
7886
|
# @!attribute [rw] document_version
|
@@ -7683,7 +7894,7 @@ module Aws::SSM
|
|
7683
7894
|
#
|
7684
7895
|
# @!attribute [rw] response_code
|
7685
7896
|
# The error level response code for the plugin script. If the response
|
7686
|
-
# code is
|
7897
|
+
# code is `-1`, then the command has not started running on the
|
7687
7898
|
# instance, or it was not received by the instance.
|
7688
7899
|
# @return [Integer]
|
7689
7900
|
#
|
@@ -7700,11 +7911,11 @@ module Aws::SSM
|
|
7700
7911
|
# @return [String]
|
7701
7912
|
#
|
7702
7913
|
# @!attribute [rw] execution_elapsed_time
|
7703
|
-
# Duration since ExecutionStartDateTime
|
7914
|
+
# Duration since `ExecutionStartDateTime`.
|
7704
7915
|
# @return [String]
|
7705
7916
|
#
|
7706
7917
|
# @!attribute [rw] execution_end_date_time
|
7707
|
-
# The date and time the plugin
|
7918
|
+
# The date and time the plugin finished running. Date and time are
|
7708
7919
|
# written in ISO 8601 format. For example, June 7, 2017 is represented
|
7709
7920
|
# as 2017-06-7. The following sample AWS CLI command uses the
|
7710
7921
|
# `InvokedAfter` filter.
|
@@ -7717,17 +7928,17 @@ module Aws::SSM
|
|
7717
7928
|
#
|
7718
7929
|
# @!attribute [rw] status
|
7719
7930
|
# The status of this invocation plugin. This status can be different
|
7720
|
-
# than StatusDetails
|
7931
|
+
# than `StatusDetails`.
|
7721
7932
|
# @return [String]
|
7722
7933
|
#
|
7723
7934
|
# @!attribute [rw] status_details
|
7724
7935
|
# A detailed status of the command execution for an invocation.
|
7725
|
-
# StatusDetails includes more information than Status because it
|
7936
|
+
# `StatusDetails` includes more information than `Status` because it
|
7726
7937
|
# includes states resulting from error and concurrency control
|
7727
|
-
# parameters. StatusDetails can show different results than
|
7728
|
-
# For more information about these statuses, see
|
7729
|
-
# command statuses][1] in the *AWS Systems Manager User
|
7730
|
-
# StatusDetails can be one of the following values:
|
7938
|
+
# parameters. `StatusDetails` can show different results than
|
7939
|
+
# `Status`. For more information about these statuses, see
|
7940
|
+
# [Understanding command statuses][1] in the *AWS Systems Manager User
|
7941
|
+
# Guide*. `StatusDetails` can be one of the following values:
|
7731
7942
|
#
|
7732
7943
|
# * Pending: The command has not been sent to the instance.
|
7733
7944
|
#
|
@@ -7745,20 +7956,20 @@ module Aws::SSM
|
|
7745
7956
|
#
|
7746
7957
|
# * Delivery Timed Out: The command was not delivered to the instance
|
7747
7958
|
# before the delivery timeout expired. Delivery timeouts do not
|
7748
|
-
# count against the parent command's MaxErrors limit, but they do
|
7959
|
+
# count against the parent command's `MaxErrors` limit, but they do
|
7749
7960
|
# contribute to whether the parent command status is Success or
|
7750
7961
|
# Incomplete. This is a terminal state.
|
7751
7962
|
#
|
7752
7963
|
# * Execution Timed Out: The command started to run on the instance,
|
7753
7964
|
# but the execution was not complete before the timeout expired.
|
7754
|
-
# Execution timeouts count against the MaxErrors limit of the
|
7755
|
-
# command. This is a terminal state.
|
7965
|
+
# Execution timeouts count against the `MaxErrors` limit of the
|
7966
|
+
# parent command. This is a terminal state.
|
7756
7967
|
#
|
7757
7968
|
# * Failed: The command wasn't run successfully on the instance. For
|
7758
7969
|
# a plugin, this indicates that the result code was not zero. For a
|
7759
7970
|
# command invocation, this indicates that the result code for one or
|
7760
7971
|
# more plugins was not zero. Invocation failures count against the
|
7761
|
-
# MaxErrors limit of the parent command. This is a terminal state.
|
7972
|
+
# `MaxErrors` limit of the parent command. This is a terminal state.
|
7762
7973
|
#
|
7763
7974
|
# * Canceled: The command was terminated before it was completed. This
|
7764
7975
|
# is a terminal state.
|
@@ -7766,11 +7977,11 @@ module Aws::SSM
|
|
7766
7977
|
# * Undeliverable: The command can't be delivered to the instance.
|
7767
7978
|
# The instance might not exist or might not be responding.
|
7768
7979
|
# Undeliverable invocations don't count against the parent
|
7769
|
-
# command's MaxErrors limit and don't contribute to whether the
|
7980
|
+
# command's `MaxErrors` limit and don't contribute to whether the
|
7770
7981
|
# parent command status is Success or Incomplete. This is a terminal
|
7771
7982
|
# state.
|
7772
7983
|
#
|
7773
|
-
# * Terminated: The parent command exceeded its MaxErrors limit and
|
7984
|
+
# * Terminated: The parent command exceeded its `MaxErrors` limit and
|
7774
7985
|
# subsequent command invocations were canceled by the system. This
|
7775
7986
|
# is a terminal state.
|
7776
7987
|
#
|
@@ -7780,24 +7991,24 @@ module Aws::SSM
|
|
7780
7991
|
# @return [String]
|
7781
7992
|
#
|
7782
7993
|
# @!attribute [rw] standard_output_content
|
7783
|
-
# The first 24,000 characters written by the plugin to stdout
|
7784
|
-
# command has not finished running, if ExecutionStatus is
|
7785
|
-
# Succeeded nor Failed, then this string is empty.
|
7994
|
+
# The first 24,000 characters written by the plugin to `stdout`. If
|
7995
|
+
# the command has not finished running, if `ExecutionStatus` is
|
7996
|
+
# neither Succeeded nor Failed, then this string is empty.
|
7786
7997
|
# @return [String]
|
7787
7998
|
#
|
7788
7999
|
# @!attribute [rw] standard_output_url
|
7789
|
-
# The URL for the complete text written by the plugin to stdout in
|
7790
|
-
# Amazon S3. If an S3 bucket was not
|
7791
|
-
# empty.
|
8000
|
+
# The URL for the complete text written by the plugin to `stdout` in
|
8001
|
+
# Amazon Simple Storage Service (Amazon S3). If an S3 bucket was not
|
8002
|
+
# specified, then this string is empty.
|
7792
8003
|
# @return [String]
|
7793
8004
|
#
|
7794
8005
|
# @!attribute [rw] standard_error_content
|
7795
|
-
# The first 8,000 characters written by the plugin to stderr
|
8006
|
+
# The first 8,000 characters written by the plugin to `stderr`. If the
|
7796
8007
|
# command has not finished running, then this string is empty.
|
7797
8008
|
# @return [String]
|
7798
8009
|
#
|
7799
8010
|
# @!attribute [rw] standard_error_url
|
7800
|
-
# The URL for the complete text written by the plugin to stderr
|
8011
|
+
# The URL for the complete text written by the plugin to `stderr`. If
|
7801
8012
|
# the command has not finished running, then this string is empty.
|
7802
8013
|
# @return [String]
|
7803
8014
|
#
|
@@ -8050,6 +8261,16 @@ module Aws::SSM
|
|
8050
8261
|
# The name of the Systems Manager document.
|
8051
8262
|
# @return [String]
|
8052
8263
|
#
|
8264
|
+
# @!attribute [rw] created_date
|
8265
|
+
# The date the Systems Manager document was created.
|
8266
|
+
# @return [Time]
|
8267
|
+
#
|
8268
|
+
# @!attribute [rw] display_name
|
8269
|
+
# The friendly name of the Systems Manager document. This value can
|
8270
|
+
# differ for each version of the document. If you want to update this
|
8271
|
+
# value, see UpdateDocument.
|
8272
|
+
# @return [String]
|
8273
|
+
#
|
8053
8274
|
# @!attribute [rw] version_name
|
8054
8275
|
# The version of the artifact associated with the document. For
|
8055
8276
|
# example, "Release 12, Update 6". This value is unique across all
|
@@ -8112,6 +8333,8 @@ module Aws::SSM
|
|
8112
8333
|
#
|
8113
8334
|
class GetDocumentResult < Struct.new(
|
8114
8335
|
:name,
|
8336
|
+
:created_date,
|
8337
|
+
:display_name,
|
8115
8338
|
:version_name,
|
8116
8339
|
:document_version,
|
8117
8340
|
:status,
|
@@ -9429,12 +9652,20 @@ module Aws::SSM
|
|
9429
9652
|
# }
|
9430
9653
|
#
|
9431
9654
|
# @!attribute [rw] setting_id
|
9432
|
-
# The ID of the service setting to get. The setting ID can be
|
9433
|
-
#
|
9434
|
-
#
|
9435
|
-
# `/ssm/
|
9436
|
-
#
|
9437
|
-
# `/ssm/
|
9655
|
+
# The ID of the service setting to get. The setting ID can be one of
|
9656
|
+
# the following.
|
9657
|
+
#
|
9658
|
+
# * `/ssm/automation/customer-script-log-destination`
|
9659
|
+
#
|
9660
|
+
# * `/ssm/automation/customer-script-log-group-name`
|
9661
|
+
#
|
9662
|
+
# * `/ssm/documents/console/public-sharing-permission`
|
9663
|
+
#
|
9664
|
+
# * `/ssm/parameter-store/default-parameter-tier`
|
9665
|
+
#
|
9666
|
+
# * `/ssm/parameter-store/high-throughput-enabled`
|
9667
|
+
#
|
9668
|
+
# * `/ssm/managed-instance/activation-tier`
|
9438
9669
|
# @return [String]
|
9439
9670
|
#
|
9440
9671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetServiceSettingRequest AWS API Documentation
|
@@ -9761,8 +9992,8 @@ module Aws::SSM
|
|
9761
9992
|
#
|
9762
9993
|
#
|
9763
9994
|
#
|
9764
|
-
# [1]:
|
9765
|
-
# [2]:
|
9995
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html
|
9996
|
+
# [2]: https://docs.aws.amazon.com/cli/latest/ec2/describe-instances.html
|
9766
9997
|
# @return [String]
|
9767
9998
|
#
|
9768
9999
|
# @!attribute [rw] registration_date
|
@@ -9791,10 +10022,10 @@ module Aws::SSM
|
|
9791
10022
|
#
|
9792
10023
|
#
|
9793
10024
|
#
|
9794
|
-
# [1]:
|
9795
|
-
# [2]:
|
9796
|
-
# [3]:
|
9797
|
-
# [4]:
|
10025
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-linux.html
|
10026
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-win.html
|
10027
|
+
# [3]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html
|
10028
|
+
# [4]: https://docs.aws.amazon.com/cli/latest/ec2/describe-instances.html
|
9798
10029
|
# @return [String]
|
9799
10030
|
#
|
9800
10031
|
# @!attribute [rw] ip_address
|
@@ -10052,6 +10283,28 @@ module Aws::SSM
|
|
10052
10283
|
# patches might not be in effect until a reboot is performed.
|
10053
10284
|
# @return [String]
|
10054
10285
|
#
|
10286
|
+
# @!attribute [rw] critical_non_compliant_count
|
10287
|
+
# The number of instances where patches that are specified as
|
10288
|
+
# "Critical" for compliance reporting in the patch baseline are not
|
10289
|
+
# installed. These patches might be missing, have failed installation,
|
10290
|
+
# were rejected, or were installed but awaiting a required instance
|
10291
|
+
# reboot. The status of these instances is `NON_COMPLIANT`.
|
10292
|
+
# @return [Integer]
|
10293
|
+
#
|
10294
|
+
# @!attribute [rw] security_non_compliant_count
|
10295
|
+
# The number of instances where patches that are specified as
|
10296
|
+
# "Security" in a patch advisory are not installed. These patches
|
10297
|
+
# might be missing, have failed installation, were rejected, or were
|
10298
|
+
# installed but awaiting a required instance reboot. The status of
|
10299
|
+
# these instances is `NON_COMPLIANT`.
|
10300
|
+
# @return [Integer]
|
10301
|
+
#
|
10302
|
+
# @!attribute [rw] other_non_compliant_count
|
10303
|
+
# The number of instances with patches installed that are specified as
|
10304
|
+
# other than "Critical" or "Security" but are not compliant with
|
10305
|
+
# the patch baseline. The status of these instances is NON\_COMPLIANT.
|
10306
|
+
# @return [Integer]
|
10307
|
+
#
|
10055
10308
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstancePatchState AWS API Documentation
|
10056
10309
|
#
|
10057
10310
|
class InstancePatchState < Struct.new(
|
@@ -10073,7 +10326,10 @@ module Aws::SSM
|
|
10073
10326
|
:operation_end_time,
|
10074
10327
|
:operation,
|
10075
10328
|
:last_no_reboot_install_operation_time,
|
10076
|
-
:reboot_option
|
10329
|
+
:reboot_option,
|
10330
|
+
:critical_non_compliant_count,
|
10331
|
+
:security_non_compliant_count,
|
10332
|
+
:other_non_compliant_count)
|
10077
10333
|
SENSITIVE = [:owner_information]
|
10078
10334
|
include Aws::Structure
|
10079
10335
|
end
|
@@ -10256,6 +10512,8 @@ module Aws::SSM
|
|
10256
10512
|
include Aws::Structure
|
10257
10513
|
end
|
10258
10514
|
|
10515
|
+
# The specified command ID is not valid. Verify the ID and try again.
|
10516
|
+
#
|
10259
10517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InvalidCommandId AWS API Documentation
|
10260
10518
|
#
|
10261
10519
|
class InvalidCommandId < Aws::EmptyStructure; end
|
@@ -11444,7 +11702,7 @@ module Aws::SSM
|
|
11444
11702
|
#
|
11445
11703
|
# @!attribute [rw] details
|
11446
11704
|
# (Optional) If set this returns the response of the command
|
11447
|
-
# executions and any command output.
|
11705
|
+
# executions and any command output. The default value is 'false'.
|
11448
11706
|
# @return [Boolean]
|
11449
11707
|
#
|
11450
11708
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListCommandInvocationsRequest AWS API Documentation
|
@@ -12056,6 +12314,72 @@ module Aws::SSM
|
|
12056
12314
|
include Aws::Structure
|
12057
12315
|
end
|
12058
12316
|
|
12317
|
+
# @note When making an API call, you may pass ListOpsItemRelatedItemsRequest
|
12318
|
+
# data as a hash:
|
12319
|
+
#
|
12320
|
+
# {
|
12321
|
+
# ops_item_id: "OpsItemId",
|
12322
|
+
# filters: [
|
12323
|
+
# {
|
12324
|
+
# key: "ResourceType", # required, accepts ResourceType, AssociationId, ResourceUri
|
12325
|
+
# values: ["OpsItemRelatedItemsFilterValue"], # required
|
12326
|
+
# operator: "Equal", # required, accepts Equal
|
12327
|
+
# },
|
12328
|
+
# ],
|
12329
|
+
# max_results: 1,
|
12330
|
+
# next_token: "String",
|
12331
|
+
# }
|
12332
|
+
#
|
12333
|
+
# @!attribute [rw] ops_item_id
|
12334
|
+
# The ID of the OpsItem for which you want to list all related-item
|
12335
|
+
# resources.
|
12336
|
+
# @return [String]
|
12337
|
+
#
|
12338
|
+
# @!attribute [rw] filters
|
12339
|
+
# One or more OpsItem filters. Use a filter to return a more specific
|
12340
|
+
# list of results.
|
12341
|
+
# @return [Array<Types::OpsItemRelatedItemsFilter>]
|
12342
|
+
#
|
12343
|
+
# @!attribute [rw] max_results
|
12344
|
+
# The maximum number of items to return for this call. The call also
|
12345
|
+
# returns a token that you can specify in a subsequent call to get the
|
12346
|
+
# next set of results.
|
12347
|
+
# @return [Integer]
|
12348
|
+
#
|
12349
|
+
# @!attribute [rw] next_token
|
12350
|
+
# The token for the next set of items to return. (You received this
|
12351
|
+
# token from a previous call.)
|
12352
|
+
# @return [String]
|
12353
|
+
#
|
12354
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListOpsItemRelatedItemsRequest AWS API Documentation
|
12355
|
+
#
|
12356
|
+
class ListOpsItemRelatedItemsRequest < Struct.new(
|
12357
|
+
:ops_item_id,
|
12358
|
+
:filters,
|
12359
|
+
:max_results,
|
12360
|
+
:next_token)
|
12361
|
+
SENSITIVE = []
|
12362
|
+
include Aws::Structure
|
12363
|
+
end
|
12364
|
+
|
12365
|
+
# @!attribute [rw] next_token
|
12366
|
+
# The token for the next set of items to return. Use this token to get
|
12367
|
+
# the next set of results.
|
12368
|
+
# @return [String]
|
12369
|
+
#
|
12370
|
+
# @!attribute [rw] summaries
|
12371
|
+
# A list of related-item resources for the specified OpsItem.
|
12372
|
+
# @return [Array<Types::OpsItemRelatedItemSummary>]
|
12373
|
+
#
|
12374
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ListOpsItemRelatedItemsResponse AWS API Documentation
|
12375
|
+
#
|
12376
|
+
class ListOpsItemRelatedItemsResponse < Struct.new(
|
12377
|
+
:next_token,
|
12378
|
+
:summaries)
|
12379
|
+
SENSITIVE = []
|
12380
|
+
include Aws::Structure
|
12381
|
+
end
|
12382
|
+
|
12059
12383
|
# @note When making an API call, you may pass ListOpsMetadataRequest
|
12060
12384
|
# data as a hash:
|
12061
12385
|
#
|
@@ -13703,7 +14027,8 @@ module Aws::SSM
|
|
13703
14027
|
include Aws::Structure
|
13704
14028
|
end
|
13705
14029
|
|
13706
|
-
# Summary information about an OpsItem event
|
14030
|
+
# Summary information about an OpsItem event or that associated an
|
14031
|
+
# OpsItem with a related item.
|
13707
14032
|
#
|
13708
14033
|
# @!attribute [rw] ops_item_id
|
13709
14034
|
# The ID of the OpsItem.
|
@@ -13880,6 +14205,132 @@ module Aws::SSM
|
|
13880
14205
|
include Aws::Structure
|
13881
14206
|
end
|
13882
14207
|
|
14208
|
+
# The Amazon Resource Name (ARN) is already associated with the OpsItem.
|
14209
|
+
#
|
14210
|
+
# @!attribute [rw] message
|
14211
|
+
# @return [String]
|
14212
|
+
#
|
14213
|
+
# @!attribute [rw] resource_uri
|
14214
|
+
# @return [String]
|
14215
|
+
#
|
14216
|
+
# @!attribute [rw] ops_item_id
|
14217
|
+
# @return [String]
|
14218
|
+
#
|
14219
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/OpsItemRelatedItemAlreadyExistsException AWS API Documentation
|
14220
|
+
#
|
14221
|
+
class OpsItemRelatedItemAlreadyExistsException < Struct.new(
|
14222
|
+
:message,
|
14223
|
+
:resource_uri,
|
14224
|
+
:ops_item_id)
|
14225
|
+
SENSITIVE = []
|
14226
|
+
include Aws::Structure
|
14227
|
+
end
|
14228
|
+
|
14229
|
+
# The association was not found using the parameters you specified in
|
14230
|
+
# the call. Verify the information and try again.
|
14231
|
+
#
|
14232
|
+
# @!attribute [rw] message
|
14233
|
+
# @return [String]
|
14234
|
+
#
|
14235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/OpsItemRelatedItemAssociationNotFoundException AWS API Documentation
|
14236
|
+
#
|
14237
|
+
class OpsItemRelatedItemAssociationNotFoundException < Struct.new(
|
14238
|
+
:message)
|
14239
|
+
SENSITIVE = []
|
14240
|
+
include Aws::Structure
|
14241
|
+
end
|
14242
|
+
|
14243
|
+
# Summary information about related-item resources for an OpsItem.
|
14244
|
+
#
|
14245
|
+
# @!attribute [rw] ops_item_id
|
14246
|
+
# The OpsItem ID.
|
14247
|
+
# @return [String]
|
14248
|
+
#
|
14249
|
+
# @!attribute [rw] association_id
|
14250
|
+
# The association ID.
|
14251
|
+
# @return [String]
|
14252
|
+
#
|
14253
|
+
# @!attribute [rw] resource_type
|
14254
|
+
# The resource type.
|
14255
|
+
# @return [String]
|
14256
|
+
#
|
14257
|
+
# @!attribute [rw] association_type
|
14258
|
+
# The association type.
|
14259
|
+
# @return [String]
|
14260
|
+
#
|
14261
|
+
# @!attribute [rw] resource_uri
|
14262
|
+
# The Amazon Resource Name (ARN) of the related-item resource.
|
14263
|
+
# @return [String]
|
14264
|
+
#
|
14265
|
+
# @!attribute [rw] created_by
|
14266
|
+
# Information about the user or resource that created an OpsItem
|
14267
|
+
# event.
|
14268
|
+
# @return [Types::OpsItemIdentity]
|
14269
|
+
#
|
14270
|
+
# @!attribute [rw] created_time
|
14271
|
+
# The time the related-item association was created.
|
14272
|
+
# @return [Time]
|
14273
|
+
#
|
14274
|
+
# @!attribute [rw] last_modified_by
|
14275
|
+
# Information about the user or resource that created an OpsItem
|
14276
|
+
# event.
|
14277
|
+
# @return [Types::OpsItemIdentity]
|
14278
|
+
#
|
14279
|
+
# @!attribute [rw] last_modified_time
|
14280
|
+
# The time the related-item association was last updated.
|
14281
|
+
# @return [Time]
|
14282
|
+
#
|
14283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/OpsItemRelatedItemSummary AWS API Documentation
|
14284
|
+
#
|
14285
|
+
class OpsItemRelatedItemSummary < Struct.new(
|
14286
|
+
:ops_item_id,
|
14287
|
+
:association_id,
|
14288
|
+
:resource_type,
|
14289
|
+
:association_type,
|
14290
|
+
:resource_uri,
|
14291
|
+
:created_by,
|
14292
|
+
:created_time,
|
14293
|
+
:last_modified_by,
|
14294
|
+
:last_modified_time)
|
14295
|
+
SENSITIVE = []
|
14296
|
+
include Aws::Structure
|
14297
|
+
end
|
14298
|
+
|
14299
|
+
# Describes a filter for a specific list of related-item resources.
|
14300
|
+
#
|
14301
|
+
# @note When making an API call, you may pass OpsItemRelatedItemsFilter
|
14302
|
+
# data as a hash:
|
14303
|
+
#
|
14304
|
+
# {
|
14305
|
+
# key: "ResourceType", # required, accepts ResourceType, AssociationId, ResourceUri
|
14306
|
+
# values: ["OpsItemRelatedItemsFilterValue"], # required
|
14307
|
+
# operator: "Equal", # required, accepts Equal
|
14308
|
+
# }
|
14309
|
+
#
|
14310
|
+
# @!attribute [rw] key
|
14311
|
+
# The name of the filter key. Supported values include `ResourceUri`,
|
14312
|
+
# `ResourceType`, or `AssociationId`.
|
14313
|
+
# @return [String]
|
14314
|
+
#
|
14315
|
+
# @!attribute [rw] values
|
14316
|
+
# The values for the filter.
|
14317
|
+
# @return [Array<String>]
|
14318
|
+
#
|
14319
|
+
# @!attribute [rw] operator
|
14320
|
+
# The operator used by the filter call. The only supported operator is
|
14321
|
+
# `EQUAL`.
|
14322
|
+
# @return [String]
|
14323
|
+
#
|
14324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/OpsItemRelatedItemsFilter AWS API Documentation
|
14325
|
+
#
|
14326
|
+
class OpsItemRelatedItemsFilter < Struct.new(
|
14327
|
+
:key,
|
14328
|
+
:values,
|
14329
|
+
:operator)
|
14330
|
+
SENSITIVE = []
|
14331
|
+
include Aws::Structure
|
14332
|
+
end
|
14333
|
+
|
13883
14334
|
# A count of OpsItems.
|
13884
14335
|
#
|
13885
14336
|
# @!attribute [rw] created_by
|
@@ -14397,13 +14848,13 @@ module Aws::SSM
|
|
14397
14848
|
# parameters, first move the label from the oldest version of the
|
14398
14849
|
# parameter to a newer one for use in your operations. For information
|
14399
14850
|
# about moving parameter labels, see [Move a parameter label
|
14400
|
-
# (console)][1] or [Move a parameter label (CLI)
|
14401
|
-
#
|
14851
|
+
# (console)][1] or [Move a parameter label (CLI)][2] in the *AWS Systems
|
14852
|
+
# Manager User Guide*.
|
14402
14853
|
#
|
14403
14854
|
#
|
14404
14855
|
#
|
14405
|
-
# [1]:
|
14406
|
-
# [2]:
|
14856
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html#sysman-paramstore-labels-console-move
|
14857
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html#sysman-paramstore-labels-cli-move
|
14407
14858
|
#
|
14408
14859
|
# @!attribute [rw] message
|
14409
14860
|
# @return [String]
|
@@ -15503,8 +15954,7 @@ module Aws::SSM
|
|
15503
15954
|
# @return [String]
|
15504
15955
|
#
|
15505
15956
|
# @!attribute [rw] overwrite
|
15506
|
-
# Overwrite an existing parameter.
|
15507
|
-
# "false".
|
15957
|
+
# Overwrite an existing parameter. The default value is 'false'.
|
15508
15958
|
# @return [Boolean]
|
15509
15959
|
#
|
15510
15960
|
# @!attribute [rw] allowed_pattern
|
@@ -15660,7 +16110,7 @@ module Aws::SSM
|
|
15660
16110
|
#
|
15661
16111
|
#
|
15662
16112
|
#
|
15663
|
-
# [1]:
|
16113
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-ec2-aliases.html
|
15664
16114
|
# @return [String]
|
15665
16115
|
#
|
15666
16116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameterRequest AWS API Documentation
|
@@ -16245,12 +16695,19 @@ module Aws::SSM
|
|
16245
16695
|
#
|
16246
16696
|
# @!attribute [rw] setting_id
|
16247
16697
|
# The Amazon Resource Name (ARN) of the service setting to reset. The
|
16248
|
-
# setting ID can be
|
16249
|
-
#
|
16250
|
-
# `/ssm/
|
16251
|
-
#
|
16252
|
-
# `/ssm/
|
16253
|
-
#
|
16698
|
+
# setting ID can be one of the following.
|
16699
|
+
#
|
16700
|
+
# * `/ssm/automation/customer-script-log-destination`
|
16701
|
+
#
|
16702
|
+
# * `/ssm/automation/customer-script-log-group-name`
|
16703
|
+
#
|
16704
|
+
# * `/ssm/documents/console/public-sharing-permission`
|
16705
|
+
#
|
16706
|
+
# * `/ssm/parameter-store/default-parameter-tier`
|
16707
|
+
#
|
16708
|
+
# * `/ssm/parameter-store/high-throughput-enabled`
|
16709
|
+
#
|
16710
|
+
# * `/ssm/managed-instance/activation-tier`
|
16254
16711
|
# @return [String]
|
16255
16712
|
#
|
16256
16713
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResetServiceSettingRequest AWS API Documentation
|
@@ -16644,12 +17101,13 @@ module Aws::SSM
|
|
16644
17101
|
# },
|
16645
17102
|
# source_regions: ["ResourceDataSyncSourceRegion"], # required
|
16646
17103
|
# include_future_regions: false,
|
17104
|
+
# enable_all_ops_data_sources: false,
|
16647
17105
|
# }
|
16648
17106
|
#
|
16649
17107
|
# @!attribute [rw] source_type
|
16650
17108
|
# The type of data source for the resource data sync. `SourceType` is
|
16651
17109
|
# either `AwsOrganizations` (if an organization is present in AWS
|
16652
|
-
# Organizations) or `
|
17110
|
+
# Organizations) or `SingleAccountMultiRegions`.
|
16653
17111
|
# @return [String]
|
16654
17112
|
#
|
16655
17113
|
# @!attribute [rw] aws_organizations_source
|
@@ -16667,13 +17125,27 @@ module Aws::SSM
|
|
16667
17125
|
# Regions when those Regions come online.
|
16668
17126
|
# @return [Boolean]
|
16669
17127
|
#
|
17128
|
+
# @!attribute [rw] enable_all_ops_data_sources
|
17129
|
+
# When you create a resource data sync, if you choose one of the AWS
|
17130
|
+
# Organizations options, then Systems Manager automatically enables
|
17131
|
+
# all OpsData sources in the selected AWS Regions for all AWS accounts
|
17132
|
+
# in your organization (or in the selected organization units). For
|
17133
|
+
# more information, see [About multiple account and Region resource
|
17134
|
+
# data syncs][1] in the *AWS Systems Manager User Guide*.
|
17135
|
+
#
|
17136
|
+
#
|
17137
|
+
#
|
17138
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/Explorer-resouce-data-sync-multiple-accounts-and-regions.html
|
17139
|
+
# @return [Boolean]
|
17140
|
+
#
|
16670
17141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncSource AWS API Documentation
|
16671
17142
|
#
|
16672
17143
|
class ResourceDataSyncSource < Struct.new(
|
16673
17144
|
:source_type,
|
16674
17145
|
:aws_organizations_source,
|
16675
17146
|
:source_regions,
|
16676
|
-
:include_future_regions
|
17147
|
+
:include_future_regions,
|
17148
|
+
:enable_all_ops_data_sources)
|
16677
17149
|
SENSITIVE = []
|
16678
17150
|
include Aws::Structure
|
16679
17151
|
end
|
@@ -16730,6 +17202,19 @@ module Aws::SSM
|
|
16730
17202
|
# organization in AWS Organizations.
|
16731
17203
|
# @return [String]
|
16732
17204
|
#
|
17205
|
+
# @!attribute [rw] enable_all_ops_data_sources
|
17206
|
+
# When you create a resource data sync, if you choose one of the AWS
|
17207
|
+
# Organizations options, then Systems Manager automatically enables
|
17208
|
+
# all OpsData sources in the selected AWS Regions for all AWS accounts
|
17209
|
+
# in your organization (or in the selected organization units). For
|
17210
|
+
# more information, see [About multiple account and Region resource
|
17211
|
+
# data syncs][1] in the *AWS Systems Manager User Guide*.
|
17212
|
+
#
|
17213
|
+
#
|
17214
|
+
#
|
17215
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/Explorer-resouce-data-sync-multiple-accounts-and-regions.html
|
17216
|
+
# @return [Boolean]
|
17217
|
+
#
|
16733
17218
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResourceDataSyncSourceWithState AWS API Documentation
|
16734
17219
|
#
|
16735
17220
|
class ResourceDataSyncSourceWithState < Struct.new(
|
@@ -16737,7 +17222,8 @@ module Aws::SSM
|
|
16737
17222
|
:aws_organizations_source,
|
16738
17223
|
:source_regions,
|
16739
17224
|
:include_future_regions,
|
16740
|
-
:state
|
17225
|
+
:state,
|
17226
|
+
:enable_all_ops_data_sources)
|
16741
17227
|
SENSITIVE = []
|
16742
17228
|
include Aws::Structure
|
16743
17229
|
end
|
@@ -17847,6 +18333,8 @@ module Aws::SSM
|
|
17847
18333
|
# value: "TagValue", # required
|
17848
18334
|
# },
|
17849
18335
|
# ],
|
18336
|
+
# scheduled_end_time: Time.now,
|
18337
|
+
# change_details: "ChangeDetailsValue",
|
17850
18338
|
# }
|
17851
18339
|
#
|
17852
18340
|
# @!attribute [rw] scheduled_time
|
@@ -17909,6 +18397,18 @@ module Aws::SSM
|
|
17909
18397
|
# * `Key=Region,Value=us-east-2`
|
17910
18398
|
# @return [Array<Types::Tag>]
|
17911
18399
|
#
|
18400
|
+
# @!attribute [rw] scheduled_end_time
|
18401
|
+
# The time that the requester expects the runbook workflow related to
|
18402
|
+
# the change request to complete. The time is an estimate only that
|
18403
|
+
# the requester provides for reviewers.
|
18404
|
+
# @return [Time]
|
18405
|
+
#
|
18406
|
+
# @!attribute [rw] change_details
|
18407
|
+
# User-provided details about the change. If no details are provided,
|
18408
|
+
# content specified in the **Template information** section of the
|
18409
|
+
# associated change template is added.
|
18410
|
+
# @return [String]
|
18411
|
+
#
|
17912
18412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartChangeRequestExecutionRequest AWS API Documentation
|
17913
18413
|
#
|
17914
18414
|
class StartChangeRequestExecutionRequest < Struct.new(
|
@@ -17919,7 +18419,9 @@ module Aws::SSM
|
|
17919
18419
|
:change_request_name,
|
17920
18420
|
:client_token,
|
17921
18421
|
:runbooks,
|
17922
|
-
:tags
|
18422
|
+
:tags,
|
18423
|
+
:scheduled_end_time,
|
18424
|
+
:change_details)
|
17923
18425
|
SENSITIVE = []
|
17924
18426
|
include Aws::Structure
|
17925
18427
|
end
|
@@ -18344,6 +18846,9 @@ module Aws::SSM
|
|
18344
18846
|
# specified `tag:ServerRole`, you could specify `value:WebServer` to
|
18345
18847
|
# run a command on instances that include EC2 tags of
|
18346
18848
|
# `ServerRole,WebServer`.
|
18849
|
+
#
|
18850
|
+
# Depending on the type of `Target`, the maximum number of values for
|
18851
|
+
# a `Key` might be lower than the global maximum of 50.
|
18347
18852
|
# @return [Array<String>]
|
18348
18853
|
#
|
18349
18854
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Target AWS API Documentation
|
@@ -18508,6 +19013,55 @@ module Aws::SSM
|
|
18508
19013
|
include Aws::Structure
|
18509
19014
|
end
|
18510
19015
|
|
19016
|
+
# @note When making an API call, you may pass UnlabelParameterVersionRequest
|
19017
|
+
# data as a hash:
|
19018
|
+
#
|
19019
|
+
# {
|
19020
|
+
# name: "PSParameterName", # required
|
19021
|
+
# parameter_version: 1, # required
|
19022
|
+
# labels: ["ParameterLabel"], # required
|
19023
|
+
# }
|
19024
|
+
#
|
19025
|
+
# @!attribute [rw] name
|
19026
|
+
# The parameter name of which you want to delete one or more labels.
|
19027
|
+
# @return [String]
|
19028
|
+
#
|
19029
|
+
# @!attribute [rw] parameter_version
|
19030
|
+
# The specific version of the parameter which you want to delete one
|
19031
|
+
# or more labels from. If it is not present, the call will fail.
|
19032
|
+
# @return [Integer]
|
19033
|
+
#
|
19034
|
+
# @!attribute [rw] labels
|
19035
|
+
# One or more labels to delete from the specified parameter version.
|
19036
|
+
# @return [Array<String>]
|
19037
|
+
#
|
19038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnlabelParameterVersionRequest AWS API Documentation
|
19039
|
+
#
|
19040
|
+
class UnlabelParameterVersionRequest < Struct.new(
|
19041
|
+
:name,
|
19042
|
+
:parameter_version,
|
19043
|
+
:labels)
|
19044
|
+
SENSITIVE = []
|
19045
|
+
include Aws::Structure
|
19046
|
+
end
|
19047
|
+
|
19048
|
+
# @!attribute [rw] removed_labels
|
19049
|
+
# A list of all labels deleted from the parameter.
|
19050
|
+
# @return [Array<String>]
|
19051
|
+
#
|
19052
|
+
# @!attribute [rw] invalid_labels
|
19053
|
+
# The labels that are not attached to the given parameter version.
|
19054
|
+
# @return [Array<String>]
|
19055
|
+
#
|
19056
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UnlabelParameterVersionResult AWS API Documentation
|
19057
|
+
#
|
19058
|
+
class UnlabelParameterVersionResult < Struct.new(
|
19059
|
+
:removed_labels,
|
19060
|
+
:invalid_labels)
|
19061
|
+
SENSITIVE = []
|
19062
|
+
include Aws::Structure
|
19063
|
+
end
|
19064
|
+
|
18511
19065
|
# The calendar entry contained in the specified Systems Manager document
|
18512
19066
|
# is not supported.
|
18513
19067
|
#
|
@@ -18651,6 +19205,7 @@ module Aws::SSM
|
|
18651
19205
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
18652
19206
|
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
18653
19207
|
# apply_only_at_cron_interval: false,
|
19208
|
+
# calendar_names: ["CalendarNameOrARN"],
|
18654
19209
|
# target_locations: [
|
18655
19210
|
# {
|
18656
19211
|
# accounts: ["Account"],
|
@@ -18795,6 +19350,17 @@ module Aws::SSM
|
|
18795
19350
|
# the interval specified.
|
18796
19351
|
# @return [Boolean]
|
18797
19352
|
#
|
19353
|
+
# @!attribute [rw] calendar_names
|
19354
|
+
# The names or Amazon Resource Names (ARNs) of the Systems Manager
|
19355
|
+
# Change Calendar type documents you want to gate your associations
|
19356
|
+
# under. The associations only run when that Change Calendar is open.
|
19357
|
+
# For more information, see [AWS Systems Manager Change Calendar][1].
|
19358
|
+
#
|
19359
|
+
#
|
19360
|
+
#
|
19361
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar
|
19362
|
+
# @return [Array<String>]
|
19363
|
+
#
|
18798
19364
|
# @!attribute [rw] target_locations
|
18799
19365
|
# A location is a combination of AWS Regions and AWS accounts where
|
18800
19366
|
# you want to run the association. Use this action to update an
|
@@ -18819,6 +19385,7 @@ module Aws::SSM
|
|
18819
19385
|
:compliance_severity,
|
18820
19386
|
:sync_compliance,
|
18821
19387
|
:apply_only_at_cron_interval,
|
19388
|
+
:calendar_names,
|
18822
19389
|
:target_locations)
|
18823
19390
|
SENSITIVE = []
|
18824
19391
|
include Aws::Structure
|
@@ -18980,6 +19547,7 @@ module Aws::SSM
|
|
18980
19547
|
# },
|
18981
19548
|
# ],
|
18982
19549
|
# name: "DocumentName", # required
|
19550
|
+
# display_name: "DocumentDisplayName",
|
18983
19551
|
# version_name: "DocumentVersionName",
|
18984
19552
|
# document_version: "DocumentVersion",
|
18985
19553
|
# document_format: "YAML", # accepts YAML, JSON, TEXT
|
@@ -18996,7 +19564,14 @@ module Aws::SSM
|
|
18996
19564
|
# @return [Array<Types::AttachmentsSource>]
|
18997
19565
|
#
|
18998
19566
|
# @!attribute [rw] name
|
18999
|
-
# The name of the document that you want to update.
|
19567
|
+
# The name of the Systems Manager document that you want to update.
|
19568
|
+
# @return [String]
|
19569
|
+
#
|
19570
|
+
# @!attribute [rw] display_name
|
19571
|
+
# The friendly name of the Systems Manager document that you want to
|
19572
|
+
# update. This value can differ for each version of the document. If
|
19573
|
+
# you do not specify a value for this parameter in your request, the
|
19574
|
+
# existing value is applied to the new document version.
|
19000
19575
|
# @return [String]
|
19001
19576
|
#
|
19002
19577
|
# @!attribute [rw] version_name
|
@@ -19007,10 +19582,10 @@ module Aws::SSM
|
|
19007
19582
|
# @return [String]
|
19008
19583
|
#
|
19009
19584
|
# @!attribute [rw] document_version
|
19010
|
-
#
|
19011
|
-
#
|
19012
|
-
#
|
19013
|
-
#
|
19585
|
+
# The version of the document that you want to update. Currently,
|
19586
|
+
# Systems Manager supports updating only the latest version of the
|
19587
|
+
# document. You can specify the version number of the latest version
|
19588
|
+
# or use the `$LATEST` variable.
|
19014
19589
|
# @return [String]
|
19015
19590
|
#
|
19016
19591
|
# @!attribute [rw] document_format
|
@@ -19029,6 +19604,7 @@ module Aws::SSM
|
|
19029
19604
|
:content,
|
19030
19605
|
:attachments,
|
19031
19606
|
:name,
|
19607
|
+
:display_name,
|
19032
19608
|
:version_name,
|
19033
19609
|
:document_version,
|
19034
19610
|
:document_format,
|
@@ -20193,6 +20769,7 @@ module Aws::SSM
|
|
20193
20769
|
# },
|
20194
20770
|
# source_regions: ["ResourceDataSyncSourceRegion"], # required
|
20195
20771
|
# include_future_regions: false,
|
20772
|
+
# enable_all_ops_data_sources: false,
|
20196
20773
|
# },
|
20197
20774
|
# }
|
20198
20775
|
#
|
@@ -20243,6 +20820,8 @@ module Aws::SSM
|
|
20243
20820
|
#
|
20244
20821
|
# * `/ssm/automation/customer-script-log-group-name`
|
20245
20822
|
#
|
20823
|
+
# * `/ssm/documents/console/public-sharing-permission`
|
20824
|
+
#
|
20246
20825
|
# * `/ssm/parameter-store/default-parameter-tier`
|
20247
20826
|
#
|
20248
20827
|
# * `/ssm/parameter-store/high-throughput-enabled`
|
@@ -20270,6 +20849,9 @@ module Aws::SSM
|
|
20270
20849
|
#
|
20271
20850
|
# For the `/ssm/automation/customer-script-log-group-name` setting ID,
|
20272
20851
|
# the setting value can be the name of a CloudWatch Logs log group.
|
20852
|
+
#
|
20853
|
+
# For the `/ssm/documents/console/public-sharing-permission` setting
|
20854
|
+
# ID, the setting value can be Enable or Disable.
|
20273
20855
|
# @return [String]
|
20274
20856
|
#
|
20275
20857
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateServiceSettingRequest AWS API Documentation
|