aws-sdk-ssm 1.196.0 → 1.198.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +56 -3
- data/lib/aws-sdk-ssm/client_api.rb +5 -0
- data/lib/aws-sdk-ssm/types.rb +90 -12
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b9501c6cebb5076dbdd43e19dc4009346a826d5d9ebac84c85b548078a74a9e
|
4
|
+
data.tar.gz: c9b147da941c406fc1f060eee92dea5ea69e8d05da28118ac44ecf4bb393261e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 107e2bd347db9ef641b8786bc162bb4f970c5e6b930c50ccf2d0a8e24622029667b411d5e46082c5ebc1e8b306a10edd9f27f9e22223cd8753b789d084dad35c
|
7
|
+
data.tar.gz: f8d7ae74ba940b79a25a5fb7860b1ea5b9adf0ebb94a8942c82dc6d26977330297902bd923fc5d1ecd07fd1d6ef5ceea4c20da68cff75be07078df7dff2a7191
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.198.0 (2025-07-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - July 2025 doc-only updates for Systems Manager.
|
8
|
+
|
9
|
+
1.197.0 (2025-06-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Introduces AccessType, a new filter value for the DescribeSessions API.
|
13
|
+
|
4
14
|
1.196.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.198.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -3744,6 +3744,12 @@ module Aws::SSM
|
|
3744
3744
|
# @option params [required, String] :name
|
3745
3745
|
# The name of the SSM document.
|
3746
3746
|
#
|
3747
|
+
# <note markdown="1"> If you're calling a shared SSM document from a different Amazon Web
|
3748
|
+
# Services account, `Name` is the full Amazon Resource Name (ARN) of the
|
3749
|
+
# document.
|
3750
|
+
#
|
3751
|
+
# </note>
|
3752
|
+
#
|
3747
3753
|
# @option params [String] :document_version
|
3748
3754
|
# The document version for which you want information. Can be a specific
|
3749
3755
|
# version or the default version.
|
@@ -5247,6 +5253,11 @@ module Aws::SSM
|
|
5247
5253
|
# You can specify the `NextToken` in a subsequent call to get the next
|
5248
5254
|
# set of results.
|
5249
5255
|
#
|
5256
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
5257
|
+
# specified for the beginning or end of a parameter name. If the
|
5258
|
+
# specified name for a parameter contains spaces between characters, the
|
5259
|
+
# request fails with a `ValidationException` error.
|
5260
|
+
#
|
5250
5261
|
# If you change the KMS key alias for the KMS key used to encrypt a
|
5251
5262
|
# parameter, then you must also update the key alias the parameter uses
|
5252
5263
|
# to reference KMS. Otherwise, `DescribeParameters` retrieves whatever
|
@@ -5673,7 +5684,7 @@ module Aws::SSM
|
|
5673
5684
|
# next_token: "NextToken",
|
5674
5685
|
# filters: [
|
5675
5686
|
# {
|
5676
|
-
# key: "InvokedAfter", # required, accepts InvokedAfter, InvokedBefore, Target, Owner, Status, SessionId
|
5687
|
+
# key: "InvokedAfter", # required, accepts InvokedAfter, InvokedBefore, Target, Owner, Status, SessionId, AccessType
|
5677
5688
|
# value: "SessionFilterValue", # required
|
5678
5689
|
# },
|
5679
5690
|
# ],
|
@@ -5694,6 +5705,7 @@ module Aws::SSM
|
|
5694
5705
|
# resp.sessions[0].output_url.s3_output_url #=> String
|
5695
5706
|
# resp.sessions[0].output_url.cloud_watch_output_url #=> String
|
5696
5707
|
# resp.sessions[0].max_session_duration #=> String
|
5708
|
+
# resp.sessions[0].access_type #=> String, one of "Standard", "JustInTime"
|
5697
5709
|
# resp.next_token #=> String
|
5698
5710
|
#
|
5699
5711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeSessions AWS API Documentation
|
@@ -7156,6 +7168,11 @@ module Aws::SSM
|
|
7156
7168
|
# Get information about a single parameter by specifying the parameter
|
7157
7169
|
# name.
|
7158
7170
|
#
|
7171
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
7172
|
+
# specified for the beginning or end of a parameter name. If the
|
7173
|
+
# specified name for a parameter contains spaces between characters, the
|
7174
|
+
# request fails with a `ValidationException` error.
|
7175
|
+
#
|
7159
7176
|
# <note markdown="1"> To get information about more than one parameter at a time, use the
|
7160
7177
|
# GetParameters operation.
|
7161
7178
|
#
|
@@ -7215,6 +7232,11 @@ module Aws::SSM
|
|
7215
7232
|
|
7216
7233
|
# Retrieves the history of all changes to a parameter.
|
7217
7234
|
#
|
7235
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
7236
|
+
# specified for the beginning or end of a parameter name. If the
|
7237
|
+
# specified name for a parameter contains spaces between characters, the
|
7238
|
+
# request fails with a `ValidationException` error.
|
7239
|
+
#
|
7218
7240
|
# If you change the KMS key alias for the KMS key used to encrypt a
|
7219
7241
|
# parameter, then you must also update the key alias the parameter uses
|
7220
7242
|
# to reference KMS. Otherwise, `GetParameterHistory` retrieves whatever
|
@@ -7293,6 +7315,11 @@ module Aws::SSM
|
|
7293
7315
|
#
|
7294
7316
|
# </note>
|
7295
7317
|
#
|
7318
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
7319
|
+
# specified for the beginning or end of a parameter name. If the
|
7320
|
+
# specified name for a parameter contains spaces between characters, the
|
7321
|
+
# request fails with a `ValidationException` error.
|
7322
|
+
#
|
7296
7323
|
# @option params [required, Array<String>] :names
|
7297
7324
|
# The names or Amazon Resource Names (ARNs) of the parameters that you
|
7298
7325
|
# want to query. For parameters shared with you from another account,
|
@@ -7367,6 +7394,11 @@ module Aws::SSM
|
|
7367
7394
|
# You can specify the `NextToken` in a subsequent call to get the next
|
7368
7395
|
# set of results.
|
7369
7396
|
#
|
7397
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
7398
|
+
# specified for the beginning or end of a parameter name. If the
|
7399
|
+
# specified name for a parameter contains spaces between characters, the
|
7400
|
+
# request fails with a `ValidationException` error.
|
7401
|
+
#
|
7370
7402
|
# @option params [required, String] :path
|
7371
7403
|
# The hierarchy for the parameter. Hierarchies start with a forward
|
7372
7404
|
# slash (/). The hierarchy is the parameter name except the last part of
|
@@ -7729,6 +7761,11 @@ module Aws::SSM
|
|
7729
7761
|
# label isn't associated with a parameter and the system displays it
|
7730
7762
|
# in the list of InvalidLabels.
|
7731
7763
|
#
|
7764
|
+
# * Parameter names can't contain spaces. The service removes any
|
7765
|
+
# spaces specified for the beginning or end of a parameter name. If
|
7766
|
+
# the specified name for a parameter contains spaces between
|
7767
|
+
# characters, the request fails with a `ValidationException` error.
|
7768
|
+
#
|
7732
7769
|
# @option params [required, String] :name
|
7733
7770
|
# The parameter name on which you want to attach one or more labels.
|
7734
7771
|
#
|
@@ -9266,6 +9303,14 @@ module Aws::SSM
|
|
9266
9303
|
# * ExecutionTime. The time the patch, association, or custom compliance
|
9267
9304
|
# item was applied to the managed node.
|
9268
9305
|
#
|
9306
|
+
# For State Manager associations, this represents the time when
|
9307
|
+
# compliance status was captured by the Systems Manager service during
|
9308
|
+
# its internal compliance aggregation workflow, not necessarily when
|
9309
|
+
# the association was executed on the managed node. State Manager
|
9310
|
+
# updates compliance information for all associations on an instance
|
9311
|
+
# whenever any association executes, which may result in multiple
|
9312
|
+
# associations showing the same execution time.
|
9313
|
+
#
|
9269
9314
|
# * Id: The patch, association, or custom compliance ID.
|
9270
9315
|
#
|
9271
9316
|
# * Title: A title.
|
@@ -9457,7 +9502,10 @@ module Aws::SSM
|
|
9457
9502
|
# hierarchies in parameter names. For example:
|
9458
9503
|
# `/Dev/Production/East/Project-ABC/MyParameter`
|
9459
9504
|
#
|
9460
|
-
# *
|
9505
|
+
# * Parameter names can't contain spaces. The service removes any
|
9506
|
+
# spaces specified for the beginning or end of a parameter name. If
|
9507
|
+
# the specified name for a parameter contains spaces between
|
9508
|
+
# characters, the request fails with a `ValidationException` error.
|
9461
9509
|
#
|
9462
9510
|
# * Parameter hierarchies are limited to a maximum depth of fifteen
|
9463
9511
|
# levels.
|
@@ -11444,6 +11492,11 @@ module Aws::SSM
|
|
11444
11492
|
|
11445
11493
|
# Remove a label or labels from a parameter.
|
11446
11494
|
#
|
11495
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
11496
|
+
# specified for the beginning or end of a parameter name. If the
|
11497
|
+
# specified name for a parameter contains spaces between characters, the
|
11498
|
+
# request fails with a `ValidationException` error.
|
11499
|
+
#
|
11447
11500
|
# @option params [required, String] :name
|
11448
11501
|
# The name of the parameter from which you want to delete one or more
|
11449
11502
|
# labels.
|
@@ -13450,7 +13503,7 @@ module Aws::SSM
|
|
13450
13503
|
tracer: tracer
|
13451
13504
|
)
|
13452
13505
|
context[:gem_name] = 'aws-sdk-ssm'
|
13453
|
-
context[:gem_version] = '1.
|
13506
|
+
context[:gem_version] = '1.198.0'
|
13454
13507
|
Seahorse::Client::Request.new(handlers, context)
|
13455
13508
|
end
|
13456
13509
|
|
@@ -19,6 +19,7 @@ module Aws::SSM
|
|
19
19
|
AccessKeySecretType = Shapes::StringShape.new(name: 'AccessKeySecretType')
|
20
20
|
AccessRequestId = Shapes::StringShape.new(name: 'AccessRequestId')
|
21
21
|
AccessRequestStatus = Shapes::StringShape.new(name: 'AccessRequestStatus')
|
22
|
+
AccessType = Shapes::StringShape.new(name: 'AccessType')
|
22
23
|
Account = Shapes::StringShape.new(name: 'Account')
|
23
24
|
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
24
25
|
AccountIdList = Shapes::ListShape.new(name: 'AccountIdList')
|
@@ -4607,6 +4608,7 @@ module Aws::SSM
|
|
4607
4608
|
Session.add_member(:details, Shapes::ShapeRef.new(shape: SessionDetails, location_name: "Details"))
|
4608
4609
|
Session.add_member(:output_url, Shapes::ShapeRef.new(shape: SessionManagerOutputUrl, location_name: "OutputUrl"))
|
4609
4610
|
Session.add_member(:max_session_duration, Shapes::ShapeRef.new(shape: MaxSessionDuration, location_name: "MaxSessionDuration"))
|
4611
|
+
Session.add_member(:access_type, Shapes::ShapeRef.new(shape: AccessType, location_name: "AccessType"))
|
4610
4612
|
Session.struct_class = Types::Session
|
4611
4613
|
|
4612
4614
|
SessionFilter.add_member(:key, Shapes::ShapeRef.new(shape: SessionFilterKey, required: true, location_name: "key"))
|
@@ -5216,6 +5218,7 @@ module Aws::SSM
|
|
5216
5218
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentContent)
|
5217
5219
|
o.errors << Shapes::ShapeRef.new(shape: DocumentLimitExceeded)
|
5218
5220
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentSchemaVersion)
|
5221
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyUpdates)
|
5219
5222
|
end)
|
5220
5223
|
|
5221
5224
|
api.add_operation(:create_maintenance_window, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5313,6 +5316,7 @@ module Aws::SSM
|
|
5313
5316
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocument)
|
5314
5317
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentOperation)
|
5315
5318
|
o.errors << Shapes::ShapeRef.new(shape: AssociatedInstances)
|
5319
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyUpdates)
|
5316
5320
|
end)
|
5317
5321
|
|
5318
5322
|
api.add_operation(:delete_inventory, Seahorse::Model::Operation.new.tap do |o|
|
@@ -7027,6 +7031,7 @@ module Aws::SSM
|
|
7027
7031
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocument)
|
7028
7032
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentOperation)
|
7029
7033
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDocumentVersion)
|
7034
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyUpdates)
|
7030
7035
|
end)
|
7031
7036
|
|
7032
7037
|
api.add_operation(:update_maintenance_window, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -2604,6 +2604,13 @@ module Aws::SSM
|
|
2604
2604
|
# @!attribute [rw] execution_time
|
2605
2605
|
# The time the execution ran as a datetime object that is saved in the
|
2606
2606
|
# following format: `yyyy-MM-dd'T'HH:mm:ss'Z'`
|
2607
|
+
#
|
2608
|
+
# For State Manager associations, this timestamp represents when the
|
2609
|
+
# compliance status was captured and reported by the Systems Manager
|
2610
|
+
# service, not when the underlying association was actually executed
|
2611
|
+
# on the managed node. To track actual association execution times,
|
2612
|
+
# use the DescribeAssociationExecutionTargets command or check the
|
2613
|
+
# association execution history in the Systems Manager console.
|
2607
2614
|
# @return [Time]
|
2608
2615
|
#
|
2609
2616
|
# @!attribute [rw] execution_id
|
@@ -2674,6 +2681,14 @@ module Aws::SSM
|
|
2674
2681
|
# A summary for the compliance item. The summary includes an execution
|
2675
2682
|
# ID, the execution type (for example, command), and the execution
|
2676
2683
|
# time.
|
2684
|
+
#
|
2685
|
+
# For State Manager associations, the `ExecutionTime` value represents
|
2686
|
+
# when the compliance status was captured and aggregated by the
|
2687
|
+
# Systems Manager service, not necessarily when the underlying
|
2688
|
+
# association was executed on the managed node. State Manager updates
|
2689
|
+
# compliance status for all associations on an instance whenever any
|
2690
|
+
# association executes, which means multiple associations may show the
|
2691
|
+
# same execution time even if they were executed at different times.
|
2677
2692
|
# @return [Types::ComplianceExecutionSummary]
|
2678
2693
|
#
|
2679
2694
|
# @!attribute [rw] details
|
@@ -5216,7 +5231,7 @@ module Aws::SSM
|
|
5216
5231
|
|
5217
5232
|
# @!attribute [rw] account_ids
|
5218
5233
|
# The account IDs that have permission to use this document. The ID
|
5219
|
-
# can be either an Amazon Web Services account or
|
5234
|
+
# can be either an Amazon Web Services account number or `all`.
|
5220
5235
|
# @return [Array<String>]
|
5221
5236
|
#
|
5222
5237
|
# @!attribute [rw] account_sharing_info_list
|
@@ -5241,6 +5256,12 @@ module Aws::SSM
|
|
5241
5256
|
|
5242
5257
|
# @!attribute [rw] name
|
5243
5258
|
# The name of the SSM document.
|
5259
|
+
#
|
5260
|
+
# <note markdown="1"> If you're calling a shared SSM document from a different Amazon Web
|
5261
|
+
# Services account, `Name` is the full Amazon Resource Name (ARN) of
|
5262
|
+
# the document.
|
5263
|
+
#
|
5264
|
+
# </note>
|
5244
5265
|
# @return [String]
|
5245
5266
|
#
|
5246
5267
|
# @!attribute [rw] document_version
|
@@ -10042,7 +10063,7 @@ module Aws::SSM
|
|
10042
10063
|
#
|
10043
10064
|
# Valid filter key values: ActivationIds \| AgentVersion \|
|
10044
10065
|
# AssociationStatus \| IamRole \| InstanceIds \| PingStatus \|
|
10045
|
-
#
|
10066
|
+
# PlatformType \| ResourceType \| SourceIds \| SourceTypes \|
|
10046
10067
|
# "tag-key" \| "tag:`{keyname}`
|
10047
10068
|
#
|
10048
10069
|
# * Valid values for the `AssociationStatus` filter key: Success \|
|
@@ -11328,15 +11349,44 @@ module Aws::SSM
|
|
11328
11349
|
# One or more filters. Use a filter to return a more specific list of
|
11329
11350
|
# results.
|
11330
11351
|
#
|
11352
|
+
# **Example formats for the `aws ssm get-inventory` command:**
|
11353
|
+
#
|
11354
|
+
# `--filters
|
11355
|
+
# Key=AWS:InstanceInformation.AgentType,Values=amazon-ssm-agent,Type=Equal`
|
11356
|
+
#
|
11357
|
+
# `--filters
|
11358
|
+
# Key=AWS:InstanceInformation.AgentVersion,Values=3.3.2299.0,Type=Equal`
|
11359
|
+
#
|
11360
|
+
# `--filters
|
11361
|
+
# Key=AWS:InstanceInformation.ComputerName,Values=ip-192.0.2.0.us-east-2.compute.internal,Type=Equal`
|
11362
|
+
#
|
11363
|
+
# `--filters
|
11364
|
+
# Key=AWS:InstanceInformation.InstanceId,Values=i-0a4cd6ceffEXAMPLE,i-1a2b3c4d5e6EXAMPLE,Type=Equal`
|
11365
|
+
#
|
11366
|
+
# `--filters
|
11367
|
+
# Key=AWS:InstanceInformation.InstanceStatus,Values=Active,Type=Equal`
|
11368
|
+
#
|
11369
|
+
# `--filters
|
11370
|
+
# Key=AWS:InstanceInformation.IpAddress,Values=198.51.100.0,Type=Equal`
|
11371
|
+
#
|
11372
|
+
# `--filters Key=AWS:InstanceInformation.PlatformName,Values="Amazon
|
11373
|
+
# Linux",Type=Equal`
|
11374
|
+
#
|
11375
|
+
# `--filters
|
11376
|
+
# Key=AWS:InstanceInformation.PlatformType,Values=Linux,Type=Equal`
|
11377
|
+
#
|
11378
|
+
# `--filters
|
11379
|
+
# Key=AWS:InstanceInformation.PlatformVersion,Values=2023,Type=BeginWith`
|
11380
|
+
#
|
11381
|
+
# `--filters
|
11382
|
+
# Key=AWS:InstanceInformation.ResourceType,Values=EC2Instance,Type=Equal`
|
11383
|
+
#
|
11331
11384
|
# @!attribute [rw] key
|
11332
11385
|
# The name of the filter key.
|
11333
11386
|
# @return [String]
|
11334
11387
|
#
|
11335
11388
|
# @!attribute [rw] values
|
11336
|
-
# Inventory filter values.
|
11337
|
-
# node IDs are specified as values
|
11338
|
-
# `Key=AWS:InstanceInformation.InstanceId,Values= i-a12b3c4d5e6g,
|
11339
|
-
# i-1a2b3c4d5e6,Type=Equal`.
|
11389
|
+
# Inventory filter values.
|
11340
11390
|
# @return [Array<String>]
|
11341
11391
|
#
|
11342
11392
|
# @!attribute [rw] type
|
@@ -15691,7 +15741,9 @@ module Aws::SSM
|
|
15691
15741
|
# @return [Array<String>]
|
15692
15742
|
#
|
15693
15743
|
# @!attribute [rw] configuration
|
15694
|
-
# The value of the
|
15744
|
+
# The value of the repo configuration.
|
15745
|
+
#
|
15746
|
+
# **Example for yum repositories**
|
15695
15747
|
#
|
15696
15748
|
# `[main]`
|
15697
15749
|
#
|
@@ -15701,14 +15753,27 @@ module Aws::SSM
|
|
15701
15753
|
#
|
15702
15754
|
# `enabled=1`
|
15703
15755
|
#
|
15704
|
-
#
|
15705
|
-
# repository configuration, see [dnf.conf(5)][1].
|
15756
|
+
# For information about other options available for your yum
|
15757
|
+
# repository configuration, see [dnf.conf(5)][1] on the *man7.org*
|
15758
|
+
# website.
|
15706
15759
|
#
|
15707
|
-
#
|
15760
|
+
# **Examples for Ubuntu Server and Debian Server**
|
15761
|
+
#
|
15762
|
+
# `deb http://security.ubuntu.com/ubuntu jammy main`
|
15763
|
+
#
|
15764
|
+
# `deb https://site.example.com/debian distribution component1
|
15765
|
+
# component2 component3`
|
15766
|
+
#
|
15767
|
+
# Repo information for Ubuntu Server repositories must be specifed in
|
15768
|
+
# a single line. For more examples and information, see [jammy (5)
|
15769
|
+
# sources.list.5.gz][2] on the *Ubuntu Server Manuals* website and
|
15770
|
+
# [sources.list format][3] on the *Debian Wiki*.
|
15708
15771
|
#
|
15709
15772
|
#
|
15710
15773
|
#
|
15711
15774
|
# [1]: https://man7.org/linux/man-pages/man5/dnf.conf.5.html
|
15775
|
+
# [2]: https://manpages.ubuntu.com/manpages/jammy/man5/sources.list.5.html
|
15776
|
+
# [3]: https://wiki.debian.org/SourcesList#sources.list_format
|
15712
15777
|
# @return [String]
|
15713
15778
|
#
|
15714
15779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchSource AWS API Documentation
|
@@ -15936,7 +16001,10 @@ module Aws::SSM
|
|
15936
16001
|
# hierarchies in parameter names. For example:
|
15937
16002
|
# `/Dev/Production/East/Project-ABC/MyParameter`
|
15938
16003
|
#
|
15939
|
-
# *
|
16004
|
+
# * Parameter names can't contain spaces. The service removes any
|
16005
|
+
# spaces specified for the beginning or end of a parameter name. If
|
16006
|
+
# the specified name for a parameter contains spaces between
|
16007
|
+
# characters, the request fails with a `ValidationException` error.
|
15940
16008
|
#
|
15941
16009
|
# * Parameter hierarchies are limited to a maximum depth of fifteen
|
15942
16010
|
# levels.
|
@@ -18029,6 +18097,15 @@ module Aws::SSM
|
|
18029
18097
|
# The maximum duration of a session before it terminates.
|
18030
18098
|
# @return [String]
|
18031
18099
|
#
|
18100
|
+
# @!attribute [rw] access_type
|
18101
|
+
# `Standard` access type is the default for Session Manager sessions.
|
18102
|
+
# `JustInTime` is the access type for [Just-in-time node access][1].
|
18103
|
+
#
|
18104
|
+
#
|
18105
|
+
#
|
18106
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-just-in-time-node-access.html
|
18107
|
+
# @return [String]
|
18108
|
+
#
|
18032
18109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/Session AWS API Documentation
|
18033
18110
|
#
|
18034
18111
|
class Session < Struct.new(
|
@@ -18042,7 +18119,8 @@ module Aws::SSM
|
|
18042
18119
|
:reason,
|
18043
18120
|
:details,
|
18044
18121
|
:output_url,
|
18045
|
-
:max_session_duration
|
18122
|
+
:max_session_duration,
|
18123
|
+
:access_type)
|
18046
18124
|
SENSITIVE = []
|
18047
18125
|
include Aws::Structure
|
18048
18126
|
end
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1299,7 +1299,7 @@ module Aws
|
|
1299
1299
|
?next_token: ::String,
|
1300
1300
|
?filters: Array[
|
1301
1301
|
{
|
1302
|
-
key: ("InvokedAfter" | "InvokedBefore" | "Target" | "Owner" | "Status" | "SessionId"),
|
1302
|
+
key: ("InvokedAfter" | "InvokedBefore" | "Target" | "Owner" | "Status" | "SessionId" | "AccessType"),
|
1303
1303
|
value: ::String
|
1304
1304
|
},
|
1305
1305
|
]
|
data/sig/types.rbs
CHANGED
@@ -3973,11 +3973,12 @@ module Aws::SSM
|
|
3973
3973
|
attr_accessor details: ::String
|
3974
3974
|
attr_accessor output_url: Types::SessionManagerOutputUrl
|
3975
3975
|
attr_accessor max_session_duration: ::String
|
3976
|
+
attr_accessor access_type: ("Standard" | "JustInTime")
|
3976
3977
|
SENSITIVE: []
|
3977
3978
|
end
|
3978
3979
|
|
3979
3980
|
class SessionFilter
|
3980
|
-
attr_accessor key: ("InvokedAfter" | "InvokedBefore" | "Target" | "Owner" | "Status" | "SessionId")
|
3981
|
+
attr_accessor key: ("InvokedAfter" | "InvokedBefore" | "Target" | "Owner" | "Status" | "SessionId" | "AccessType")
|
3981
3982
|
attr_accessor value: ::String
|
3982
3983
|
SENSITIVE: []
|
3983
3984
|
end
|