aws-sdk-sagemaker 1.322.0 → 1.324.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-sagemaker/client.rb +86 -72
- data/lib/aws-sdk-sagemaker/client_api.rb +4 -2
- data/lib/aws-sdk-sagemaker/types.rb +37 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +51 -43
- data/sig/types.rbs +24 -22
- metadata +1 -1
|
@@ -3392,6 +3392,8 @@ module Aws::SageMaker
|
|
|
3392
3392
|
ClarifyTextConfig.struct_class = Types::ClarifyTextConfig
|
|
3393
3393
|
|
|
3394
3394
|
ClusterEbsVolumeConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: ClusterEbsVolumeSizeInGB, location_name: "VolumeSizeInGB"))
|
|
3395
|
+
ClusterEbsVolumeConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
|
|
3396
|
+
ClusterEbsVolumeConfig.add_member(:root_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "RootVolume", metadata: {"box" => true}))
|
|
3395
3397
|
ClusterEbsVolumeConfig.struct_class = Types::ClusterEbsVolumeConfig
|
|
3396
3398
|
|
|
3397
3399
|
ClusterEventDetail.add_member(:event_id, Shapes::ShapeRef.new(shape: EventId, required: true, location_name: "EventId"))
|
|
@@ -10325,11 +10327,11 @@ module Aws::SageMaker
|
|
|
10325
10327
|
S3DataSource.add_member(:hub_access_config, Shapes::ShapeRef.new(shape: HubAccessConfig, location_name: "HubAccessConfig"))
|
|
10326
10328
|
S3DataSource.struct_class = Types::S3DataSource
|
|
10327
10329
|
|
|
10328
|
-
S3FileSystem.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, location_name: "S3Uri"))
|
|
10330
|
+
S3FileSystem.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, required: true, location_name: "S3Uri"))
|
|
10329
10331
|
S3FileSystem.struct_class = Types::S3FileSystem
|
|
10330
10332
|
|
|
10331
10333
|
S3FileSystemConfig.add_member(:mount_path, Shapes::ShapeRef.new(shape: String1024, location_name: "MountPath"))
|
|
10332
|
-
S3FileSystemConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, location_name: "S3Uri"))
|
|
10334
|
+
S3FileSystemConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3SchemaUri, required: true, location_name: "S3Uri"))
|
|
10333
10335
|
S3FileSystemConfig.struct_class = Types::S3FileSystemConfig
|
|
10334
10336
|
|
|
10335
10337
|
S3ModelDataSource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3ModelUri, required: true, location_name: "S3Uri"))
|
|
@@ -4717,10 +4717,46 @@ module Aws::SageMaker
|
|
|
4717
4717
|
# `/opt/sagemaker`.
|
|
4718
4718
|
# @return [Integer]
|
|
4719
4719
|
#
|
|
4720
|
+
# @!attribute [rw] volume_kms_key_id
|
|
4721
|
+
# The ID of a KMS key to encrypt the Amazon EBS volume.
|
|
4722
|
+
# @return [String]
|
|
4723
|
+
#
|
|
4724
|
+
# @!attribute [rw] root_volume
|
|
4725
|
+
# Specifies whether the configuration is for the cluster's root or
|
|
4726
|
+
# secondary Amazon EBS volume. You can specify two
|
|
4727
|
+
# `ClusterEbsVolumeConfig` fields to configure both the root and
|
|
4728
|
+
# secondary volumes. Set the value to `True` if you'd like to provide
|
|
4729
|
+
# your own customer managed Amazon Web Services KMS key to encrypt the
|
|
4730
|
+
# root volume. When `True`:
|
|
4731
|
+
#
|
|
4732
|
+
# * The configuration is applied to the root volume.
|
|
4733
|
+
#
|
|
4734
|
+
# * You can't specify the `VolumeSizeInGB` field. The size of the
|
|
4735
|
+
# root volume is determined for you.
|
|
4736
|
+
#
|
|
4737
|
+
# * You must specify a KMS key ID for `VolumeKmsKeyId` to encrypt the
|
|
4738
|
+
# root volume with your own KMS key instead of an Amazon Web
|
|
4739
|
+
# Services owned KMS key.
|
|
4740
|
+
#
|
|
4741
|
+
# Otherwise, by default, the value is `False`, and the following
|
|
4742
|
+
# applies:
|
|
4743
|
+
#
|
|
4744
|
+
# * The configuration is applied to the secondary volume, while the
|
|
4745
|
+
# root volume is encrypted with an Amazon Web Services owned key.
|
|
4746
|
+
#
|
|
4747
|
+
# * You must specify the `VolumeSizeInGB` field.
|
|
4748
|
+
#
|
|
4749
|
+
# * You can optionally specify the `VolumeKmsKeyId` to encrypt the
|
|
4750
|
+
# secondary volume with your own KMS key instead of an Amazon Web
|
|
4751
|
+
# Services owned KMS key.
|
|
4752
|
+
# @return [Boolean]
|
|
4753
|
+
#
|
|
4720
4754
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterEbsVolumeConfig AWS API Documentation
|
|
4721
4755
|
#
|
|
4722
4756
|
class ClusterEbsVolumeConfig < Struct.new(
|
|
4723
|
-
:volume_size_in_gb
|
|
4757
|
+
:volume_size_in_gb,
|
|
4758
|
+
:volume_kms_key_id,
|
|
4759
|
+
:root_volume)
|
|
4724
4760
|
SENSITIVE = []
|
|
4725
4761
|
include Aws::Structure
|
|
4726
4762
|
end
|