aws-sdk-sagemaker 1.347.0 → 1.348.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2884a5c4eceb48690629fc7185e4d776c17b3a6e37b510eebc4c540a16469b78
4
- data.tar.gz: 364210dc214362ac082f728ab5ed11a6887f8e2d94553f61c9e819c53aca8183
3
+ metadata.gz: 33d48f10f523ea038681bf87c56fc46fde23f227985b4676f3d1c67441172c1e
4
+ data.tar.gz: 5f56afd71aebeeaaddbc189702d217a018fc4ba7b8b033a0dffad7ed35cc223d
5
5
  SHA512:
6
- metadata.gz: 4c5fa3fe38831d2d0b73d983c5e5d9f32e26fcf5c01cdce8b2e0441413403c7e0985b3516dac811bc06742c2261c608b1685c995ad445e22dd974b049bc29e55
7
- data.tar.gz: 6a00228ebca0af0ae9e87c87ca24099c61b09244e9b8d8946c56e5260afb612b77721531752562a4e510febde61405d5708d04e9314ada0528ad0477a4c591e1
6
+ metadata.gz: c28a45e5100a4fa2caf551f509b83b0eb75bf0211b5a46688376ac8aadee293f8a30cc2e89074b9b7d2dbeda615b2d39d6f2db3b3d6429a5ebe4605b7dab8d68
7
+ data.tar.gz: e445405f216a503ca12b3b96d5629191b6ec885900b24b6320bd2932bef272982594c39d5d4dcc7677cc212efb391c1c8d21e0ed8f67af800883f6790cb92f7c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.348.0 (2026-01-16)
5
+ ------------------
6
+
7
+ * Feature - Adding security consideration comments for lcc accessing execution role under root access
8
+
4
9
  1.347.0 (2026-01-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.347.0
1
+ 1.348.0
@@ -8589,6 +8589,14 @@ module Aws::SageMaker
8589
8589
  # For information about notebook instance lifestyle configurations, see
8590
8590
  # [Step 2.1: (Optional) Customize a Notebook Instance][1].
8591
8591
  #
8592
+ # <note markdown="1"> Lifecycle configuration scripts execute with root access and the
8593
+ # notebook instance's IAM execution role privileges. Grant this
8594
+ # permission only to trusted principals. See [Customize a Notebook
8595
+ # Instance Using a Lifecycle Configuration Script][1] for security best
8596
+ # practices.
8597
+ #
8598
+ # </note>
8599
+ #
8592
8600
  #
8593
8601
  #
8594
8602
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html
@@ -30779,6 +30787,20 @@ module Aws::SageMaker
30779
30787
  # notebook instance to accommodate changes in your workload
30780
30788
  # requirements.
30781
30789
  #
30790
+ # <note markdown="1"> This API can attach lifecycle configurations to notebook instances.
30791
+ # Lifecycle configuration scripts execute with root access and the
30792
+ # notebook instance's IAM execution role privileges. Principals with
30793
+ # this permission and access to lifecycle configurations can execute
30794
+ # code with the execution role's credentials. See [Customize a Notebook
30795
+ # Instance Using a Lifecycle Configuration Script][1] for security best
30796
+ # practices.
30797
+ #
30798
+ # </note>
30799
+ #
30800
+ #
30801
+ #
30802
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html
30803
+ #
30782
30804
  # @option params [required, String] :notebook_instance_name
30783
30805
  # The name of the notebook instance to update.
30784
30806
  #
@@ -30940,9 +30962,19 @@ module Aws::SageMaker
30940
30962
  # Updates a notebook instance lifecycle configuration created with the
30941
30963
  # [CreateNotebookInstanceLifecycleConfig][1] API.
30942
30964
  #
30965
+ # <note markdown="1"> Updates to lifecycle configurations affect all notebook instances
30966
+ # using that configuration upon their next start. Lifecycle
30967
+ # configuration scripts execute with root access and the notebook
30968
+ # instance's IAM execution role privileges. Grant this permission only
30969
+ # to trusted principals. See [Customize a Notebook Instance Using a
30970
+ # Lifecycle Configuration Script][2] for security best practices.
30971
+ #
30972
+ # </note>
30973
+ #
30943
30974
  #
30944
30975
  #
30945
30976
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateNotebookInstanceLifecycleConfig.html
30977
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/notebook-lifecycle-config.html
30946
30978
  #
30947
30979
  # @option params [required, String] :notebook_instance_lifecycle_config_name
30948
30980
  # The name of the lifecycle configuration.
@@ -32183,7 +32215,7 @@ module Aws::SageMaker
32183
32215
  tracer: tracer
32184
32216
  )
32185
32217
  context[:gem_name] = 'aws-sdk-sagemaker'
32186
- context[:gem_version] = '1.347.0'
32218
+ context[:gem_version] = '1.348.0'
32187
32219
  Seahorse::Client::Request.new(handlers, context)
32188
32220
  end
32189
32221
 
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.347.0'
58
+ GEM_VERSION = '1.348.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.347.0
4
+ version: 1.348.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.241.3
21
+ version: 3.241.4
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.241.3
31
+ version: 3.241.4
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement