aws-sdk-ssm 1.159.0 → 1.160.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3006dcfcf648a05a23906827c0a56a059354d22eeb51794477c394f4befba9b8
4
- data.tar.gz: c9113637b382d314ae97e86e8cfc376fc224f40d5eb491d72468404e4998f78c
3
+ metadata.gz: 453aee6eecb9d878542af8adfdcc228999a2dbf421ebcebeaa395f11cadc88b3
4
+ data.tar.gz: 0eebb7f8dc07bf55e1bf517bbbd69d0d9d3cfc9a4df2251989a9e1259c78b457
5
5
  SHA512:
6
- metadata.gz: 8a244e5071f4b9090614245f3c5ea4e796e8ad0aa55f67b050a96f22fb520243a92bf1f0f896ca1322d03de393e1c517b9ff618142651084cd04ea067a87c1ec
7
- data.tar.gz: c2eade71b73299425c1e49fb7454ec45fe71a1e7cbc2d9f78a4ea729c7fd581f6465b73d61da62f73e6155ef60a5f9b6ec8af4661db01e85a935eb9dd3ac0534
6
+ metadata.gz: ba681ac577a3fad74f208e5c35698e59a7763a5b2a338ab727cfb70239c467e9d6710d4b93eccd3380307582e6db24b338edda6ba3457be6af56df0268c412ee
7
+ data.tar.gz: 8adbf14ec6a2b21b6ed5626f426f0422c28ee4ff820c3c0e19ad9e2d6276f53e0b106b5fcc2ae78740852f1027633fb9c10a370b59a75d35c879871317067145
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.160.0 (2023-11-16)
5
+ ------------------
6
+
7
+ * Feature - This release introduces the ability to filter automation execution steps which have parent steps. In addition, runbook variable information is returned by GetAutomationExecution and parent step information is returned by the DescribeAutomationStepExecutions API.
8
+
4
9
  1.159.0 (2023-10-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.159.0
1
+ 1.160.0
@@ -1691,7 +1691,7 @@ module Aws::SSM
1691
1691
  # This type of OpsItem is used by Change Manager for reviewing and
1692
1692
  # approving or rejecting change requests.
1693
1693
  #
1694
- # * `/aws/insights`
1694
+ # * `/aws/insight`
1695
1695
  #
1696
1696
  # This type of OpsItem is used by OpsCenter for aggregating and
1697
1697
  # reporting on duplicate OpsItems.
@@ -3116,7 +3116,7 @@ module Aws::SSM
3116
3116
  # resp.automation_execution_metadata_list[0].automation_execution_id #=> String
3117
3117
  # resp.automation_execution_metadata_list[0].document_name #=> String
3118
3118
  # resp.automation_execution_metadata_list[0].document_version #=> String
3119
- # resp.automation_execution_metadata_list[0].automation_execution_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure"
3119
+ # resp.automation_execution_metadata_list[0].automation_execution_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure", "Exited"
3120
3120
  # resp.automation_execution_metadata_list[0].execution_start_time #=> Time
3121
3121
  # resp.automation_execution_metadata_list[0].execution_end_time #=> Time
3122
3122
  # resp.automation_execution_metadata_list[0].executed_by #=> String
@@ -3232,7 +3232,7 @@ module Aws::SSM
3232
3232
  # automation_execution_id: "AutomationExecutionId", # required
3233
3233
  # filters: [
3234
3234
  # {
3235
- # key: "StartTimeBefore", # required, accepts StartTimeBefore, StartTimeAfter, StepExecutionStatus, StepExecutionId, StepName, Action
3235
+ # key: "StartTimeBefore", # required, accepts StartTimeBefore, StartTimeAfter, StepExecutionStatus, StepExecutionId, StepName, Action, ParentStepExecutionId, ParentStepIteration, ParentStepIteratorValue
3236
3236
  # values: ["StepExecutionFilterValue"], # required
3237
3237
  # },
3238
3238
  # ],
@@ -3251,7 +3251,7 @@ module Aws::SSM
3251
3251
  # resp.step_executions[0].max_attempts #=> Integer
3252
3252
  # resp.step_executions[0].execution_start_time #=> Time
3253
3253
  # resp.step_executions[0].execution_end_time #=> Time
3254
- # resp.step_executions[0].step_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure"
3254
+ # resp.step_executions[0].step_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure", "Exited"
3255
3255
  # resp.step_executions[0].response_code #=> String
3256
3256
  # resp.step_executions[0].inputs #=> Hash
3257
3257
  # resp.step_executions[0].inputs["String"] #=> String
@@ -3291,6 +3291,11 @@ module Aws::SSM
3291
3291
  # resp.step_executions[0].triggered_alarms #=> Array
3292
3292
  # resp.step_executions[0].triggered_alarms[0].name #=> String
3293
3293
  # resp.step_executions[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
3294
+ # resp.step_executions[0].parent_step_details.step_execution_id #=> String
3295
+ # resp.step_executions[0].parent_step_details.step_name #=> String
3296
+ # resp.step_executions[0].parent_step_details.action #=> String
3297
+ # resp.step_executions[0].parent_step_details.iteration #=> Integer
3298
+ # resp.step_executions[0].parent_step_details.iterator_value #=> String
3294
3299
  # resp.next_token #=> String
3295
3300
  #
3296
3301
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeAutomationStepExecutions AWS API Documentation
@@ -4061,6 +4066,14 @@ module Aws::SSM
4061
4066
  # Sample values: `Installed` \| `InstalledOther` \|
4062
4067
  # `InstalledPendingReboot`
4063
4068
  #
4069
+ # For lists of all `State` values, see [Understanding patch compliance
4070
+ # state values][1] in the *Amazon Web Services Systems Manager User
4071
+ # Guide*.
4072
+ #
4073
+ #
4074
+ #
4075
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-compliance-states.html
4076
+ #
4064
4077
  # @option params [String] :next_token
4065
4078
  # The token for the next set of items to return. (You received this
4066
4079
  # token from a previous call.)
@@ -5355,7 +5368,7 @@ module Aws::SSM
5355
5368
  # resp.automation_execution.document_version #=> String
5356
5369
  # resp.automation_execution.execution_start_time #=> Time
5357
5370
  # resp.automation_execution.execution_end_time #=> Time
5358
- # resp.automation_execution.automation_execution_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure"
5371
+ # resp.automation_execution.automation_execution_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure", "Exited"
5359
5372
  # resp.automation_execution.step_executions #=> Array
5360
5373
  # resp.automation_execution.step_executions[0].step_name #=> String
5361
5374
  # resp.automation_execution.step_executions[0].action #=> String
@@ -5364,7 +5377,7 @@ module Aws::SSM
5364
5377
  # resp.automation_execution.step_executions[0].max_attempts #=> Integer
5365
5378
  # resp.automation_execution.step_executions[0].execution_start_time #=> Time
5366
5379
  # resp.automation_execution.step_executions[0].execution_end_time #=> Time
5367
- # resp.automation_execution.step_executions[0].step_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure"
5380
+ # resp.automation_execution.step_executions[0].step_status #=> String, one of "Pending", "InProgress", "Waiting", "Success", "TimedOut", "Cancelling", "Cancelled", "Failed", "PendingApproval", "Approved", "Rejected", "Scheduled", "RunbookInProgress", "PendingChangeCalendarOverride", "ChangeCalendarOverrideApproved", "ChangeCalendarOverrideRejected", "CompletedWithSuccess", "CompletedWithFailure", "Exited"
5368
5381
  # resp.automation_execution.step_executions[0].response_code #=> String
5369
5382
  # resp.automation_execution.step_executions[0].inputs #=> Hash
5370
5383
  # resp.automation_execution.step_executions[0].inputs["String"] #=> String
@@ -5404,6 +5417,11 @@ module Aws::SSM
5404
5417
  # resp.automation_execution.step_executions[0].triggered_alarms #=> Array
5405
5418
  # resp.automation_execution.step_executions[0].triggered_alarms[0].name #=> String
5406
5419
  # resp.automation_execution.step_executions[0].triggered_alarms[0].state #=> String, one of "UNKNOWN", "ALARM"
5420
+ # resp.automation_execution.step_executions[0].parent_step_details.step_execution_id #=> String
5421
+ # resp.automation_execution.step_executions[0].parent_step_details.step_name #=> String
5422
+ # resp.automation_execution.step_executions[0].parent_step_details.action #=> String
5423
+ # resp.automation_execution.step_executions[0].parent_step_details.iteration #=> Integer
5424
+ # resp.automation_execution.step_executions[0].parent_step_details.iterator_value #=> String
5407
5425
  # resp.automation_execution.step_executions_truncated #=> Boolean
5408
5426
  # resp.automation_execution.parameters #=> Hash
5409
5427
  # resp.automation_execution.parameters["AutomationParameterKey"] #=> Array
@@ -5487,6 +5505,9 @@ module Aws::SSM
5487
5505
  # resp.automation_execution.ops_item_id #=> String
5488
5506
  # resp.automation_execution.association_id #=> String
5489
5507
  # resp.automation_execution.change_request_name #=> String
5508
+ # resp.automation_execution.variables #=> Hash
5509
+ # resp.automation_execution.variables["AutomationParameterKey"] #=> Array
5510
+ # resp.automation_execution.variables["AutomationParameterKey"][0] #=> String
5490
5511
  #
5491
5512
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetAutomationExecution AWS API Documentation
5492
5513
  #
@@ -12182,25 +12203,28 @@ module Aws::SSM
12182
12203
  # The new value to specify for the service setting. The following list
12183
12204
  # specifies the available values for each setting.
12184
12205
  #
12185
- # * `/ssm/managed-instance/default-ec2-instance-management-role: The
12186
- # name of an IAM role`
12206
+ # * For `/ssm/managed-instance/default-ec2-instance-management-role`,
12207
+ # enter the name of an IAM role.
12187
12208
  #
12188
- # * `/ssm/automation/customer-script-log-destination`: `CloudWatch`
12209
+ # * For `/ssm/automation/customer-script-log-destination`, enter
12210
+ # `CloudWatch`.
12189
12211
  #
12190
- # * `/ssm/automation/customer-script-log-group-name`: The name of an
12191
- # Amazon CloudWatch Logs log group
12212
+ # * For `/ssm/automation/customer-script-log-group-name`, enter the name
12213
+ # of an Amazon CloudWatch Logs log group.
12192
12214
  #
12193
- # * `/ssm/documents/console/public-sharing-permission`: `Enable` or
12194
- # `Disable`
12215
+ # * For `/ssm/documents/console/public-sharing-permission`, enter
12216
+ # `Enable` or `Disable`.
12195
12217
  #
12196
- # * `/ssm/managed-instance/activation-tier`: `standard` or `advanced`
12218
+ # * For `/ssm/managed-instance/activation-tier`, enter `standard` or
12219
+ # `advanced`.
12197
12220
  #
12198
- # * `/ssm/opsinsights/opscenter`: `Enabled` or `Disabled`
12221
+ # * For `/ssm/opsinsights/opscenter`, enter `Enabled` or `Disabled`.
12199
12222
  #
12200
- # * `/ssm/parameter-store/default-parameter-tier`: `Standard`,
12201
- # `Advanced`, `Intelligent-Tiering`
12223
+ # * For `/ssm/parameter-store/default-parameter-tier`, enter `Standard`,
12224
+ # `Advanced`, or `Intelligent-Tiering`
12202
12225
  #
12203
- # * `/ssm/parameter-store/high-throughput-enabled`: `true` or `false`
12226
+ # * For `/ssm/parameter-store/high-throughput-enabled`, enter `true` or
12227
+ # `false`.
12204
12228
  #
12205
12229
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
12206
12230
  #
@@ -12233,7 +12257,7 @@ module Aws::SSM
12233
12257
  params: params,
12234
12258
  config: config)
12235
12259
  context[:gem_name] = 'aws-sdk-ssm'
12236
- context[:gem_version] = '1.159.0'
12260
+ context[:gem_version] = '1.160.0'
12237
12261
  Seahorse::Client::Request.new(handlers, context)
12238
12262
  end
12239
12263
 
@@ -873,6 +873,7 @@ module Aws::SSM
873
873
  ParametersFilterList = Shapes::ListShape.new(name: 'ParametersFilterList')
874
874
  ParametersFilterValue = Shapes::StringShape.new(name: 'ParametersFilterValue')
875
875
  ParametersFilterValueList = Shapes::ListShape.new(name: 'ParametersFilterValueList')
876
+ ParentStepDetails = Shapes::StructureShape.new(name: 'ParentStepDetails')
876
877
  Patch = Shapes::StructureShape.new(name: 'Patch')
877
878
  PatchAction = Shapes::StringShape.new(name: 'PatchAction')
878
879
  PatchAdvisoryId = Shapes::StringShape.new(name: 'PatchAdvisoryId')
@@ -1475,6 +1476,7 @@ module Aws::SSM
1475
1476
  AutomationExecution.add_member(:ops_item_id, Shapes::ShapeRef.new(shape: String, location_name: "OpsItemId"))
1476
1477
  AutomationExecution.add_member(:association_id, Shapes::ShapeRef.new(shape: String, location_name: "AssociationId"))
1477
1478
  AutomationExecution.add_member(:change_request_name, Shapes::ShapeRef.new(shape: ChangeRequestName, location_name: "ChangeRequestName"))
1479
+ AutomationExecution.add_member(:variables, Shapes::ShapeRef.new(shape: AutomationParameterMap, location_name: "Variables"))
1478
1480
  AutomationExecution.struct_class = Types::AutomationExecution
1479
1481
 
1480
1482
  AutomationExecutionFilter.add_member(:key, Shapes::ShapeRef.new(shape: AutomationExecutionFilterKey, required: true, location_name: "Key"))
@@ -3835,6 +3837,13 @@ module Aws::SSM
3835
3837
 
3836
3838
  ParametersFilterValueList.member = Shapes::ShapeRef.new(shape: ParametersFilterValue)
3837
3839
 
3840
+ ParentStepDetails.add_member(:step_execution_id, Shapes::ShapeRef.new(shape: String, location_name: "StepExecutionId"))
3841
+ ParentStepDetails.add_member(:step_name, Shapes::ShapeRef.new(shape: String, location_name: "StepName"))
3842
+ ParentStepDetails.add_member(:action, Shapes::ShapeRef.new(shape: AutomationActionName, location_name: "Action"))
3843
+ ParentStepDetails.add_member(:iteration, Shapes::ShapeRef.new(shape: Integer, location_name: "Iteration", metadata: {"box"=>true}))
3844
+ ParentStepDetails.add_member(:iterator_value, Shapes::ShapeRef.new(shape: String, location_name: "IteratorValue"))
3845
+ ParentStepDetails.struct_class = Types::ParentStepDetails
3846
+
3838
3847
  Patch.add_member(:id, Shapes::ShapeRef.new(shape: PatchId, location_name: "Id"))
3839
3848
  Patch.add_member(:release_date, Shapes::ShapeRef.new(shape: DateTime, location_name: "ReleaseDate"))
3840
3849
  Patch.add_member(:title, Shapes::ShapeRef.new(shape: PatchTitle, location_name: "Title"))
@@ -4384,6 +4393,7 @@ module Aws::SSM
4384
4393
  StepExecution.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets", metadata: {"box"=>true}))
4385
4394
  StepExecution.add_member(:target_location, Shapes::ShapeRef.new(shape: TargetLocation, location_name: "TargetLocation", metadata: {"box"=>true}))
4386
4395
  StepExecution.add_member(:triggered_alarms, Shapes::ShapeRef.new(shape: AlarmStateInformationList, location_name: "TriggeredAlarms"))
4396
+ StepExecution.add_member(:parent_step_details, Shapes::ShapeRef.new(shape: ParentStepDetails, location_name: "ParentStepDetails"))
4387
4397
  StepExecution.struct_class = Types::StepExecution
4388
4398
 
4389
4399
  StepExecutionFilter.add_member(:key, Shapes::ShapeRef.new(shape: StepExecutionFilterKey, required: true, location_name: "Key"))
@@ -1336,6 +1336,10 @@ module Aws::SSM
1336
1336
  # The name of the Change Manager change request.
1337
1337
  # @return [String]
1338
1338
  #
1339
+ # @!attribute [rw] variables
1340
+ # Variables defined for the automation.
1341
+ # @return [Hash<String,Array<String>>]
1342
+ #
1339
1343
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecution AWS API Documentation
1340
1344
  #
1341
1345
  class AutomationExecution < Struct.new(
@@ -1371,7 +1375,8 @@ module Aws::SSM
1371
1375
  :runbooks,
1372
1376
  :ops_item_id,
1373
1377
  :association_id,
1374
- :change_request_name)
1378
+ :change_request_name,
1379
+ :variables)
1375
1380
  SENSITIVE = []
1376
1381
  include Aws::Structure
1377
1382
  end
@@ -3535,7 +3540,7 @@ module Aws::SSM
3535
3540
  # This type of OpsItem is used by Change Manager for reviewing and
3536
3541
  # approving or rejecting change requests.
3537
3542
  #
3538
- # * `/aws/insights`
3543
+ # * `/aws/insight`
3539
3544
  #
3540
3545
  # This type of OpsItem is used by OpsCenter for aggregating and
3541
3546
  # reporting on duplicate OpsItems.
@@ -5269,6 +5274,14 @@ module Aws::SSM
5269
5274
  #
5270
5275
  # Sample values: `Installed` \| `InstalledOther` \|
5271
5276
  # `InstalledPendingReboot`
5277
+ #
5278
+ # For lists of all `State` values, see [Understanding patch
5279
+ # compliance state values][1] in the *Amazon Web Services Systems
5280
+ # Manager User Guide*.
5281
+ #
5282
+ #
5283
+ #
5284
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-compliance-states.html
5272
5285
  # @return [Array<Types::PatchOrchestratorFilter>]
5273
5286
  #
5274
5287
  # @!attribute [rw] next_token
@@ -12724,7 +12737,7 @@ module Aws::SSM
12724
12737
  # This type of OpsItem is used by Change Manager for reviewing and
12725
12738
  # approving or rejecting change requests.
12726
12739
  #
12727
- # * `/aws/insights`
12740
+ # * `/aws/insight`
12728
12741
  #
12729
12742
  # This type of OpsItem is used by OpsCenter for aggregating and
12730
12743
  # reporting on duplicate OpsItems.
@@ -13328,7 +13341,7 @@ module Aws::SSM
13328
13341
  # This type of OpsItem is used by Change Manager for reviewing and
13329
13342
  # approving or rejecting change requests.
13330
13343
  #
13331
- # * `/aws/insights`
13344
+ # * `/aws/insight`
13332
13345
  #
13333
13346
  # This type of OpsItem is used by OpsCenter for aggregating and
13334
13347
  # reporting on duplicate OpsItems.
@@ -13999,6 +14012,40 @@ module Aws::SSM
13999
14012
  include Aws::Structure
14000
14013
  end
14001
14014
 
14015
+ # A detailed status of the parent step.
14016
+ #
14017
+ # @!attribute [rw] step_execution_id
14018
+ # The unique ID of a step execution.
14019
+ # @return [String]
14020
+ #
14021
+ # @!attribute [rw] step_name
14022
+ # The name of the step.
14023
+ # @return [String]
14024
+ #
14025
+ # @!attribute [rw] action
14026
+ # The name of the automation action.
14027
+ # @return [String]
14028
+ #
14029
+ # @!attribute [rw] iteration
14030
+ # The current repetition of the loop represented by an integer.
14031
+ # @return [Integer]
14032
+ #
14033
+ # @!attribute [rw] iterator_value
14034
+ # The current value of the specified iterator in the loop.
14035
+ # @return [String]
14036
+ #
14037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ParentStepDetails AWS API Documentation
14038
+ #
14039
+ class ParentStepDetails < Struct.new(
14040
+ :step_execution_id,
14041
+ :step_name,
14042
+ :action,
14043
+ :iteration,
14044
+ :iterator_value)
14045
+ SENSITIVE = []
14046
+ include Aws::Structure
14047
+ end
14048
+
14002
14049
  # Represents metadata about a patch.
14003
14050
  #
14004
14051
  # @!attribute [rw] id
@@ -17304,6 +17351,10 @@ module Aws::SSM
17304
17351
  # The CloudWatch alarms that were invoked by the automation.
17305
17352
  # @return [Array<Types::AlarmStateInformation>]
17306
17353
  #
17354
+ # @!attribute [rw] parent_step_details
17355
+ # Information about the parent step.
17356
+ # @return [Types::ParentStepDetails]
17357
+ #
17307
17358
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StepExecution AWS API Documentation
17308
17359
  #
17309
17360
  class StepExecution < Struct.new(
@@ -17329,7 +17380,8 @@ module Aws::SSM
17329
17380
  :valid_next_steps,
17330
17381
  :targets,
17331
17382
  :target_location,
17332
- :triggered_alarms)
17383
+ :triggered_alarms,
17384
+ :parent_step_details)
17333
17385
  SENSITIVE = []
17334
17386
  include Aws::Structure
17335
17387
  end
@@ -17338,9 +17390,7 @@ module Aws::SSM
17338
17390
  # the call.
17339
17391
  #
17340
17392
  # @!attribute [rw] key
17341
- # One or more keys to limit the results. Valid filter keys include the
17342
- # following: StepName, Action, StepExecutionId, StepExecutionStatus,
17343
- # StartTimeBefore, StartTimeAfter.
17393
+ # One or more keys to limit the results.
17344
17394
  # @return [String]
17345
17395
  #
17346
17396
  # @!attribute [rw] values
@@ -19273,25 +19323,28 @@ module Aws::SSM
19273
19323
  # The new value to specify for the service setting. The following list
19274
19324
  # specifies the available values for each setting.
19275
19325
  #
19276
- # * `/ssm/managed-instance/default-ec2-instance-management-role: The
19277
- # name of an IAM role`
19326
+ # * For `/ssm/managed-instance/default-ec2-instance-management-role`,
19327
+ # enter the name of an IAM role.
19278
19328
  #
19279
- # * `/ssm/automation/customer-script-log-destination`: `CloudWatch`
19329
+ # * For `/ssm/automation/customer-script-log-destination`, enter
19330
+ # `CloudWatch`.
19280
19331
  #
19281
- # * `/ssm/automation/customer-script-log-group-name`: The name of an
19282
- # Amazon CloudWatch Logs log group
19332
+ # * For `/ssm/automation/customer-script-log-group-name`, enter the
19333
+ # name of an Amazon CloudWatch Logs log group.
19283
19334
  #
19284
- # * `/ssm/documents/console/public-sharing-permission`: `Enable` or
19285
- # `Disable`
19335
+ # * For `/ssm/documents/console/public-sharing-permission`, enter
19336
+ # `Enable` or `Disable`.
19286
19337
  #
19287
- # * `/ssm/managed-instance/activation-tier`: `standard` or `advanced`
19338
+ # * For `/ssm/managed-instance/activation-tier`, enter `standard` or
19339
+ # `advanced`.
19288
19340
  #
19289
- # * `/ssm/opsinsights/opscenter`: `Enabled` or `Disabled`
19341
+ # * For `/ssm/opsinsights/opscenter`, enter `Enabled` or `Disabled`.
19290
19342
  #
19291
- # * `/ssm/parameter-store/default-parameter-tier`: `Standard`,
19292
- # `Advanced`, `Intelligent-Tiering`
19343
+ # * For `/ssm/parameter-store/default-parameter-tier`, enter
19344
+ # `Standard`, `Advanced`, or `Intelligent-Tiering`
19293
19345
  #
19294
- # * `/ssm/parameter-store/high-throughput-enabled`: `true` or `false`
19346
+ # * For `/ssm/parameter-store/high-throughput-enabled`, enter `true`
19347
+ # or `false`.
19295
19348
  # @return [String]
19296
19349
  #
19297
19350
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateServiceSettingRequest AWS API Documentation
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.159.0'
56
+ GEM_VERSION = '1.160.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.159.0
4
+ version: 1.160.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-20 00:00:00.000000000 Z
11
+ date: 2023-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core