aws-sdk-sagemaker 1.230.0 → 1.231.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +39 -25
- data/lib/aws-sdk-sagemaker/client_api.rb +5 -0
- data/lib/aws-sdk-sagemaker/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-sagemaker/types.rb +81 -51
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +12 -0
- data/sig/types.rbs +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 30a49fba9826204b8eb44da1ebb94f78628f9b096a7ec808e5fb7f28dcb413bc
|
|
4
|
+
data.tar.gz: 488cd1a282916d2872c42b9f06fa9e9906d6a36c6e4fc7e2098e6b0ee2f7d364
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29b2726b4c50ab7fa73e78a1ef46d46dbebb2da12a6f78c56e4021d2ee0b4d7b60eee7d8bc4d24387176f941b02ec8ab6568efe9d1c63fcee8fab7fc573d50d4
|
|
7
|
+
data.tar.gz: a383bbdca5201f74d6cca225064a859f94abaed9537939d691aabf4cd26a34e65c29866e8da7af5289d818857a1fe0679ef6915b2ef4472d64eca8807763c964
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.231.0
|
|
@@ -1081,8 +1081,8 @@ module Aws::SageMaker
|
|
|
1081
1081
|
|
|
1082
1082
|
# Creates a configuration for running a SageMaker image as a
|
|
1083
1083
|
# KernelGateway app. The configuration specifies the Amazon Elastic File
|
|
1084
|
-
# System
|
|
1085
|
-
#
|
|
1084
|
+
# System storage volume on the image, and a list of the kernels in the
|
|
1085
|
+
# image.
|
|
1086
1086
|
#
|
|
1087
1087
|
# @option params [required, String] :app_image_config_name
|
|
1088
1088
|
# The name of the AppImageConfig. Must be unique to your account.
|
|
@@ -1286,8 +1286,8 @@ module Aws::SageMaker
|
|
|
1286
1286
|
#
|
|
1287
1287
|
# @option params [String] :problem_type
|
|
1288
1288
|
# Defines the type of supervised learning problem available for the
|
|
1289
|
-
# candidates. For more information, see [
|
|
1290
|
-
#
|
|
1289
|
+
# candidates. For more information, see [ SageMaker Autopilot problem
|
|
1290
|
+
# types][1].
|
|
1291
1291
|
#
|
|
1292
1292
|
#
|
|
1293
1293
|
#
|
|
@@ -2515,6 +2515,9 @@ module Aws::SageMaker
|
|
|
2515
2515
|
# kendra_settings: {
|
|
2516
2516
|
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
2517
2517
|
# },
|
|
2518
|
+
# generative_ai_settings: {
|
|
2519
|
+
# amazon_bedrock_role_arn: "RoleArn",
|
|
2520
|
+
# },
|
|
2518
2521
|
# },
|
|
2519
2522
|
# code_editor_app_settings: {
|
|
2520
2523
|
# default_resource_spec: {
|
|
@@ -4356,8 +4359,8 @@ module Aws::SageMaker
|
|
|
4356
4359
|
|
|
4357
4360
|
# Creates a custom SageMaker image. A SageMaker image is a set of image
|
|
4358
4361
|
# versions. Each image version represents a container image stored in
|
|
4359
|
-
# Amazon
|
|
4360
|
-
#
|
|
4362
|
+
# Amazon ECR. For more information, see [Bring your own SageMaker
|
|
4363
|
+
# image][1].
|
|
4361
4364
|
#
|
|
4362
4365
|
#
|
|
4363
4366
|
#
|
|
@@ -4413,13 +4416,13 @@ module Aws::SageMaker
|
|
|
4413
4416
|
end
|
|
4414
4417
|
|
|
4415
4418
|
# Creates a version of the SageMaker image specified by `ImageName`. The
|
|
4416
|
-
# version represents the Amazon
|
|
4417
|
-
#
|
|
4419
|
+
# version represents the Amazon ECR container image specified by
|
|
4420
|
+
# `BaseImage`.
|
|
4418
4421
|
#
|
|
4419
4422
|
# @option params [required, String] :base_image
|
|
4420
4423
|
# The registry path of the container image to use as the starting point
|
|
4421
|
-
# for this version. The path is an Amazon
|
|
4422
|
-
#
|
|
4424
|
+
# for this version. The path is an Amazon ECR URI in the following
|
|
4425
|
+
# format:
|
|
4423
4426
|
#
|
|
4424
4427
|
# `<acct-id>.dkr.ecr.<region>.amazonaws.com/<repo-name[:tag] or
|
|
4425
4428
|
# [@digest]>`
|
|
@@ -6911,9 +6914,9 @@ module Aws::SageMaker
|
|
|
6911
6914
|
# The value of the `$PATH` environment variable that is available to
|
|
6912
6915
|
# both scripts is `/sbin:bin:/usr/sbin:/usr/bin`.
|
|
6913
6916
|
#
|
|
6914
|
-
# View CloudWatch Logs for notebook instance lifecycle
|
|
6915
|
-
# log group `/aws/sagemaker/NotebookInstances` in log
|
|
6916
|
-
# `[notebook-instance-name]/[LifecycleConfigHook]`.
|
|
6917
|
+
# View Amazon CloudWatch Logs for notebook instance lifecycle
|
|
6918
|
+
# configurations in log group `/aws/sagemaker/NotebookInstances` in log
|
|
6919
|
+
# stream `[notebook-instance-name]/[LifecycleConfigHook]`.
|
|
6917
6920
|
#
|
|
6918
6921
|
# Lifecycle configuration scripts cannot run for longer than 5 minutes.
|
|
6919
6922
|
# If a script runs for longer than 5 minutes, it fails and the notebook
|
|
@@ -7059,8 +7062,8 @@ module Aws::SageMaker
|
|
|
7059
7062
|
# Creates a URL for a specified UserProfile in a Domain. When accessed
|
|
7060
7063
|
# in a web browser, the user will be automatically signed in to the
|
|
7061
7064
|
# domain, and granted access to all of the Apps and files associated
|
|
7062
|
-
# with the Domain's Amazon Elastic File System
|
|
7063
|
-
#
|
|
7065
|
+
# with the Domain's Amazon Elastic File System volume. This operation
|
|
7066
|
+
# can only be called when the authentication mode equals IAM.
|
|
7064
7067
|
#
|
|
7065
7068
|
# The IAM role or user passed to this API defines the permissions to
|
|
7066
7069
|
# access the app. Once the presigned URL is created, no additional
|
|
@@ -7475,10 +7478,10 @@ module Aws::SageMaker
|
|
|
7475
7478
|
req.send_request(options)
|
|
7476
7479
|
end
|
|
7477
7480
|
|
|
7478
|
-
# Creates a space used for real time collaboration in a
|
|
7481
|
+
# Creates a space used for real time collaboration in a domain.
|
|
7479
7482
|
#
|
|
7480
7483
|
# @option params [required, String] :domain_id
|
|
7481
|
-
# The ID of the associated
|
|
7484
|
+
# The ID of the associated domain.
|
|
7482
7485
|
#
|
|
7483
7486
|
# @option params [required, String] :space_name
|
|
7484
7487
|
# The name of the space.
|
|
@@ -8578,8 +8581,8 @@ module Aws::SageMaker
|
|
|
8578
8581
|
# administrator invites a person by email or imports them from IAM
|
|
8579
8582
|
# Identity Center, a user profile is automatically created. A user
|
|
8580
8583
|
# profile is the primary holder of settings for an individual user and
|
|
8581
|
-
# has a reference to the user's private Amazon Elastic File System
|
|
8582
|
-
#
|
|
8584
|
+
# has a reference to the user's private Amazon Elastic File System home
|
|
8585
|
+
# directory.
|
|
8583
8586
|
#
|
|
8584
8587
|
# @option params [required, String] :domain_id
|
|
8585
8588
|
# The ID of the associated Domain.
|
|
@@ -8723,6 +8726,9 @@ module Aws::SageMaker
|
|
|
8723
8726
|
# kendra_settings: {
|
|
8724
8727
|
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
8725
8728
|
# },
|
|
8729
|
+
# generative_ai_settings: {
|
|
8730
|
+
# amazon_bedrock_role_arn: "RoleArn",
|
|
8731
|
+
# },
|
|
8726
8732
|
# },
|
|
8727
8733
|
# code_editor_app_settings: {
|
|
8728
8734
|
# default_resource_spec: {
|
|
@@ -10151,7 +10157,7 @@ module Aws::SageMaker
|
|
|
10151
10157
|
# Used to delete a space.
|
|
10152
10158
|
#
|
|
10153
10159
|
# @option params [required, String] :domain_id
|
|
10154
|
-
# The ID of the associated
|
|
10160
|
+
# The ID of the associated domain.
|
|
10155
10161
|
#
|
|
10156
10162
|
# @option params [required, String] :space_name
|
|
10157
10163
|
# The name of the space.
|
|
@@ -11749,6 +11755,7 @@ module Aws::SageMaker
|
|
|
11749
11755
|
# resp.default_user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].secret_arn #=> String
|
|
11750
11756
|
# resp.default_user_settings.canvas_app_settings.direct_deploy_settings.status #=> String, one of "ENABLED", "DISABLED"
|
|
11751
11757
|
# resp.default_user_settings.canvas_app_settings.kendra_settings.status #=> String, one of "ENABLED", "DISABLED"
|
|
11758
|
+
# resp.default_user_settings.canvas_app_settings.generative_ai_settings.amazon_bedrock_role_arn #=> String
|
|
11752
11759
|
# resp.default_user_settings.code_editor_app_settings.default_resource_spec.sage_maker_image_arn #=> String
|
|
11753
11760
|
# resp.default_user_settings.code_editor_app_settings.default_resource_spec.sage_maker_image_version_arn #=> String
|
|
11754
11761
|
# resp.default_user_settings.code_editor_app_settings.default_resource_spec.sage_maker_image_version_alias #=> String
|
|
@@ -14886,7 +14893,7 @@ module Aws::SageMaker
|
|
|
14886
14893
|
# Describes the space.
|
|
14887
14894
|
#
|
|
14888
14895
|
# @option params [required, String] :domain_id
|
|
14889
|
-
# The ID of the associated
|
|
14896
|
+
# The ID of the associated domain.
|
|
14890
14897
|
#
|
|
14891
14898
|
# @option params [required, String] :space_name
|
|
14892
14899
|
# The name of the space.
|
|
@@ -15609,6 +15616,7 @@ module Aws::SageMaker
|
|
|
15609
15616
|
# resp.user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].secret_arn #=> String
|
|
15610
15617
|
# resp.user_settings.canvas_app_settings.direct_deploy_settings.status #=> String, one of "ENABLED", "DISABLED"
|
|
15611
15618
|
# resp.user_settings.canvas_app_settings.kendra_settings.status #=> String, one of "ENABLED", "DISABLED"
|
|
15619
|
+
# resp.user_settings.canvas_app_settings.generative_ai_settings.amazon_bedrock_role_arn #=> String
|
|
15612
15620
|
# resp.user_settings.code_editor_app_settings.default_resource_spec.sage_maker_image_arn #=> String
|
|
15613
15621
|
# resp.user_settings.code_editor_app_settings.default_resource_spec.sage_maker_image_version_arn #=> String
|
|
15614
15622
|
# resp.user_settings.code_editor_app_settings.default_resource_spec.sage_maker_image_version_alias #=> String
|
|
@@ -21021,7 +21029,7 @@ module Aws::SageMaker
|
|
|
21021
21029
|
# `CreationTime`.
|
|
21022
21030
|
#
|
|
21023
21031
|
# @option params [String] :domain_id_equals
|
|
21024
|
-
# A parameter to search for the
|
|
21032
|
+
# A parameter to search for the domain ID.
|
|
21025
21033
|
#
|
|
21026
21034
|
# @option params [String] :space_name_contains
|
|
21027
21035
|
# A parameter by which to filter the results.
|
|
@@ -23482,7 +23490,7 @@ module Aws::SageMaker
|
|
|
23482
23490
|
# must be set to `Service`.
|
|
23483
23491
|
#
|
|
23484
23492
|
# @option params [Types::DefaultSpaceSettings] :default_space_settings
|
|
23485
|
-
# The default settings used to create a space within the
|
|
23493
|
+
# The default settings used to create a space within the domain.
|
|
23486
23494
|
#
|
|
23487
23495
|
# @option params [Array<String>] :subnet_ids
|
|
23488
23496
|
# The VPC subnets that Studio uses for communication.
|
|
@@ -23610,6 +23618,9 @@ module Aws::SageMaker
|
|
|
23610
23618
|
# kendra_settings: {
|
|
23611
23619
|
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
23612
23620
|
# },
|
|
23621
|
+
# generative_ai_settings: {
|
|
23622
|
+
# amazon_bedrock_role_arn: "RoleArn",
|
|
23623
|
+
# },
|
|
23613
23624
|
# },
|
|
23614
23625
|
# code_editor_app_settings: {
|
|
23615
23626
|
# default_resource_spec: {
|
|
@@ -25185,7 +25196,7 @@ module Aws::SageMaker
|
|
|
25185
25196
|
# Updates the settings of a space.
|
|
25186
25197
|
#
|
|
25187
25198
|
# @option params [required, String] :domain_id
|
|
25188
|
-
# The ID of the associated
|
|
25199
|
+
# The ID of the associated domain.
|
|
25189
25200
|
#
|
|
25190
25201
|
# @option params [required, String] :space_name
|
|
25191
25202
|
# The name of the space.
|
|
@@ -25617,6 +25628,9 @@ module Aws::SageMaker
|
|
|
25617
25628
|
# kendra_settings: {
|
|
25618
25629
|
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
25619
25630
|
# },
|
|
25631
|
+
# generative_ai_settings: {
|
|
25632
|
+
# amazon_bedrock_role_arn: "RoleArn",
|
|
25633
|
+
# },
|
|
25620
25634
|
# },
|
|
25621
25635
|
# code_editor_app_settings: {
|
|
25622
25636
|
# default_resource_spec: {
|
|
@@ -25926,7 +25940,7 @@ module Aws::SageMaker
|
|
|
25926
25940
|
params: params,
|
|
25927
25941
|
config: config)
|
|
25928
25942
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
25929
|
-
context[:gem_version] = '1.
|
|
25943
|
+
context[:gem_version] = '1.231.0'
|
|
25930
25944
|
Seahorse::Client::Request.new(handlers, context)
|
|
25931
25945
|
end
|
|
25932
25946
|
|
|
@@ -897,6 +897,7 @@ module Aws::SageMaker
|
|
|
897
897
|
Framework = Shapes::StringShape.new(name: 'Framework')
|
|
898
898
|
FrameworkVersion = Shapes::StringShape.new(name: 'FrameworkVersion')
|
|
899
899
|
GenerateCandidateDefinitionsOnly = Shapes::BooleanShape.new(name: 'GenerateCandidateDefinitionsOnly')
|
|
900
|
+
GenerativeAiSettings = Shapes::StructureShape.new(name: 'GenerativeAiSettings')
|
|
900
901
|
GetDeviceFleetReportRequest = Shapes::StructureShape.new(name: 'GetDeviceFleetReportRequest')
|
|
901
902
|
GetDeviceFleetReportResponse = Shapes::StructureShape.new(name: 'GetDeviceFleetReportResponse')
|
|
902
903
|
GetLineageGroupPolicyRequest = Shapes::StructureShape.new(name: 'GetLineageGroupPolicyRequest')
|
|
@@ -2703,6 +2704,7 @@ module Aws::SageMaker
|
|
|
2703
2704
|
CanvasAppSettings.add_member(:identity_provider_o_auth_settings, Shapes::ShapeRef.new(shape: IdentityProviderOAuthSettings, location_name: "IdentityProviderOAuthSettings"))
|
|
2704
2705
|
CanvasAppSettings.add_member(:direct_deploy_settings, Shapes::ShapeRef.new(shape: DirectDeploySettings, location_name: "DirectDeploySettings"))
|
|
2705
2706
|
CanvasAppSettings.add_member(:kendra_settings, Shapes::ShapeRef.new(shape: KendraSettings, location_name: "KendraSettings"))
|
|
2707
|
+
CanvasAppSettings.add_member(:generative_ai_settings, Shapes::ShapeRef.new(shape: GenerativeAiSettings, location_name: "GenerativeAiSettings"))
|
|
2706
2708
|
CanvasAppSettings.struct_class = Types::CanvasAppSettings
|
|
2707
2709
|
|
|
2708
2710
|
CapacitySize.add_member(:type, Shapes::ShapeRef.new(shape: CapacitySizeType, required: true, location_name: "Type"))
|
|
@@ -5627,6 +5629,9 @@ module Aws::SageMaker
|
|
|
5627
5629
|
|
|
5628
5630
|
ForecastQuantiles.member = Shapes::ShapeRef.new(shape: ForecastQuantile)
|
|
5629
5631
|
|
|
5632
|
+
GenerativeAiSettings.add_member(:amazon_bedrock_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "AmazonBedrockRoleArn"))
|
|
5633
|
+
GenerativeAiSettings.struct_class = Types::GenerativeAiSettings
|
|
5634
|
+
|
|
5630
5635
|
GetDeviceFleetReportRequest.add_member(:device_fleet_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "DeviceFleetName"))
|
|
5631
5636
|
GetDeviceFleetReportRequest.struct_class = Types::GetDeviceFleetReportRequest
|
|
5632
5637
|
|
|
@@ -37,7 +37,7 @@ module Aws::SageMaker
|
|
|
37
37
|
return Aws::Endpoints::Endpoint.new(url: "https://api-fips.sagemaker.#{region}.amazonaws.com", headers: {}, properties: {})
|
|
38
38
|
end
|
|
39
39
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
|
40
|
-
return Aws::Endpoints::Endpoint.new(url: "https://api
|
|
40
|
+
return Aws::Endpoints::Endpoint.new(url: "https://api.sagemaker.#{region}.amazonaws.com", headers: {}, properties: {})
|
|
41
41
|
end
|
|
42
42
|
return Aws::Endpoints::Endpoint.new(url: "https://api.sagemaker-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
43
43
|
end
|
|
@@ -1311,7 +1311,7 @@ module Aws::SageMaker
|
|
|
1311
1311
|
# app.
|
|
1312
1312
|
#
|
|
1313
1313
|
# @!attribute [rw] app_image_config_arn
|
|
1314
|
-
# The
|
|
1314
|
+
# The ARN of the AppImageConfig.
|
|
1315
1315
|
# @return [String]
|
|
1316
1316
|
#
|
|
1317
1317
|
# @!attribute [rw] app_image_config_name
|
|
@@ -2450,7 +2450,7 @@ module Aws::SageMaker
|
|
|
2450
2450
|
# The output data configuration.
|
|
2451
2451
|
#
|
|
2452
2452
|
# @!attribute [rw] kms_key_id
|
|
2453
|
-
# The Key Management Service
|
|
2453
|
+
# The Key Management Service encryption key ID.
|
|
2454
2454
|
# @return [String]
|
|
2455
2455
|
#
|
|
2456
2456
|
# @!attribute [rw] s3_output_path
|
|
@@ -3234,6 +3234,10 @@ module Aws::SageMaker
|
|
|
3234
3234
|
# The settings for document querying.
|
|
3235
3235
|
# @return [Types::KendraSettings]
|
|
3236
3236
|
#
|
|
3237
|
+
# @!attribute [rw] generative_ai_settings
|
|
3238
|
+
# The generative AI settings for the SageMaker Canvas application.
|
|
3239
|
+
# @return [Types::GenerativeAiSettings]
|
|
3240
|
+
#
|
|
3237
3241
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CanvasAppSettings AWS API Documentation
|
|
3238
3242
|
#
|
|
3239
3243
|
class CanvasAppSettings < Struct.new(
|
|
@@ -3242,7 +3246,8 @@ module Aws::SageMaker
|
|
|
3242
3246
|
:workspace_settings,
|
|
3243
3247
|
:identity_provider_o_auth_settings,
|
|
3244
3248
|
:direct_deploy_settings,
|
|
3245
|
-
:kendra_settings
|
|
3249
|
+
:kendra_settings,
|
|
3250
|
+
:generative_ai_settings)
|
|
3246
3251
|
SENSITIVE = []
|
|
3247
3252
|
include Aws::Structure
|
|
3248
3253
|
end
|
|
@@ -4992,7 +4997,7 @@ module Aws::SageMaker
|
|
|
4992
4997
|
end
|
|
4993
4998
|
|
|
4994
4999
|
# @!attribute [rw] app_image_config_arn
|
|
4995
|
-
# The
|
|
5000
|
+
# The ARN of the AppImageConfig.
|
|
4996
5001
|
# @return [String]
|
|
4997
5002
|
#
|
|
4998
5003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppImageConfigResponse AWS API Documentation
|
|
@@ -5148,8 +5153,8 @@ module Aws::SageMaker
|
|
|
5148
5153
|
#
|
|
5149
5154
|
# @!attribute [rw] problem_type
|
|
5150
5155
|
# Defines the type of supervised learning problem available for the
|
|
5151
|
-
# candidates. For more information, see [
|
|
5152
|
-
#
|
|
5156
|
+
# candidates. For more information, see [ SageMaker Autopilot problem
|
|
5157
|
+
# types][1].
|
|
5153
5158
|
#
|
|
5154
5159
|
#
|
|
5155
5160
|
#
|
|
@@ -6744,8 +6749,8 @@ module Aws::SageMaker
|
|
|
6744
6749
|
|
|
6745
6750
|
# @!attribute [rw] base_image
|
|
6746
6751
|
# The registry path of the container image to use as the starting
|
|
6747
|
-
# point for this version. The path is an Amazon
|
|
6748
|
-
#
|
|
6752
|
+
# point for this version. The path is an Amazon ECR URI in the
|
|
6753
|
+
# following format:
|
|
6749
6754
|
#
|
|
6750
6755
|
# `<acct-id>.dkr.ecr.<region>.amazonaws.com/<repo-name[:tag] or
|
|
6751
6756
|
# [@digest]>`
|
|
@@ -8624,7 +8629,7 @@ module Aws::SageMaker
|
|
|
8624
8629
|
end
|
|
8625
8630
|
|
|
8626
8631
|
# @!attribute [rw] domain_id
|
|
8627
|
-
# The ID of the associated
|
|
8632
|
+
# The ID of the associated domain.
|
|
8628
8633
|
# @return [String]
|
|
8629
8634
|
#
|
|
8630
8635
|
# @!attribute [rw] space_name
|
|
@@ -10176,15 +10181,15 @@ module Aws::SageMaker
|
|
|
10176
10181
|
include Aws::Structure
|
|
10177
10182
|
end
|
|
10178
10183
|
|
|
10179
|
-
# A collection of settings that apply to spaces created in the
|
|
10184
|
+
# A collection of settings that apply to spaces created in the domain.
|
|
10180
10185
|
#
|
|
10181
10186
|
# @!attribute [rw] execution_role
|
|
10182
10187
|
# The ARN of the execution role for the space.
|
|
10183
10188
|
# @return [String]
|
|
10184
10189
|
#
|
|
10185
10190
|
# @!attribute [rw] security_groups
|
|
10186
|
-
# The security group IDs for the Amazon
|
|
10187
|
-
#
|
|
10191
|
+
# The security group IDs for the Amazon VPC that the space uses for
|
|
10192
|
+
# communication.
|
|
10188
10193
|
# @return [Array<String>]
|
|
10189
10194
|
#
|
|
10190
10195
|
# @!attribute [rw] jupyter_server_app_settings
|
|
@@ -10920,7 +10925,7 @@ module Aws::SageMaker
|
|
|
10920
10925
|
end
|
|
10921
10926
|
|
|
10922
10927
|
# @!attribute [rw] domain_id
|
|
10923
|
-
# The ID of the associated
|
|
10928
|
+
# The ID of the associated domain.
|
|
10924
10929
|
# @return [String]
|
|
10925
10930
|
#
|
|
10926
10931
|
# @!attribute [rw] space_name
|
|
@@ -11447,7 +11452,7 @@ module Aws::SageMaker
|
|
|
11447
11452
|
end
|
|
11448
11453
|
|
|
11449
11454
|
# @!attribute [rw] app_image_config_arn
|
|
11450
|
-
# The
|
|
11455
|
+
# The ARN of the AppImageConfig.
|
|
11451
11456
|
# @return [String]
|
|
11452
11457
|
#
|
|
11453
11458
|
# @!attribute [rw] app_image_config_name
|
|
@@ -11694,9 +11699,9 @@ module Aws::SageMaker
|
|
|
11694
11699
|
# @return [Types::AutoMLOutputDataConfig]
|
|
11695
11700
|
#
|
|
11696
11701
|
# @!attribute [rw] role_arn
|
|
11697
|
-
# The
|
|
11698
|
-
#
|
|
11699
|
-
#
|
|
11702
|
+
# The ARN of the IAM role that has read permission to the input data
|
|
11703
|
+
# location and write permission to the output data location in Amazon
|
|
11704
|
+
# S3.
|
|
11700
11705
|
# @return [String]
|
|
11701
11706
|
#
|
|
11702
11707
|
# @!attribute [rw] auto_ml_job_objective
|
|
@@ -11832,9 +11837,9 @@ module Aws::SageMaker
|
|
|
11832
11837
|
# @return [Types::AutoMLOutputDataConfig]
|
|
11833
11838
|
#
|
|
11834
11839
|
# @!attribute [rw] role_arn
|
|
11835
|
-
# The ARN of the
|
|
11836
|
-
# permission to the
|
|
11837
|
-
#
|
|
11840
|
+
# The ARN of the IAM role that has read permission to the input data
|
|
11841
|
+
# location and write permission to the output data location in Amazon
|
|
11842
|
+
# S3.
|
|
11838
11843
|
# @return [String]
|
|
11839
11844
|
#
|
|
11840
11845
|
# @!attribute [rw] auto_ml_job_objective
|
|
@@ -16113,7 +16118,7 @@ module Aws::SageMaker
|
|
|
16113
16118
|
end
|
|
16114
16119
|
|
|
16115
16120
|
# @!attribute [rw] domain_id
|
|
16116
|
-
# The ID of the associated
|
|
16121
|
+
# The ID of the associated domain.
|
|
16117
16122
|
# @return [String]
|
|
16118
16123
|
#
|
|
16119
16124
|
# @!attribute [rw] space_name
|
|
@@ -16130,7 +16135,7 @@ module Aws::SageMaker
|
|
|
16130
16135
|
end
|
|
16131
16136
|
|
|
16132
16137
|
# @!attribute [rw] domain_id
|
|
16133
|
-
# The ID of the associated
|
|
16138
|
+
# The ID of the associated domain.
|
|
16134
16139
|
# @return [String]
|
|
16135
16140
|
#
|
|
16136
16141
|
# @!attribute [rw] space_arn
|
|
@@ -16142,8 +16147,7 @@ module Aws::SageMaker
|
|
|
16142
16147
|
# @return [String]
|
|
16143
16148
|
#
|
|
16144
16149
|
# @!attribute [rw] home_efs_file_system_uid
|
|
16145
|
-
# The ID of the space's profile in the Amazon
|
|
16146
|
-
# volume.
|
|
16150
|
+
# The ID of the space's profile in the Amazon EFS volume.
|
|
16147
16151
|
# @return [String]
|
|
16148
16152
|
#
|
|
16149
16153
|
# @!attribute [rw] status
|
|
@@ -17098,7 +17102,7 @@ module Aws::SageMaker
|
|
|
17098
17102
|
#
|
|
17099
17103
|
# @!attribute [rw] home_efs_file_system_uid
|
|
17100
17104
|
# The ID of the user's profile in the Amazon Elastic File System
|
|
17101
|
-
#
|
|
17105
|
+
# volume.
|
|
17102
17106
|
# @return [String]
|
|
17103
17107
|
#
|
|
17104
17108
|
# @!attribute [rw] status
|
|
@@ -19292,8 +19296,8 @@ module Aws::SageMaker
|
|
|
19292
19296
|
include Aws::Structure
|
|
19293
19297
|
end
|
|
19294
19298
|
|
|
19295
|
-
# The Amazon Elastic File System
|
|
19296
|
-
#
|
|
19299
|
+
# The Amazon Elastic File System storage configuration for a SageMaker
|
|
19300
|
+
# image.
|
|
19297
19301
|
#
|
|
19298
19302
|
# @!attribute [rw] mount_path
|
|
19299
19303
|
# The path within the image to mount the user's EFS home directory.
|
|
@@ -19661,6 +19665,32 @@ module Aws::SageMaker
|
|
|
19661
19665
|
include Aws::Structure
|
|
19662
19666
|
end
|
|
19663
19667
|
|
|
19668
|
+
# The generative AI settings for the SageMaker Canvas application.
|
|
19669
|
+
#
|
|
19670
|
+
# Configure these settings for Canvas users starting chats with
|
|
19671
|
+
# generative AI foundation models. For more information, see [ Use
|
|
19672
|
+
# generative AI with foundation models][1].
|
|
19673
|
+
#
|
|
19674
|
+
#
|
|
19675
|
+
#
|
|
19676
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/canvas-fm-chat.html
|
|
19677
|
+
#
|
|
19678
|
+
# @!attribute [rw] amazon_bedrock_role_arn
|
|
19679
|
+
# The ARN of an Amazon Web Services IAM role that allows fine-tuning
|
|
19680
|
+
# of large language models (LLMs) in Amazon Bedrock. The IAM role
|
|
19681
|
+
# should have Amazon S3 read and write permissions, as well as a trust
|
|
19682
|
+
# relationship that establishes `bedrock.amazonaws.com` as a service
|
|
19683
|
+
# principal.
|
|
19684
|
+
# @return [String]
|
|
19685
|
+
#
|
|
19686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GenerativeAiSettings AWS API Documentation
|
|
19687
|
+
#
|
|
19688
|
+
class GenerativeAiSettings < Struct.new(
|
|
19689
|
+
:amazon_bedrock_role_arn)
|
|
19690
|
+
SENSITIVE = []
|
|
19691
|
+
include Aws::Structure
|
|
19692
|
+
end
|
|
19693
|
+
|
|
19664
19694
|
# @!attribute [rw] device_fleet_name
|
|
19665
19695
|
# The name of the fleet.
|
|
19666
19696
|
# @return [String]
|
|
@@ -22366,7 +22396,7 @@ module Aws::SageMaker
|
|
|
22366
22396
|
# a training job launched by a hyperparameter tuning job. Once a job
|
|
22367
22397
|
# reaches the `MaxResource` value, it is stopped. If a value for
|
|
22368
22398
|
# `MaxResource` is not provided, and `Hyperband` is selected as the
|
|
22369
|
-
# hyperparameter tuning strategy, `
|
|
22399
|
+
# hyperparameter tuning strategy, `HyperbandTraining` attempts to
|
|
22370
22400
|
# infer `MaxResource` from the following keys (if present) in
|
|
22371
22401
|
# [StaticsHyperParameters][1]:
|
|
22372
22402
|
#
|
|
@@ -22384,7 +22414,7 @@ module Aws::SageMaker
|
|
|
22384
22414
|
# `MaxResource`, it generates a validation error. The maximum value is
|
|
22385
22415
|
# 20,000 epochs. All metrics that correspond to an objective metric
|
|
22386
22416
|
# are used to derive [early stopping decisions][2]. For
|
|
22387
|
-
# [
|
|
22417
|
+
# [distributed][3] training jobs, ensure that duplicate metrics are
|
|
22388
22418
|
# not printed in the logs across the individual nodes in a training
|
|
22389
22419
|
# job. If multiple nodes are publishing duplicate or incorrect
|
|
22390
22420
|
# metrics, training jobs may make an incorrect stopping decision and
|
|
@@ -23703,8 +23733,8 @@ module Aws::SageMaker
|
|
|
23703
23733
|
# running as a JupyterLab app.
|
|
23704
23734
|
#
|
|
23705
23735
|
# @!attribute [rw] file_system_config
|
|
23706
|
-
# The Amazon Elastic File System
|
|
23707
|
-
#
|
|
23736
|
+
# The Amazon Elastic File System storage configuration for a SageMaker
|
|
23737
|
+
# image.
|
|
23708
23738
|
# @return [Types::FileSystemConfig]
|
|
23709
23739
|
#
|
|
23710
23740
|
# @!attribute [rw] container_config
|
|
@@ -23813,8 +23843,7 @@ module Aws::SageMaker
|
|
|
23813
23843
|
#
|
|
23814
23844
|
# <note markdown="1"> The Amazon SageMaker Studio UI does not use the default instance
|
|
23815
23845
|
# type value set here. The default instance type set here is used when
|
|
23816
|
-
# Apps are created using the
|
|
23817
|
-
# Interface or Amazon Web Services CloudFormation and the instance
|
|
23846
|
+
# Apps are created using the CLI or CloudFormation and the instance
|
|
23818
23847
|
# type parameter value is not passed.
|
|
23819
23848
|
#
|
|
23820
23849
|
# </note>
|
|
@@ -23853,8 +23882,8 @@ module Aws::SageMaker
|
|
|
23853
23882
|
# @return [Array<Types::KernelSpec>]
|
|
23854
23883
|
#
|
|
23855
23884
|
# @!attribute [rw] file_system_config
|
|
23856
|
-
# The Amazon Elastic File System
|
|
23857
|
-
#
|
|
23885
|
+
# The Amazon Elastic File System storage configuration for a SageMaker
|
|
23886
|
+
# image.
|
|
23858
23887
|
# @return [Types::FileSystemConfig]
|
|
23859
23888
|
#
|
|
23860
23889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/KernelGatewayImageConfig AWS API Documentation
|
|
@@ -29103,7 +29132,7 @@ module Aws::SageMaker
|
|
|
29103
29132
|
# @return [String]
|
|
29104
29133
|
#
|
|
29105
29134
|
# @!attribute [rw] domain_id_equals
|
|
29106
|
-
# A parameter to search for the
|
|
29135
|
+
# A parameter to search for the domain ID.
|
|
29107
29136
|
# @return [String]
|
|
29108
29137
|
#
|
|
29109
29138
|
# @!attribute [rw] space_name_contains
|
|
@@ -32976,9 +33005,9 @@ module Aws::SageMaker
|
|
|
32976
33005
|
# The value of the `$PATH` environment variable that is available to
|
|
32977
33006
|
# both scripts is `/sbin:bin:/usr/sbin:/usr/bin`.
|
|
32978
33007
|
#
|
|
32979
|
-
# View CloudWatch Logs for notebook instance lifecycle
|
|
32980
|
-
# log group `/aws/sagemaker/NotebookInstances` in log
|
|
32981
|
-
# `[notebook-instance-name]/[LifecycleConfigHook]`.
|
|
33008
|
+
# View Amazon CloudWatch Logs for notebook instance lifecycle
|
|
33009
|
+
# configurations in log group `/aws/sagemaker/NotebookInstances` in log
|
|
33010
|
+
# stream `[notebook-instance-name]/[LifecycleConfigHook]`.
|
|
32982
33011
|
#
|
|
32983
33012
|
# Lifecycle configuration scripts cannot run for longer than 5 minutes.
|
|
32984
33013
|
# If a script runs for longer than 5 minutes, it fails and the notebook
|
|
@@ -37607,13 +37636,13 @@ module Aws::SageMaker
|
|
|
37607
37636
|
end
|
|
37608
37637
|
|
|
37609
37638
|
# The retention policy for data stored on an Amazon Elastic File System
|
|
37610
|
-
#
|
|
37639
|
+
# volume.
|
|
37611
37640
|
#
|
|
37612
37641
|
# @!attribute [rw] home_efs_file_system
|
|
37613
37642
|
# The default is `Retain`, which specifies to keep the data stored on
|
|
37614
|
-
# the EFS volume.
|
|
37643
|
+
# the Amazon EFS volume.
|
|
37615
37644
|
#
|
|
37616
|
-
# Specify `Delete` to delete the data stored on the EFS volume.
|
|
37645
|
+
# Specify `Delete` to delete the data stored on the Amazon EFS volume.
|
|
37617
37646
|
# @return [String]
|
|
37618
37647
|
#
|
|
37619
37648
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RetentionPolicy AWS API Documentation
|
|
@@ -38962,7 +38991,7 @@ module Aws::SageMaker
|
|
|
38962
38991
|
# The space's details.
|
|
38963
38992
|
#
|
|
38964
38993
|
# @!attribute [rw] domain_id
|
|
38965
|
-
# The ID of the associated
|
|
38994
|
+
# The ID of the associated domain.
|
|
38966
38995
|
# @return [String]
|
|
38967
38996
|
#
|
|
38968
38997
|
# @!attribute [rw] space_name
|
|
@@ -39784,7 +39813,7 @@ module Aws::SageMaker
|
|
|
39784
39813
|
#
|
|
39785
39814
|
# @!attribute [rw] problem_type
|
|
39786
39815
|
# The type of supervised learning problem available for the model
|
|
39787
|
-
# candidates of the AutoML job V2. For more information, see [
|
|
39816
|
+
# candidates of the AutoML job V2. For more information, see [
|
|
39788
39817
|
# SageMaker Autopilot problem types][1].
|
|
39789
39818
|
#
|
|
39790
39819
|
# <note markdown="1"> You must either specify the type of supervised learning problem in
|
|
@@ -39845,8 +39874,8 @@ module Aws::SageMaker
|
|
|
39845
39874
|
# @!attribute [rw] problem_type
|
|
39846
39875
|
# The type of supervised learning problem available for the model
|
|
39847
39876
|
# candidates of the AutoML job V2 (Binary Classification, Multiclass
|
|
39848
|
-
# Classification, Regression). For more information, see [
|
|
39849
|
-
#
|
|
39877
|
+
# Classification, Regression). For more information, see [ SageMaker
|
|
39878
|
+
# Autopilot problem types][1].
|
|
39850
39879
|
#
|
|
39851
39880
|
#
|
|
39852
39881
|
#
|
|
@@ -42711,7 +42740,7 @@ module Aws::SageMaker
|
|
|
42711
42740
|
end
|
|
42712
42741
|
|
|
42713
42742
|
# @!attribute [rw] app_image_config_arn
|
|
42714
|
-
# The
|
|
42743
|
+
# The ARN for the AppImageConfig.
|
|
42715
42744
|
# @return [String]
|
|
42716
42745
|
#
|
|
42717
42746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateAppImageConfigResponse AWS API Documentation
|
|
@@ -42942,7 +42971,7 @@ module Aws::SageMaker
|
|
|
42942
42971
|
# @return [String]
|
|
42943
42972
|
#
|
|
42944
42973
|
# @!attribute [rw] default_space_settings
|
|
42945
|
-
# The default settings used to create a space within the
|
|
42974
|
+
# The default settings used to create a space within the domain.
|
|
42946
42975
|
# @return [Types::DefaultSpaceSettings]
|
|
42947
42976
|
#
|
|
42948
42977
|
# @!attribute [rw] subnet_ids
|
|
@@ -44054,7 +44083,7 @@ module Aws::SageMaker
|
|
|
44054
44083
|
end
|
|
44055
44084
|
|
|
44056
44085
|
# @!attribute [rw] domain_id
|
|
44057
|
-
# The ID of the associated
|
|
44086
|
+
# The ID of the associated domain.
|
|
44058
44087
|
# @return [String]
|
|
44059
44088
|
#
|
|
44060
44089
|
# @!attribute [rw] space_name
|
|
@@ -44695,8 +44724,9 @@ module Aws::SageMaker
|
|
|
44695
44724
|
# The list of key-value pairs that you specify for your resources.
|
|
44696
44725
|
#
|
|
44697
44726
|
# @!attribute [rw] key
|
|
44698
|
-
# The key
|
|
44699
|
-
# search results.
|
|
44727
|
+
# The key that specifies the tag that you're using to filter the
|
|
44728
|
+
# search results. It must be in the following format:
|
|
44729
|
+
# `Tags.<key>/EqualsIfExists`.
|
|
44700
44730
|
# @return [String]
|
|
44701
44731
|
#
|
|
44702
44732
|
# @!attribute [rw] value
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -998,6 +998,9 @@ module Aws
|
|
|
998
998
|
}?,
|
|
999
999
|
kendra_settings: {
|
|
1000
1000
|
status: ("ENABLED" | "DISABLED")?
|
|
1001
|
+
}?,
|
|
1002
|
+
generative_ai_settings: {
|
|
1003
|
+
amazon_bedrock_role_arn: ::String?
|
|
1001
1004
|
}?
|
|
1002
1005
|
}?,
|
|
1003
1006
|
code_editor_app_settings: {
|
|
@@ -3775,6 +3778,9 @@ module Aws
|
|
|
3775
3778
|
}?,
|
|
3776
3779
|
kendra_settings: {
|
|
3777
3780
|
status: ("ENABLED" | "DISABLED")?
|
|
3781
|
+
}?,
|
|
3782
|
+
generative_ai_settings: {
|
|
3783
|
+
amazon_bedrock_role_arn: ::String?
|
|
3778
3784
|
}?
|
|
3779
3785
|
}?,
|
|
3780
3786
|
code_editor_app_settings: {
|
|
@@ -7673,6 +7679,9 @@ module Aws
|
|
|
7673
7679
|
}?,
|
|
7674
7680
|
kendra_settings: {
|
|
7675
7681
|
status: ("ENABLED" | "DISABLED")?
|
|
7682
|
+
}?,
|
|
7683
|
+
generative_ai_settings: {
|
|
7684
|
+
amazon_bedrock_role_arn: ::String?
|
|
7676
7685
|
}?
|
|
7677
7686
|
}?,
|
|
7678
7687
|
code_editor_app_settings: {
|
|
@@ -8610,6 +8619,9 @@ module Aws
|
|
|
8610
8619
|
}?,
|
|
8611
8620
|
kendra_settings: {
|
|
8612
8621
|
status: ("ENABLED" | "DISABLED")?
|
|
8622
|
+
}?,
|
|
8623
|
+
generative_ai_settings: {
|
|
8624
|
+
amazon_bedrock_role_arn: ::String?
|
|
8613
8625
|
}?
|
|
8614
8626
|
}?,
|
|
8615
8627
|
code_editor_app_settings: {
|
data/sig/types.rbs
CHANGED
|
@@ -551,6 +551,7 @@ module Aws::SageMaker
|
|
|
551
551
|
attr_accessor identity_provider_o_auth_settings: ::Array[Types::IdentityProviderOAuthSetting]
|
|
552
552
|
attr_accessor direct_deploy_settings: Types::DirectDeploySettings
|
|
553
553
|
attr_accessor kendra_settings: Types::KendraSettings
|
|
554
|
+
attr_accessor generative_ai_settings: Types::GenerativeAiSettings
|
|
554
555
|
SENSITIVE: []
|
|
555
556
|
end
|
|
556
557
|
|
|
@@ -4183,6 +4184,11 @@ module Aws::SageMaker
|
|
|
4183
4184
|
SENSITIVE: []
|
|
4184
4185
|
end
|
|
4185
4186
|
|
|
4187
|
+
class GenerativeAiSettings
|
|
4188
|
+
attr_accessor amazon_bedrock_role_arn: ::String
|
|
4189
|
+
SENSITIVE: []
|
|
4190
|
+
end
|
|
4191
|
+
|
|
4186
4192
|
class GetDeviceFleetReportRequest
|
|
4187
4193
|
attr_accessor device_fleet_name: ::String
|
|
4188
4194
|
SENSITIVE: []
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-sagemaker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.231.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: 2024-
|
|
11
|
+
date: 2024-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|