aws-sdk-sagemaker 1.102.0 → 1.106.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +268 -20
- data/lib/aws-sdk-sagemaker/client_api.rb +132 -3
- data/lib/aws-sdk-sagemaker/types.rb +602 -24
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +4 -4
@@ -2426,6 +2426,110 @@ module Aws::SageMaker
|
|
2426
2426
|
include Aws::Structure
|
2427
2427
|
end
|
2428
2428
|
|
2429
|
+
# The error code and error description associated with the resource.
|
2430
|
+
#
|
2431
|
+
# @!attribute [rw] error_code
|
2432
|
+
# @return [String]
|
2433
|
+
#
|
2434
|
+
# @!attribute [rw] error_response
|
2435
|
+
# @return [String]
|
2436
|
+
#
|
2437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackageError AWS API Documentation
|
2438
|
+
#
|
2439
|
+
class BatchDescribeModelPackageError < Struct.new(
|
2440
|
+
:error_code,
|
2441
|
+
:error_response)
|
2442
|
+
SENSITIVE = []
|
2443
|
+
include Aws::Structure
|
2444
|
+
end
|
2445
|
+
|
2446
|
+
# @note When making an API call, you may pass BatchDescribeModelPackageInput
|
2447
|
+
# data as a hash:
|
2448
|
+
#
|
2449
|
+
# {
|
2450
|
+
# model_package_arn_list: ["ModelPackageArn"], # required
|
2451
|
+
# }
|
2452
|
+
#
|
2453
|
+
# @!attribute [rw] model_package_arn_list
|
2454
|
+
# The list of Amazon Resource Name (ARN) of the model package groups.
|
2455
|
+
# @return [Array<String>]
|
2456
|
+
#
|
2457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackageInput AWS API Documentation
|
2458
|
+
#
|
2459
|
+
class BatchDescribeModelPackageInput < Struct.new(
|
2460
|
+
:model_package_arn_list)
|
2461
|
+
SENSITIVE = []
|
2462
|
+
include Aws::Structure
|
2463
|
+
end
|
2464
|
+
|
2465
|
+
# @!attribute [rw] model_package_summaries
|
2466
|
+
# The summaries for the model package versions
|
2467
|
+
# @return [Hash<String,Types::BatchDescribeModelPackageSummary>]
|
2468
|
+
#
|
2469
|
+
# @!attribute [rw] batch_describe_model_package_error_map
|
2470
|
+
# A map of the resource and BatchDescribeModelPackageError objects
|
2471
|
+
# reporting the error associated with describing the model package.
|
2472
|
+
# @return [Hash<String,Types::BatchDescribeModelPackageError>]
|
2473
|
+
#
|
2474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackageOutput AWS API Documentation
|
2475
|
+
#
|
2476
|
+
class BatchDescribeModelPackageOutput < Struct.new(
|
2477
|
+
:model_package_summaries,
|
2478
|
+
:batch_describe_model_package_error_map)
|
2479
|
+
SENSITIVE = []
|
2480
|
+
include Aws::Structure
|
2481
|
+
end
|
2482
|
+
|
2483
|
+
# Provides summary information about the model package.
|
2484
|
+
#
|
2485
|
+
# @!attribute [rw] model_package_group_name
|
2486
|
+
# The group name for the model package
|
2487
|
+
# @return [String]
|
2488
|
+
#
|
2489
|
+
# @!attribute [rw] model_package_version
|
2490
|
+
# The version number of a versioned model.
|
2491
|
+
# @return [Integer]
|
2492
|
+
#
|
2493
|
+
# @!attribute [rw] model_package_arn
|
2494
|
+
# The Amazon Resource Name (ARN) of the model package.
|
2495
|
+
# @return [String]
|
2496
|
+
#
|
2497
|
+
# @!attribute [rw] model_package_description
|
2498
|
+
# The description of the model package.
|
2499
|
+
# @return [String]
|
2500
|
+
#
|
2501
|
+
# @!attribute [rw] creation_time
|
2502
|
+
# The creation time of the mortgage package summary.
|
2503
|
+
# @return [Time]
|
2504
|
+
#
|
2505
|
+
# @!attribute [rw] inference_specification
|
2506
|
+
# Defines how to perform inference generation after a training job is
|
2507
|
+
# run.
|
2508
|
+
# @return [Types::InferenceSpecification]
|
2509
|
+
#
|
2510
|
+
# @!attribute [rw] model_package_status
|
2511
|
+
# The status of the mortgage package.
|
2512
|
+
# @return [String]
|
2513
|
+
#
|
2514
|
+
# @!attribute [rw] model_approval_status
|
2515
|
+
# The approval status of the model.
|
2516
|
+
# @return [String]
|
2517
|
+
#
|
2518
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackageSummary AWS API Documentation
|
2519
|
+
#
|
2520
|
+
class BatchDescribeModelPackageSummary < Struct.new(
|
2521
|
+
:model_package_group_name,
|
2522
|
+
:model_package_version,
|
2523
|
+
:model_package_arn,
|
2524
|
+
:model_package_description,
|
2525
|
+
:creation_time,
|
2526
|
+
:inference_specification,
|
2527
|
+
:model_package_status,
|
2528
|
+
:model_approval_status)
|
2529
|
+
SENSITIVE = []
|
2530
|
+
include Aws::Structure
|
2531
|
+
end
|
2532
|
+
|
2429
2533
|
# Contains bias metrics for a model.
|
2430
2534
|
#
|
2431
2535
|
# @note When making an API call, you may pass Bias
|
@@ -3856,7 +3960,7 @@ module Aws::SageMaker
|
|
3856
3960
|
# {
|
3857
3961
|
# domain_id: "DomainId", # required
|
3858
3962
|
# user_profile_name: "UserProfileName", # required
|
3859
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
3963
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
3860
3964
|
# app_name: "AppName", # required
|
3861
3965
|
# tags: [
|
3862
3966
|
# {
|
@@ -4696,6 +4800,12 @@ module Aws::SageMaker
|
|
4696
4800
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
4697
4801
|
# },
|
4698
4802
|
# },
|
4803
|
+
# r_studio_server_pro_app_settings: {
|
4804
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
4805
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
4806
|
+
# },
|
4807
|
+
# r_session_app_settings: {
|
4808
|
+
# },
|
4699
4809
|
# },
|
4700
4810
|
# subnet_ids: ["SubnetId"], # required
|
4701
4811
|
# vpc_id: "VpcId", # required
|
@@ -4708,6 +4818,21 @@ module Aws::SageMaker
|
|
4708
4818
|
# app_network_access_type: "PublicInternetOnly", # accepts PublicInternetOnly, VpcOnly
|
4709
4819
|
# home_efs_file_system_kms_key_id: "KmsKeyId",
|
4710
4820
|
# kms_key_id: "KmsKeyId",
|
4821
|
+
# app_security_group_management: "Service", # accepts Service, Customer
|
4822
|
+
# domain_settings: {
|
4823
|
+
# security_group_ids: ["SecurityGroupId"],
|
4824
|
+
# r_studio_server_pro_domain_settings: {
|
4825
|
+
# domain_execution_role_arn: "RoleArn", # required
|
4826
|
+
# r_studio_connect_url: "String",
|
4827
|
+
# r_studio_package_manager_url: "String",
|
4828
|
+
# default_resource_spec: {
|
4829
|
+
# sage_maker_image_arn: "ImageArn",
|
4830
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
4831
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
4832
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
4833
|
+
# },
|
4834
|
+
# },
|
4835
|
+
# },
|
4711
4836
|
# }
|
4712
4837
|
#
|
4713
4838
|
# @!attribute [rw] domain_name
|
@@ -4768,6 +4893,18 @@ module Aws::SageMaker
|
|
4768
4893
|
# default. For more control, specify a customer managed key.
|
4769
4894
|
# @return [String]
|
4770
4895
|
#
|
4896
|
+
# @!attribute [rw] app_security_group_management
|
4897
|
+
# The entity that creates and manages the required security groups for
|
4898
|
+
# inter-app communication in `VPCOnly` mode. Required when
|
4899
|
+
# `CreateDomain.AppNetworkAccessType` is `VPCOnly` and
|
4900
|
+
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
4901
|
+
# is provided.
|
4902
|
+
# @return [String]
|
4903
|
+
#
|
4904
|
+
# @!attribute [rw] domain_settings
|
4905
|
+
# A collection of `Domain` settings.
|
4906
|
+
# @return [Types::DomainSettings]
|
4907
|
+
#
|
4771
4908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomainRequest AWS API Documentation
|
4772
4909
|
#
|
4773
4910
|
class CreateDomainRequest < Struct.new(
|
@@ -4779,7 +4916,9 @@ module Aws::SageMaker
|
|
4779
4916
|
:tags,
|
4780
4917
|
:app_network_access_type,
|
4781
4918
|
:home_efs_file_system_kms_key_id,
|
4782
|
-
:kms_key_id
|
4919
|
+
:kms_key_id,
|
4920
|
+
:app_security_group_management,
|
4921
|
+
:domain_settings)
|
4783
4922
|
SENSITIVE = []
|
4784
4923
|
include Aws::Structure
|
4785
4924
|
end
|
@@ -6772,7 +6911,7 @@ module Aws::SageMaker
|
|
6772
6911
|
#
|
6773
6912
|
# {
|
6774
6913
|
# model_package_name: "EntityName",
|
6775
|
-
# model_package_group_name: "
|
6914
|
+
# model_package_group_name: "ArnOrName",
|
6776
6915
|
# model_package_description: "EntityDescription",
|
6777
6916
|
# inference_specification: {
|
6778
6917
|
# containers: [ # required
|
@@ -6893,6 +7032,9 @@ module Aws::SageMaker
|
|
6893
7032
|
# },
|
6894
7033
|
# },
|
6895
7034
|
# client_token: "ClientToken",
|
7035
|
+
# customer_metadata_properties: {
|
7036
|
+
# "CustomerMetadataKey" => "CustomerMetadataValue",
|
7037
|
+
# },
|
6896
7038
|
# }
|
6897
7039
|
#
|
6898
7040
|
# @!attribute [rw] model_package_name
|
@@ -6904,7 +7046,8 @@ module Aws::SageMaker
|
|
6904
7046
|
# @return [String]
|
6905
7047
|
#
|
6906
7048
|
# @!attribute [rw] model_package_group_name
|
6907
|
-
# The name
|
7049
|
+
# The name or Amazon Resource Name (ARN) of the model package group
|
7050
|
+
# that this model version belongs to.
|
6908
7051
|
#
|
6909
7052
|
# This parameter is required for versioned models, and does not apply
|
6910
7053
|
# to unversioned models.
|
@@ -6983,6 +7126,10 @@ module Aws::SageMaker
|
|
6983
7126
|
# not need to pass this option.
|
6984
7127
|
# @return [String]
|
6985
7128
|
#
|
7129
|
+
# @!attribute [rw] customer_metadata_properties
|
7130
|
+
# The metadata properties associated with the model package versions.
|
7131
|
+
# @return [Hash<String,String>]
|
7132
|
+
#
|
6986
7133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageInput AWS API Documentation
|
6987
7134
|
#
|
6988
7135
|
class CreateModelPackageInput < Struct.new(
|
@@ -6997,7 +7144,8 @@ module Aws::SageMaker
|
|
6997
7144
|
:model_approval_status,
|
6998
7145
|
:metadata_properties,
|
6999
7146
|
:model_metrics,
|
7000
|
-
:client_token
|
7147
|
+
:client_token,
|
7148
|
+
:customer_metadata_properties)
|
7001
7149
|
SENSITIVE = []
|
7002
7150
|
include Aws::Structure
|
7003
7151
|
end
|
@@ -7939,7 +8087,7 @@ module Aws::SageMaker
|
|
7939
8087
|
# project_description: "EntityDescription",
|
7940
8088
|
# service_catalog_provisioning_details: { # required
|
7941
8089
|
# product_id: "ServiceCatalogEntityId", # required
|
7942
|
-
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
8090
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
7943
8091
|
# path_id: "ServiceCatalogEntityId",
|
7944
8092
|
# provisioning_parameters: [
|
7945
8093
|
# {
|
@@ -7966,8 +8114,10 @@ module Aws::SageMaker
|
|
7966
8114
|
#
|
7967
8115
|
# @!attribute [rw] service_catalog_provisioning_details
|
7968
8116
|
# The product ID and provisioning artifact ID to provision a service
|
7969
|
-
# catalog.
|
7970
|
-
#
|
8117
|
+
# catalog. The provisioning artifact ID will default to the latest
|
8118
|
+
# provisioning artifact ID of the product, if you don't provide the
|
8119
|
+
# provisioning artifact ID. For more information, see [What is Amazon
|
8120
|
+
# Web Services Service Catalog][1].
|
7971
8121
|
#
|
7972
8122
|
#
|
7973
8123
|
#
|
@@ -8935,6 +9085,12 @@ module Aws::SageMaker
|
|
8935
9085
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
8936
9086
|
# },
|
8937
9087
|
# },
|
9088
|
+
# r_studio_server_pro_app_settings: {
|
9089
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
9090
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
9091
|
+
# },
|
9092
|
+
# r_session_app_settings: {
|
9093
|
+
# },
|
8938
9094
|
# },
|
8939
9095
|
# }
|
8940
9096
|
#
|
@@ -9938,7 +10094,7 @@ module Aws::SageMaker
|
|
9938
10094
|
# {
|
9939
10095
|
# domain_id: "DomainId", # required
|
9940
10096
|
# user_profile_name: "UserProfileName", # required
|
9941
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
10097
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
9942
10098
|
# app_name: "AppName", # required
|
9943
10099
|
# }
|
9944
10100
|
#
|
@@ -11144,7 +11300,7 @@ module Aws::SageMaker
|
|
11144
11300
|
# {
|
11145
11301
|
# domain_id: "DomainId", # required
|
11146
11302
|
# user_profile_name: "UserProfileName", # required
|
11147
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
11303
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
11148
11304
|
# app_name: "AppName", # required
|
11149
11305
|
# }
|
11150
11306
|
#
|
@@ -12070,6 +12226,23 @@ module Aws::SageMaker
|
|
12070
12226
|
# EFS volume attached to the domain.
|
12071
12227
|
# @return [String]
|
12072
12228
|
#
|
12229
|
+
# @!attribute [rw] domain_settings
|
12230
|
+
# A collection of `Domain` settings.
|
12231
|
+
# @return [Types::DomainSettings]
|
12232
|
+
#
|
12233
|
+
# @!attribute [rw] app_security_group_management
|
12234
|
+
# The entity that creates and manages the required security groups for
|
12235
|
+
# inter-app communication in `VPCOnly` mode. Required when
|
12236
|
+
# `CreateDomain.AppNetworkAccessType` is `VPCOnly` and
|
12237
|
+
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
12238
|
+
# is provided.
|
12239
|
+
# @return [String]
|
12240
|
+
#
|
12241
|
+
# @!attribute [rw] security_group_id_for_domain_boundary
|
12242
|
+
# The ID of the security group that authorizes traffic between the
|
12243
|
+
# `RSessionGateway` apps and the `RStudioServerPro` app.
|
12244
|
+
# @return [String]
|
12245
|
+
#
|
12073
12246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomainResponse AWS API Documentation
|
12074
12247
|
#
|
12075
12248
|
class DescribeDomainResponse < Struct.new(
|
@@ -12089,7 +12262,10 @@ module Aws::SageMaker
|
|
12089
12262
|
:subnet_ids,
|
12090
12263
|
:url,
|
12091
12264
|
:vpc_id,
|
12092
|
-
:kms_key_id
|
12265
|
+
:kms_key_id,
|
12266
|
+
:domain_settings,
|
12267
|
+
:app_security_group_management,
|
12268
|
+
:security_group_id_for_domain_boundary)
|
12093
12269
|
SENSITIVE = []
|
12094
12270
|
include Aws::Structure
|
12095
12271
|
end
|
@@ -13533,8 +13709,8 @@ module Aws::SageMaker
|
|
13533
13709
|
# @return [Types::SourceAlgorithmSpecification]
|
13534
13710
|
#
|
13535
13711
|
# @!attribute [rw] validation_specification
|
13536
|
-
# Configurations for one or more transform jobs that
|
13537
|
-
#
|
13712
|
+
# Configurations for one or more transform jobs that SageMaker runs to
|
13713
|
+
# test the model package.
|
13538
13714
|
# @return [Types::ModelPackageValidationSpecification]
|
13539
13715
|
#
|
13540
13716
|
# @!attribute [rw] model_package_status
|
@@ -13581,6 +13757,10 @@ module Aws::SageMaker
|
|
13581
13757
|
# A description provided for the model approval.
|
13582
13758
|
# @return [String]
|
13583
13759
|
#
|
13760
|
+
# @!attribute [rw] customer_metadata_properties
|
13761
|
+
# The metadata properties associated with the model package versions.
|
13762
|
+
# @return [Hash<String,String>]
|
13763
|
+
#
|
13584
13764
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
|
13585
13765
|
#
|
13586
13766
|
class DescribeModelPackageOutput < Struct.new(
|
@@ -13602,7 +13782,8 @@ module Aws::SageMaker
|
|
13602
13782
|
:model_metrics,
|
13603
13783
|
:last_modified_time,
|
13604
13784
|
:last_modified_by,
|
13605
|
-
:approval_description
|
13785
|
+
:approval_description,
|
13786
|
+
:customer_metadata_properties)
|
13606
13787
|
SENSITIVE = []
|
13607
13788
|
include Aws::Structure
|
13608
13789
|
end
|
@@ -14447,6 +14628,15 @@ module Aws::SageMaker
|
|
14447
14628
|
# The time when the project was created.
|
14448
14629
|
# @return [Time]
|
14449
14630
|
#
|
14631
|
+
# @!attribute [rw] last_modified_time
|
14632
|
+
# The timestamp when project was last modified.
|
14633
|
+
# @return [Time]
|
14634
|
+
#
|
14635
|
+
# @!attribute [rw] last_modified_by
|
14636
|
+
# Information about the user who created or modified an experiment,
|
14637
|
+
# trial, trial component, or project.
|
14638
|
+
# @return [Types::UserContext]
|
14639
|
+
#
|
14450
14640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeProjectOutput AWS API Documentation
|
14451
14641
|
#
|
14452
14642
|
class DescribeProjectOutput < Struct.new(
|
@@ -14458,7 +14648,9 @@ module Aws::SageMaker
|
|
14458
14648
|
:service_catalog_provisioned_product_details,
|
14459
14649
|
:project_status,
|
14460
14650
|
:created_by,
|
14461
|
-
:creation_time
|
14651
|
+
:creation_time,
|
14652
|
+
:last_modified_time,
|
14653
|
+
:last_modified_by)
|
14462
14654
|
SENSITIVE = []
|
14463
14655
|
include Aws::Structure
|
14464
14656
|
end
|
@@ -15717,6 +15909,77 @@ module Aws::SageMaker
|
|
15717
15909
|
include Aws::Structure
|
15718
15910
|
end
|
15719
15911
|
|
15912
|
+
# A collection of settings that apply to the `SageMaker Domain`. These
|
15913
|
+
# settings are specified through the `CreateDomain` API call.
|
15914
|
+
#
|
15915
|
+
# @note When making an API call, you may pass DomainSettings
|
15916
|
+
# data as a hash:
|
15917
|
+
#
|
15918
|
+
# {
|
15919
|
+
# security_group_ids: ["SecurityGroupId"],
|
15920
|
+
# r_studio_server_pro_domain_settings: {
|
15921
|
+
# domain_execution_role_arn: "RoleArn", # required
|
15922
|
+
# r_studio_connect_url: "String",
|
15923
|
+
# r_studio_package_manager_url: "String",
|
15924
|
+
# default_resource_spec: {
|
15925
|
+
# sage_maker_image_arn: "ImageArn",
|
15926
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
15927
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
15928
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
15929
|
+
# },
|
15930
|
+
# },
|
15931
|
+
# }
|
15932
|
+
#
|
15933
|
+
# @!attribute [rw] security_group_ids
|
15934
|
+
# The security groups for the Amazon Virtual Private Cloud that the
|
15935
|
+
# `Domain` uses for communication between Domain-level apps and user
|
15936
|
+
# apps.
|
15937
|
+
# @return [Array<String>]
|
15938
|
+
#
|
15939
|
+
# @!attribute [rw] r_studio_server_pro_domain_settings
|
15940
|
+
# A collection of settings that configure the `RStudioServerPro`
|
15941
|
+
# Domain-level app.
|
15942
|
+
# @return [Types::RStudioServerProDomainSettings]
|
15943
|
+
#
|
15944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettings AWS API Documentation
|
15945
|
+
#
|
15946
|
+
class DomainSettings < Struct.new(
|
15947
|
+
:security_group_ids,
|
15948
|
+
:r_studio_server_pro_domain_settings)
|
15949
|
+
SENSITIVE = []
|
15950
|
+
include Aws::Structure
|
15951
|
+
end
|
15952
|
+
|
15953
|
+
# A collection of `Domain` configuration settings to update.
|
15954
|
+
#
|
15955
|
+
# @note When making an API call, you may pass DomainSettingsForUpdate
|
15956
|
+
# data as a hash:
|
15957
|
+
#
|
15958
|
+
# {
|
15959
|
+
# r_studio_server_pro_domain_settings_for_update: {
|
15960
|
+
# domain_execution_role_arn: "RoleArn", # required
|
15961
|
+
# default_resource_spec: {
|
15962
|
+
# sage_maker_image_arn: "ImageArn",
|
15963
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
15964
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
15965
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
15966
|
+
# },
|
15967
|
+
# },
|
15968
|
+
# }
|
15969
|
+
#
|
15970
|
+
# @!attribute [rw] r_studio_server_pro_domain_settings_for_update
|
15971
|
+
# A collection of `RStudioServerPro` Domain-level app settings to
|
15972
|
+
# update.
|
15973
|
+
# @return [Types::RStudioServerProDomainSettingsForUpdate]
|
15974
|
+
#
|
15975
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettingsForUpdate AWS API Documentation
|
15976
|
+
#
|
15977
|
+
class DomainSettingsForUpdate < Struct.new(
|
15978
|
+
:r_studio_server_pro_domain_settings_for_update)
|
15979
|
+
SENSITIVE = []
|
15980
|
+
include Aws::Structure
|
15981
|
+
end
|
15982
|
+
|
15720
15983
|
# The model on the edge device.
|
15721
15984
|
#
|
15722
15985
|
# @!attribute [rw] model_name
|
@@ -25355,7 +25618,7 @@ module Aws::SageMaker
|
|
25355
25618
|
# model artifacts.
|
25356
25619
|
#
|
25357
25620
|
# Model artifacts are the output that results from training a model, and
|
25358
|
-
# typically consist of trained parameters, a model
|
25621
|
+
# typically consist of trained parameters, a model definition that
|
25359
25622
|
# describes how to compute inferences, and other metadata.
|
25360
25623
|
#
|
25361
25624
|
# @!attribute [rw] s3_model_artifacts
|
@@ -25917,6 +26180,10 @@ module Aws::SageMaker
|
|
25917
26180
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
25918
26181
|
# @return [Array<Types::Tag>]
|
25919
26182
|
#
|
26183
|
+
# @!attribute [rw] customer_metadata_properties
|
26184
|
+
# The metadata properties for the model package.
|
26185
|
+
# @return [Hash<String,String>]
|
26186
|
+
#
|
25920
26187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackage AWS API Documentation
|
25921
26188
|
#
|
25922
26189
|
class ModelPackage < Struct.new(
|
@@ -25939,7 +26206,8 @@ module Aws::SageMaker
|
|
25939
26206
|
:last_modified_time,
|
25940
26207
|
:last_modified_by,
|
25941
26208
|
:approval_description,
|
25942
|
-
:tags
|
26209
|
+
:tags,
|
26210
|
+
:customer_metadata_properties)
|
25943
26211
|
SENSITIVE = []
|
25944
26212
|
include Aws::Structure
|
25945
26213
|
end
|
@@ -30141,6 +30409,15 @@ module Aws::SageMaker
|
|
30141
30409
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
30142
30410
|
# @return [Array<Types::Tag>]
|
30143
30411
|
#
|
30412
|
+
# @!attribute [rw] last_modified_time
|
30413
|
+
# A timestamp container for when the project was last modified.
|
30414
|
+
# @return [Time]
|
30415
|
+
#
|
30416
|
+
# @!attribute [rw] last_modified_by
|
30417
|
+
# Information about the user who created or modified an experiment,
|
30418
|
+
# trial, trial component, or project.
|
30419
|
+
# @return [Types::UserContext]
|
30420
|
+
#
|
30144
30421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Project AWS API Documentation
|
30145
30422
|
#
|
30146
30423
|
class Project < Struct.new(
|
@@ -30153,7 +30430,9 @@ module Aws::SageMaker
|
|
30153
30430
|
:project_status,
|
30154
30431
|
:created_by,
|
30155
30432
|
:creation_time,
|
30156
|
-
:tags
|
30433
|
+
:tags,
|
30434
|
+
:last_modified_time,
|
30435
|
+
:last_modified_by)
|
30157
30436
|
SENSITIVE = []
|
30158
30437
|
include Aws::Structure
|
30159
30438
|
end
|
@@ -30535,6 +30814,129 @@ module Aws::SageMaker
|
|
30535
30814
|
include Aws::Structure
|
30536
30815
|
end
|
30537
30816
|
|
30817
|
+
# A collection of settings that apply to an `RSessionGateway` app.
|
30818
|
+
#
|
30819
|
+
# @api private
|
30820
|
+
#
|
30821
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RSessionAppSettings AWS API Documentation
|
30822
|
+
#
|
30823
|
+
class RSessionAppSettings < Aws::EmptyStructure; end
|
30824
|
+
|
30825
|
+
# A collection of settings that configure user interaction with the
|
30826
|
+
# `RStudioServerPro` app. `RStudioServerProAppSettings` cannot be
|
30827
|
+
# updated. The `RStudioServerPro` app must be deleted and a new one
|
30828
|
+
# created to make any changes.
|
30829
|
+
#
|
30830
|
+
# @note When making an API call, you may pass RStudioServerProAppSettings
|
30831
|
+
# data as a hash:
|
30832
|
+
#
|
30833
|
+
# {
|
30834
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
30835
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
30836
|
+
# }
|
30837
|
+
#
|
30838
|
+
# @!attribute [rw] access_status
|
30839
|
+
# Indicates whether the current user has access to the
|
30840
|
+
# `RStudioServerPro` app.
|
30841
|
+
# @return [String]
|
30842
|
+
#
|
30843
|
+
# @!attribute [rw] user_group
|
30844
|
+
# The level of permissions that the user has within the
|
30845
|
+
# `RStudioServerPro` app. This value defaults to `User`. The
|
30846
|
+
# `Admin` value allows the user access to the RStudio Administrative
|
30847
|
+
# Dashboard.
|
30848
|
+
# @return [String]
|
30849
|
+
#
|
30850
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RStudioServerProAppSettings AWS API Documentation
|
30851
|
+
#
|
30852
|
+
class RStudioServerProAppSettings < Struct.new(
|
30853
|
+
:access_status,
|
30854
|
+
:user_group)
|
30855
|
+
SENSITIVE = []
|
30856
|
+
include Aws::Structure
|
30857
|
+
end
|
30858
|
+
|
30859
|
+
# A collection of settings that configure the `RStudioServerPro`
|
30860
|
+
# Domain-level app.
|
30861
|
+
#
|
30862
|
+
# @note When making an API call, you may pass RStudioServerProDomainSettings
|
30863
|
+
# data as a hash:
|
30864
|
+
#
|
30865
|
+
# {
|
30866
|
+
# domain_execution_role_arn: "RoleArn", # required
|
30867
|
+
# r_studio_connect_url: "String",
|
30868
|
+
# r_studio_package_manager_url: "String",
|
30869
|
+
# default_resource_spec: {
|
30870
|
+
# sage_maker_image_arn: "ImageArn",
|
30871
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
30872
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
30873
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
30874
|
+
# },
|
30875
|
+
# }
|
30876
|
+
#
|
30877
|
+
# @!attribute [rw] domain_execution_role_arn
|
30878
|
+
# The ARN of the execution role for the `RStudioServerPro`
|
30879
|
+
# Domain-level app.
|
30880
|
+
# @return [String]
|
30881
|
+
#
|
30882
|
+
# @!attribute [rw] r_studio_connect_url
|
30883
|
+
# A URL pointing to an RStudio Connect server.
|
30884
|
+
# @return [String]
|
30885
|
+
#
|
30886
|
+
# @!attribute [rw] r_studio_package_manager_url
|
30887
|
+
# A URL pointing to an RStudio Package Manager server.
|
30888
|
+
# @return [String]
|
30889
|
+
#
|
30890
|
+
# @!attribute [rw] default_resource_spec
|
30891
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
30892
|
+
# version, and the instance type that the version runs on.
|
30893
|
+
# @return [Types::ResourceSpec]
|
30894
|
+
#
|
30895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RStudioServerProDomainSettings AWS API Documentation
|
30896
|
+
#
|
30897
|
+
class RStudioServerProDomainSettings < Struct.new(
|
30898
|
+
:domain_execution_role_arn,
|
30899
|
+
:r_studio_connect_url,
|
30900
|
+
:r_studio_package_manager_url,
|
30901
|
+
:default_resource_spec)
|
30902
|
+
SENSITIVE = []
|
30903
|
+
include Aws::Structure
|
30904
|
+
end
|
30905
|
+
|
30906
|
+
# A collection of settings that update the current configuration for the
|
30907
|
+
# `RStudioServerPro` Domain-level app.
|
30908
|
+
#
|
30909
|
+
# @note When making an API call, you may pass RStudioServerProDomainSettingsForUpdate
|
30910
|
+
# data as a hash:
|
30911
|
+
#
|
30912
|
+
# {
|
30913
|
+
# domain_execution_role_arn: "RoleArn", # required
|
30914
|
+
# default_resource_spec: {
|
30915
|
+
# sage_maker_image_arn: "ImageArn",
|
30916
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
30917
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
30918
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
30919
|
+
# },
|
30920
|
+
# }
|
30921
|
+
#
|
30922
|
+
# @!attribute [rw] domain_execution_role_arn
|
30923
|
+
# The execution role for the `RStudioServerPro` Domain-level app.
|
30924
|
+
# @return [String]
|
30925
|
+
#
|
30926
|
+
# @!attribute [rw] default_resource_spec
|
30927
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
30928
|
+
# version, and the instance type that the version runs on.
|
30929
|
+
# @return [Types::ResourceSpec]
|
30930
|
+
#
|
30931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RStudioServerProDomainSettingsForUpdate AWS API Documentation
|
30932
|
+
#
|
30933
|
+
class RStudioServerProDomainSettingsForUpdate < Struct.new(
|
30934
|
+
:domain_execution_role_arn,
|
30935
|
+
:default_resource_spec)
|
30936
|
+
SENSITIVE = []
|
30937
|
+
include Aws::Structure
|
30938
|
+
end
|
30939
|
+
|
30538
30940
|
# Configuration for Redshift Dataset Definition input.
|
30539
30941
|
#
|
30540
30942
|
# @note When making an API call, you may pass RedshiftDatasetDefinition
|
@@ -31923,7 +32325,7 @@ module Aws::SageMaker
|
|
31923
32325
|
#
|
31924
32326
|
# {
|
31925
32327
|
# product_id: "ServiceCatalogEntityId", # required
|
31926
|
-
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
32328
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
31927
32329
|
# path_id: "ServiceCatalogEntityId",
|
31928
32330
|
# provisioning_parameters: [
|
31929
32331
|
# {
|
@@ -31963,6 +32365,45 @@ module Aws::SageMaker
|
|
31963
32365
|
include Aws::Structure
|
31964
32366
|
end
|
31965
32367
|
|
32368
|
+
# Details that you specify to provision a service catalog product. For
|
32369
|
+
# information about service catalog, see [What is Amazon Web Services
|
32370
|
+
# Service Catalog][1].
|
32371
|
+
#
|
32372
|
+
#
|
32373
|
+
#
|
32374
|
+
# [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
|
32375
|
+
#
|
32376
|
+
# @note When making an API call, you may pass ServiceCatalogProvisioningUpdateDetails
|
32377
|
+
# data as a hash:
|
32378
|
+
#
|
32379
|
+
# {
|
32380
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
32381
|
+
# provisioning_parameters: [
|
32382
|
+
# {
|
32383
|
+
# key: "ProvisioningParameterKey",
|
32384
|
+
# value: "ProvisioningParameterValue",
|
32385
|
+
# },
|
32386
|
+
# ],
|
32387
|
+
# }
|
32388
|
+
#
|
32389
|
+
# @!attribute [rw] provisioning_artifact_id
|
32390
|
+
# The ID of the provisioning artifact.
|
32391
|
+
# @return [String]
|
32392
|
+
#
|
32393
|
+
# @!attribute [rw] provisioning_parameters
|
32394
|
+
# A list of key value pairs that you specify when you provision a
|
32395
|
+
# product.
|
32396
|
+
# @return [Array<Types::ProvisioningParameter>]
|
32397
|
+
#
|
32398
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ServiceCatalogProvisioningUpdateDetails AWS API Documentation
|
32399
|
+
#
|
32400
|
+
class ServiceCatalogProvisioningUpdateDetails < Struct.new(
|
32401
|
+
:provisioning_artifact_id,
|
32402
|
+
:provisioning_parameters)
|
32403
|
+
SENSITIVE = []
|
32404
|
+
include Aws::Structure
|
32405
|
+
end
|
32406
|
+
|
31966
32407
|
# Specifies options for sharing SageMaker Studio notebooks. These
|
31967
32408
|
# settings are specified as part of `DefaultUserSettings` when the
|
31968
32409
|
# `CreateDomain` API is called, and as part of `UserSettings` when the
|
@@ -35362,6 +35803,23 @@ module Aws::SageMaker
|
|
35362
35803
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
35363
35804
|
# },
|
35364
35805
|
# },
|
35806
|
+
# r_studio_server_pro_app_settings: {
|
35807
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
35808
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
35809
|
+
# },
|
35810
|
+
# r_session_app_settings: {
|
35811
|
+
# },
|
35812
|
+
# },
|
35813
|
+
# domain_settings_for_update: {
|
35814
|
+
# r_studio_server_pro_domain_settings_for_update: {
|
35815
|
+
# domain_execution_role_arn: "RoleArn", # required
|
35816
|
+
# default_resource_spec: {
|
35817
|
+
# sage_maker_image_arn: "ImageArn",
|
35818
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
35819
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
35820
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
35821
|
+
# },
|
35822
|
+
# },
|
35365
35823
|
# },
|
35366
35824
|
# }
|
35367
35825
|
#
|
@@ -35373,11 +35831,16 @@ module Aws::SageMaker
|
|
35373
35831
|
# A collection of settings.
|
35374
35832
|
# @return [Types::UserSettings]
|
35375
35833
|
#
|
35834
|
+
# @!attribute [rw] domain_settings_for_update
|
35835
|
+
# A collection of `DomainSettings` configuration values to update.
|
35836
|
+
# @return [Types::DomainSettingsForUpdate]
|
35837
|
+
#
|
35376
35838
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainRequest AWS API Documentation
|
35377
35839
|
#
|
35378
35840
|
class UpdateDomainRequest < Struct.new(
|
35379
35841
|
:domain_id,
|
35380
|
-
:default_user_settings
|
35842
|
+
:default_user_settings,
|
35843
|
+
:domain_settings_for_update)
|
35381
35844
|
SENSITIVE = []
|
35382
35845
|
include Aws::Structure
|
35383
35846
|
end
|
@@ -35639,12 +36102,16 @@ module Aws::SageMaker
|
|
35639
36102
|
#
|
35640
36103
|
# {
|
35641
36104
|
# model_package_arn: "ModelPackageArn", # required
|
35642
|
-
# model_approval_status: "Approved", #
|
36105
|
+
# model_approval_status: "Approved", # accepts Approved, Rejected, PendingManualApproval
|
35643
36106
|
# approval_description: "ApprovalDescription",
|
36107
|
+
# customer_metadata_properties: {
|
36108
|
+
# "CustomerMetadataKey" => "CustomerMetadataValue",
|
36109
|
+
# },
|
36110
|
+
# customer_metadata_properties_to_remove: ["CustomerMetadataKey"],
|
35644
36111
|
# }
|
35645
36112
|
#
|
35646
36113
|
# @!attribute [rw] model_package_arn
|
35647
|
-
# The Amazon Resource Name (ARN) of the model.
|
36114
|
+
# The Amazon Resource Name (ARN) of the model package.
|
35648
36115
|
# @return [String]
|
35649
36116
|
#
|
35650
36117
|
# @!attribute [rw] model_approval_status
|
@@ -35655,12 +36122,23 @@ module Aws::SageMaker
|
|
35655
36122
|
# A description for the approval status of the model.
|
35656
36123
|
# @return [String]
|
35657
36124
|
#
|
36125
|
+
# @!attribute [rw] customer_metadata_properties
|
36126
|
+
# The metadata properties associated with the model package versions.
|
36127
|
+
# @return [Hash<String,String>]
|
36128
|
+
#
|
36129
|
+
# @!attribute [rw] customer_metadata_properties_to_remove
|
36130
|
+
# The metadata properties associated with the model package versions
|
36131
|
+
# to remove.
|
36132
|
+
# @return [Array<String>]
|
36133
|
+
#
|
35658
36134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
|
35659
36135
|
#
|
35660
36136
|
class UpdateModelPackageInput < Struct.new(
|
35661
36137
|
:model_package_arn,
|
35662
36138
|
:model_approval_status,
|
35663
|
-
:approval_description
|
36139
|
+
:approval_description,
|
36140
|
+
:customer_metadata_properties,
|
36141
|
+
:customer_metadata_properties_to_remove)
|
35664
36142
|
SENSITIVE = []
|
35665
36143
|
include Aws::Structure
|
35666
36144
|
end
|
@@ -36105,6 +36583,83 @@ module Aws::SageMaker
|
|
36105
36583
|
include Aws::Structure
|
36106
36584
|
end
|
36107
36585
|
|
36586
|
+
# @note When making an API call, you may pass UpdateProjectInput
|
36587
|
+
# data as a hash:
|
36588
|
+
#
|
36589
|
+
# {
|
36590
|
+
# project_name: "ProjectEntityName", # required
|
36591
|
+
# project_description: "EntityDescription",
|
36592
|
+
# service_catalog_provisioning_update_details: {
|
36593
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
36594
|
+
# provisioning_parameters: [
|
36595
|
+
# {
|
36596
|
+
# key: "ProvisioningParameterKey",
|
36597
|
+
# value: "ProvisioningParameterValue",
|
36598
|
+
# },
|
36599
|
+
# ],
|
36600
|
+
# },
|
36601
|
+
# tags: [
|
36602
|
+
# {
|
36603
|
+
# key: "TagKey", # required
|
36604
|
+
# value: "TagValue", # required
|
36605
|
+
# },
|
36606
|
+
# ],
|
36607
|
+
# }
|
36608
|
+
#
|
36609
|
+
# @!attribute [rw] project_name
|
36610
|
+
# The name of the project.
|
36611
|
+
# @return [String]
|
36612
|
+
#
|
36613
|
+
# @!attribute [rw] project_description
|
36614
|
+
# The description for the project.
|
36615
|
+
# @return [String]
|
36616
|
+
#
|
36617
|
+
# @!attribute [rw] service_catalog_provisioning_update_details
|
36618
|
+
# The product ID and provisioning artifact ID to provision a service
|
36619
|
+
# catalog. The provisioning artifact ID will default to the latest
|
36620
|
+
# provisioning artifact ID of the product, if you don't provide the
|
36621
|
+
# provisioning artifact ID. For more information, see [What is Amazon
|
36622
|
+
# Web Services Service Catalog][1].
|
36623
|
+
#
|
36624
|
+
#
|
36625
|
+
#
|
36626
|
+
# [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
|
36627
|
+
# @return [Types::ServiceCatalogProvisioningUpdateDetails]
|
36628
|
+
#
|
36629
|
+
# @!attribute [rw] tags
|
36630
|
+
# An array of key-value pairs. You can use tags to categorize your
|
36631
|
+
# Amazon Web Services resources in different ways, for example, by
|
36632
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
36633
|
+
# Amazon Web Services Resources][1].
|
36634
|
+
#
|
36635
|
+
#
|
36636
|
+
#
|
36637
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
36638
|
+
# @return [Array<Types::Tag>]
|
36639
|
+
#
|
36640
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateProjectInput AWS API Documentation
|
36641
|
+
#
|
36642
|
+
class UpdateProjectInput < Struct.new(
|
36643
|
+
:project_name,
|
36644
|
+
:project_description,
|
36645
|
+
:service_catalog_provisioning_update_details,
|
36646
|
+
:tags)
|
36647
|
+
SENSITIVE = []
|
36648
|
+
include Aws::Structure
|
36649
|
+
end
|
36650
|
+
|
36651
|
+
# @!attribute [rw] project_arn
|
36652
|
+
# The Amazon Resource Name (ARN) of the project.
|
36653
|
+
# @return [String]
|
36654
|
+
#
|
36655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateProjectOutput AWS API Documentation
|
36656
|
+
#
|
36657
|
+
class UpdateProjectOutput < Struct.new(
|
36658
|
+
:project_arn)
|
36659
|
+
SENSITIVE = []
|
36660
|
+
include Aws::Structure
|
36661
|
+
end
|
36662
|
+
|
36108
36663
|
# @note When making an API call, you may pass UpdateTrainingJobRequest
|
36109
36664
|
# data as a hash:
|
36110
36665
|
#
|
@@ -36369,6 +36924,12 @@ module Aws::SageMaker
|
|
36369
36924
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
36370
36925
|
# },
|
36371
36926
|
# },
|
36927
|
+
# r_studio_server_pro_app_settings: {
|
36928
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
36929
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
36930
|
+
# },
|
36931
|
+
# r_session_app_settings: {
|
36932
|
+
# },
|
36372
36933
|
# },
|
36373
36934
|
# }
|
36374
36935
|
#
|
@@ -36681,6 +37242,12 @@ module Aws::SageMaker
|
|
36681
37242
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
36682
37243
|
# },
|
36683
37244
|
# },
|
37245
|
+
# r_studio_server_pro_app_settings: {
|
37246
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
37247
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
37248
|
+
# },
|
37249
|
+
# r_session_app_settings: {
|
37250
|
+
# },
|
36684
37251
|
# }
|
36685
37252
|
#
|
36686
37253
|
# @!attribute [rw] execution_role
|
@@ -36718,6 +37285,15 @@ module Aws::SageMaker
|
|
36718
37285
|
# The TensorBoard app settings.
|
36719
37286
|
# @return [Types::TensorBoardAppSettings]
|
36720
37287
|
#
|
37288
|
+
# @!attribute [rw] r_studio_server_pro_app_settings
|
37289
|
+
# A collection of settings that configure user interaction with the
|
37290
|
+
# `RStudioServerPro` app.
|
37291
|
+
# @return [Types::RStudioServerProAppSettings]
|
37292
|
+
#
|
37293
|
+
# @!attribute [rw] r_session_app_settings
|
37294
|
+
# A collection of settings that configure the `RSessionGateway` app.
|
37295
|
+
# @return [Types::RSessionAppSettings]
|
37296
|
+
#
|
36721
37297
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
|
36722
37298
|
#
|
36723
37299
|
class UserSettings < Struct.new(
|
@@ -36726,7 +37302,9 @@ module Aws::SageMaker
|
|
36726
37302
|
:sharing_settings,
|
36727
37303
|
:jupyter_server_app_settings,
|
36728
37304
|
:kernel_gateway_app_settings,
|
36729
|
-
:tensor_board_app_settings
|
37305
|
+
:tensor_board_app_settings,
|
37306
|
+
:r_studio_server_pro_app_settings,
|
37307
|
+
:r_session_app_settings)
|
36730
37308
|
SENSITIVE = []
|
36731
37309
|
include Aws::Structure
|
36732
37310
|
end
|