aws-sdk-sagemaker 1.103.0 → 1.107.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 +275 -17
- data/lib/aws-sdk-sagemaker/client_api.rb +133 -2
- data/lib/aws-sdk-sagemaker/types.rb +607 -21
- 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
|
@@ -8937,6 +9085,12 @@ module Aws::SageMaker
|
|
8937
9085
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
8938
9086
|
# },
|
8939
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
|
+
# },
|
8940
9094
|
# },
|
8941
9095
|
# }
|
8942
9096
|
#
|
@@ -9940,7 +10094,7 @@ module Aws::SageMaker
|
|
9940
10094
|
# {
|
9941
10095
|
# domain_id: "DomainId", # required
|
9942
10096
|
# user_profile_name: "UserProfileName", # required
|
9943
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
10097
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
9944
10098
|
# app_name: "AppName", # required
|
9945
10099
|
# }
|
9946
10100
|
#
|
@@ -11146,7 +11300,7 @@ module Aws::SageMaker
|
|
11146
11300
|
# {
|
11147
11301
|
# domain_id: "DomainId", # required
|
11148
11302
|
# user_profile_name: "UserProfileName", # required
|
11149
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
11303
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
11150
11304
|
# app_name: "AppName", # required
|
11151
11305
|
# }
|
11152
11306
|
#
|
@@ -11957,6 +12111,10 @@ module Aws::SageMaker
|
|
11957
12111
|
# to need tokening.
|
11958
12112
|
# @return [String]
|
11959
12113
|
#
|
12114
|
+
# @!attribute [rw] agent_version
|
12115
|
+
# Edge Manager agent version.
|
12116
|
+
# @return [String]
|
12117
|
+
#
|
11960
12118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDeviceResponse AWS API Documentation
|
11961
12119
|
#
|
11962
12120
|
class DescribeDeviceResponse < Struct.new(
|
@@ -11969,7 +12127,8 @@ module Aws::SageMaker
|
|
11969
12127
|
:latest_heartbeat,
|
11970
12128
|
:models,
|
11971
12129
|
:max_models,
|
11972
|
-
:next_token
|
12130
|
+
:next_token,
|
12131
|
+
:agent_version)
|
11973
12132
|
SENSITIVE = []
|
11974
12133
|
include Aws::Structure
|
11975
12134
|
end
|
@@ -12072,6 +12231,23 @@ module Aws::SageMaker
|
|
12072
12231
|
# EFS volume attached to the domain.
|
12073
12232
|
# @return [String]
|
12074
12233
|
#
|
12234
|
+
# @!attribute [rw] domain_settings
|
12235
|
+
# A collection of `Domain` settings.
|
12236
|
+
# @return [Types::DomainSettings]
|
12237
|
+
#
|
12238
|
+
# @!attribute [rw] app_security_group_management
|
12239
|
+
# The entity that creates and manages the required security groups for
|
12240
|
+
# inter-app communication in `VPCOnly` mode. Required when
|
12241
|
+
# `CreateDomain.AppNetworkAccessType` is `VPCOnly` and
|
12242
|
+
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
12243
|
+
# is provided.
|
12244
|
+
# @return [String]
|
12245
|
+
#
|
12246
|
+
# @!attribute [rw] security_group_id_for_domain_boundary
|
12247
|
+
# The ID of the security group that authorizes traffic between the
|
12248
|
+
# `RSessionGateway` apps and the `RStudioServerPro` app.
|
12249
|
+
# @return [String]
|
12250
|
+
#
|
12075
12251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomainResponse AWS API Documentation
|
12076
12252
|
#
|
12077
12253
|
class DescribeDomainResponse < Struct.new(
|
@@ -12091,7 +12267,10 @@ module Aws::SageMaker
|
|
12091
12267
|
:subnet_ids,
|
12092
12268
|
:url,
|
12093
12269
|
:vpc_id,
|
12094
|
-
:kms_key_id
|
12270
|
+
:kms_key_id,
|
12271
|
+
:domain_settings,
|
12272
|
+
:app_security_group_management,
|
12273
|
+
:security_group_id_for_domain_boundary)
|
12095
12274
|
SENSITIVE = []
|
12096
12275
|
include Aws::Structure
|
12097
12276
|
end
|
@@ -13535,8 +13714,8 @@ module Aws::SageMaker
|
|
13535
13714
|
# @return [Types::SourceAlgorithmSpecification]
|
13536
13715
|
#
|
13537
13716
|
# @!attribute [rw] validation_specification
|
13538
|
-
# Configurations for one or more transform jobs that
|
13539
|
-
#
|
13717
|
+
# Configurations for one or more transform jobs that SageMaker runs to
|
13718
|
+
# test the model package.
|
13540
13719
|
# @return [Types::ModelPackageValidationSpecification]
|
13541
13720
|
#
|
13542
13721
|
# @!attribute [rw] model_package_status
|
@@ -13583,6 +13762,10 @@ module Aws::SageMaker
|
|
13583
13762
|
# A description provided for the model approval.
|
13584
13763
|
# @return [String]
|
13585
13764
|
#
|
13765
|
+
# @!attribute [rw] customer_metadata_properties
|
13766
|
+
# The metadata properties associated with the model package versions.
|
13767
|
+
# @return [Hash<String,String>]
|
13768
|
+
#
|
13586
13769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
|
13587
13770
|
#
|
13588
13771
|
class DescribeModelPackageOutput < Struct.new(
|
@@ -13604,7 +13787,8 @@ module Aws::SageMaker
|
|
13604
13787
|
:model_metrics,
|
13605
13788
|
:last_modified_time,
|
13606
13789
|
:last_modified_by,
|
13607
|
-
:approval_description
|
13790
|
+
:approval_description,
|
13791
|
+
:customer_metadata_properties)
|
13608
13792
|
SENSITIVE = []
|
13609
13793
|
include Aws::Structure
|
13610
13794
|
end
|
@@ -14449,6 +14633,15 @@ module Aws::SageMaker
|
|
14449
14633
|
# The time when the project was created.
|
14450
14634
|
# @return [Time]
|
14451
14635
|
#
|
14636
|
+
# @!attribute [rw] last_modified_time
|
14637
|
+
# The timestamp when project was last modified.
|
14638
|
+
# @return [Time]
|
14639
|
+
#
|
14640
|
+
# @!attribute [rw] last_modified_by
|
14641
|
+
# Information about the user who created or modified an experiment,
|
14642
|
+
# trial, trial component, or project.
|
14643
|
+
# @return [Types::UserContext]
|
14644
|
+
#
|
14452
14645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeProjectOutput AWS API Documentation
|
14453
14646
|
#
|
14454
14647
|
class DescribeProjectOutput < Struct.new(
|
@@ -14460,7 +14653,9 @@ module Aws::SageMaker
|
|
14460
14653
|
:service_catalog_provisioned_product_details,
|
14461
14654
|
:project_status,
|
14462
14655
|
:created_by,
|
14463
|
-
:creation_time
|
14656
|
+
:creation_time,
|
14657
|
+
:last_modified_time,
|
14658
|
+
:last_modified_by)
|
14464
14659
|
SENSITIVE = []
|
14465
14660
|
include Aws::Structure
|
14466
14661
|
end
|
@@ -15608,6 +15803,10 @@ module Aws::SageMaker
|
|
15608
15803
|
# Models on the device.
|
15609
15804
|
# @return [Array<Types::EdgeModelSummary>]
|
15610
15805
|
#
|
15806
|
+
# @!attribute [rw] agent_version
|
15807
|
+
# Edge Manager agent version.
|
15808
|
+
# @return [String]
|
15809
|
+
#
|
15611
15810
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeviceSummary AWS API Documentation
|
15612
15811
|
#
|
15613
15812
|
class DeviceSummary < Struct.new(
|
@@ -15618,7 +15817,8 @@ module Aws::SageMaker
|
|
15618
15817
|
:iot_thing_name,
|
15619
15818
|
:registration_time,
|
15620
15819
|
:latest_heartbeat,
|
15621
|
-
:models
|
15820
|
+
:models,
|
15821
|
+
:agent_version)
|
15622
15822
|
SENSITIVE = []
|
15623
15823
|
include Aws::Structure
|
15624
15824
|
end
|
@@ -15719,6 +15919,77 @@ module Aws::SageMaker
|
|
15719
15919
|
include Aws::Structure
|
15720
15920
|
end
|
15721
15921
|
|
15922
|
+
# A collection of settings that apply to the `SageMaker Domain`. These
|
15923
|
+
# settings are specified through the `CreateDomain` API call.
|
15924
|
+
#
|
15925
|
+
# @note When making an API call, you may pass DomainSettings
|
15926
|
+
# data as a hash:
|
15927
|
+
#
|
15928
|
+
# {
|
15929
|
+
# security_group_ids: ["SecurityGroupId"],
|
15930
|
+
# r_studio_server_pro_domain_settings: {
|
15931
|
+
# domain_execution_role_arn: "RoleArn", # required
|
15932
|
+
# r_studio_connect_url: "String",
|
15933
|
+
# r_studio_package_manager_url: "String",
|
15934
|
+
# default_resource_spec: {
|
15935
|
+
# sage_maker_image_arn: "ImageArn",
|
15936
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
15937
|
+
# 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
|
15938
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
15939
|
+
# },
|
15940
|
+
# },
|
15941
|
+
# }
|
15942
|
+
#
|
15943
|
+
# @!attribute [rw] security_group_ids
|
15944
|
+
# The security groups for the Amazon Virtual Private Cloud that the
|
15945
|
+
# `Domain` uses for communication between Domain-level apps and user
|
15946
|
+
# apps.
|
15947
|
+
# @return [Array<String>]
|
15948
|
+
#
|
15949
|
+
# @!attribute [rw] r_studio_server_pro_domain_settings
|
15950
|
+
# A collection of settings that configure the `RStudioServerPro`
|
15951
|
+
# Domain-level app.
|
15952
|
+
# @return [Types::RStudioServerProDomainSettings]
|
15953
|
+
#
|
15954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettings AWS API Documentation
|
15955
|
+
#
|
15956
|
+
class DomainSettings < Struct.new(
|
15957
|
+
:security_group_ids,
|
15958
|
+
:r_studio_server_pro_domain_settings)
|
15959
|
+
SENSITIVE = []
|
15960
|
+
include Aws::Structure
|
15961
|
+
end
|
15962
|
+
|
15963
|
+
# A collection of `Domain` configuration settings to update.
|
15964
|
+
#
|
15965
|
+
# @note When making an API call, you may pass DomainSettingsForUpdate
|
15966
|
+
# data as a hash:
|
15967
|
+
#
|
15968
|
+
# {
|
15969
|
+
# r_studio_server_pro_domain_settings_for_update: {
|
15970
|
+
# domain_execution_role_arn: "RoleArn", # required
|
15971
|
+
# default_resource_spec: {
|
15972
|
+
# sage_maker_image_arn: "ImageArn",
|
15973
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
15974
|
+
# 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
|
15975
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
15976
|
+
# },
|
15977
|
+
# },
|
15978
|
+
# }
|
15979
|
+
#
|
15980
|
+
# @!attribute [rw] r_studio_server_pro_domain_settings_for_update
|
15981
|
+
# A collection of `RStudioServerPro` Domain-level app settings to
|
15982
|
+
# update.
|
15983
|
+
# @return [Types::RStudioServerProDomainSettingsForUpdate]
|
15984
|
+
#
|
15985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettingsForUpdate AWS API Documentation
|
15986
|
+
#
|
15987
|
+
class DomainSettingsForUpdate < Struct.new(
|
15988
|
+
:r_studio_server_pro_domain_settings_for_update)
|
15989
|
+
SENSITIVE = []
|
15990
|
+
include Aws::Structure
|
15991
|
+
end
|
15992
|
+
|
15722
15993
|
# The model on the edge device.
|
15723
15994
|
#
|
15724
15995
|
# @!attribute [rw] model_name
|
@@ -25919,6 +26190,10 @@ module Aws::SageMaker
|
|
25919
26190
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
25920
26191
|
# @return [Array<Types::Tag>]
|
25921
26192
|
#
|
26193
|
+
# @!attribute [rw] customer_metadata_properties
|
26194
|
+
# The metadata properties for the model package.
|
26195
|
+
# @return [Hash<String,String>]
|
26196
|
+
#
|
25922
26197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackage AWS API Documentation
|
25923
26198
|
#
|
25924
26199
|
class ModelPackage < Struct.new(
|
@@ -25941,7 +26216,8 @@ module Aws::SageMaker
|
|
25941
26216
|
:last_modified_time,
|
25942
26217
|
:last_modified_by,
|
25943
26218
|
:approval_description,
|
25944
|
-
:tags
|
26219
|
+
:tags,
|
26220
|
+
:customer_metadata_properties)
|
25945
26221
|
SENSITIVE = []
|
25946
26222
|
include Aws::Structure
|
25947
26223
|
end
|
@@ -30143,6 +30419,15 @@ module Aws::SageMaker
|
|
30143
30419
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
30144
30420
|
# @return [Array<Types::Tag>]
|
30145
30421
|
#
|
30422
|
+
# @!attribute [rw] last_modified_time
|
30423
|
+
# A timestamp container for when the project was last modified.
|
30424
|
+
# @return [Time]
|
30425
|
+
#
|
30426
|
+
# @!attribute [rw] last_modified_by
|
30427
|
+
# Information about the user who created or modified an experiment,
|
30428
|
+
# trial, trial component, or project.
|
30429
|
+
# @return [Types::UserContext]
|
30430
|
+
#
|
30146
30431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Project AWS API Documentation
|
30147
30432
|
#
|
30148
30433
|
class Project < Struct.new(
|
@@ -30155,7 +30440,9 @@ module Aws::SageMaker
|
|
30155
30440
|
:project_status,
|
30156
30441
|
:created_by,
|
30157
30442
|
:creation_time,
|
30158
|
-
:tags
|
30443
|
+
:tags,
|
30444
|
+
:last_modified_time,
|
30445
|
+
:last_modified_by)
|
30159
30446
|
SENSITIVE = []
|
30160
30447
|
include Aws::Structure
|
30161
30448
|
end
|
@@ -30537,6 +30824,129 @@ module Aws::SageMaker
|
|
30537
30824
|
include Aws::Structure
|
30538
30825
|
end
|
30539
30826
|
|
30827
|
+
# A collection of settings that apply to an `RSessionGateway` app.
|
30828
|
+
#
|
30829
|
+
# @api private
|
30830
|
+
#
|
30831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RSessionAppSettings AWS API Documentation
|
30832
|
+
#
|
30833
|
+
class RSessionAppSettings < Aws::EmptyStructure; end
|
30834
|
+
|
30835
|
+
# A collection of settings that configure user interaction with the
|
30836
|
+
# `RStudioServerPro` app. `RStudioServerProAppSettings` cannot be
|
30837
|
+
# updated. The `RStudioServerPro` app must be deleted and a new one
|
30838
|
+
# created to make any changes.
|
30839
|
+
#
|
30840
|
+
# @note When making an API call, you may pass RStudioServerProAppSettings
|
30841
|
+
# data as a hash:
|
30842
|
+
#
|
30843
|
+
# {
|
30844
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
30845
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
30846
|
+
# }
|
30847
|
+
#
|
30848
|
+
# @!attribute [rw] access_status
|
30849
|
+
# Indicates whether the current user has access to the
|
30850
|
+
# `RStudioServerPro` app.
|
30851
|
+
# @return [String]
|
30852
|
+
#
|
30853
|
+
# @!attribute [rw] user_group
|
30854
|
+
# The level of permissions that the user has within the
|
30855
|
+
# `RStudioServerPro` app. This value defaults to `User`. The
|
30856
|
+
# `Admin` value allows the user access to the RStudio Administrative
|
30857
|
+
# Dashboard.
|
30858
|
+
# @return [String]
|
30859
|
+
#
|
30860
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RStudioServerProAppSettings AWS API Documentation
|
30861
|
+
#
|
30862
|
+
class RStudioServerProAppSettings < Struct.new(
|
30863
|
+
:access_status,
|
30864
|
+
:user_group)
|
30865
|
+
SENSITIVE = []
|
30866
|
+
include Aws::Structure
|
30867
|
+
end
|
30868
|
+
|
30869
|
+
# A collection of settings that configure the `RStudioServerPro`
|
30870
|
+
# Domain-level app.
|
30871
|
+
#
|
30872
|
+
# @note When making an API call, you may pass RStudioServerProDomainSettings
|
30873
|
+
# data as a hash:
|
30874
|
+
#
|
30875
|
+
# {
|
30876
|
+
# domain_execution_role_arn: "RoleArn", # required
|
30877
|
+
# r_studio_connect_url: "String",
|
30878
|
+
# r_studio_package_manager_url: "String",
|
30879
|
+
# default_resource_spec: {
|
30880
|
+
# sage_maker_image_arn: "ImageArn",
|
30881
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
30882
|
+
# 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
|
30883
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
30884
|
+
# },
|
30885
|
+
# }
|
30886
|
+
#
|
30887
|
+
# @!attribute [rw] domain_execution_role_arn
|
30888
|
+
# The ARN of the execution role for the `RStudioServerPro`
|
30889
|
+
# Domain-level app.
|
30890
|
+
# @return [String]
|
30891
|
+
#
|
30892
|
+
# @!attribute [rw] r_studio_connect_url
|
30893
|
+
# A URL pointing to an RStudio Connect server.
|
30894
|
+
# @return [String]
|
30895
|
+
#
|
30896
|
+
# @!attribute [rw] r_studio_package_manager_url
|
30897
|
+
# A URL pointing to an RStudio Package Manager server.
|
30898
|
+
# @return [String]
|
30899
|
+
#
|
30900
|
+
# @!attribute [rw] default_resource_spec
|
30901
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
30902
|
+
# version, and the instance type that the version runs on.
|
30903
|
+
# @return [Types::ResourceSpec]
|
30904
|
+
#
|
30905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RStudioServerProDomainSettings AWS API Documentation
|
30906
|
+
#
|
30907
|
+
class RStudioServerProDomainSettings < Struct.new(
|
30908
|
+
:domain_execution_role_arn,
|
30909
|
+
:r_studio_connect_url,
|
30910
|
+
:r_studio_package_manager_url,
|
30911
|
+
:default_resource_spec)
|
30912
|
+
SENSITIVE = []
|
30913
|
+
include Aws::Structure
|
30914
|
+
end
|
30915
|
+
|
30916
|
+
# A collection of settings that update the current configuration for the
|
30917
|
+
# `RStudioServerPro` Domain-level app.
|
30918
|
+
#
|
30919
|
+
# @note When making an API call, you may pass RStudioServerProDomainSettingsForUpdate
|
30920
|
+
# data as a hash:
|
30921
|
+
#
|
30922
|
+
# {
|
30923
|
+
# domain_execution_role_arn: "RoleArn", # required
|
30924
|
+
# default_resource_spec: {
|
30925
|
+
# sage_maker_image_arn: "ImageArn",
|
30926
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
30927
|
+
# 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
|
30928
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
30929
|
+
# },
|
30930
|
+
# }
|
30931
|
+
#
|
30932
|
+
# @!attribute [rw] domain_execution_role_arn
|
30933
|
+
# The execution role for the `RStudioServerPro` Domain-level app.
|
30934
|
+
# @return [String]
|
30935
|
+
#
|
30936
|
+
# @!attribute [rw] default_resource_spec
|
30937
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
30938
|
+
# version, and the instance type that the version runs on.
|
30939
|
+
# @return [Types::ResourceSpec]
|
30940
|
+
#
|
30941
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RStudioServerProDomainSettingsForUpdate AWS API Documentation
|
30942
|
+
#
|
30943
|
+
class RStudioServerProDomainSettingsForUpdate < Struct.new(
|
30944
|
+
:domain_execution_role_arn,
|
30945
|
+
:default_resource_spec)
|
30946
|
+
SENSITIVE = []
|
30947
|
+
include Aws::Structure
|
30948
|
+
end
|
30949
|
+
|
30540
30950
|
# Configuration for Redshift Dataset Definition input.
|
30541
30951
|
#
|
30542
30952
|
# @note When making an API call, you may pass RedshiftDatasetDefinition
|
@@ -31965,6 +32375,45 @@ module Aws::SageMaker
|
|
31965
32375
|
include Aws::Structure
|
31966
32376
|
end
|
31967
32377
|
|
32378
|
+
# Details that you specify to provision a service catalog product. For
|
32379
|
+
# information about service catalog, see [What is Amazon Web Services
|
32380
|
+
# Service Catalog][1].
|
32381
|
+
#
|
32382
|
+
#
|
32383
|
+
#
|
32384
|
+
# [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
|
32385
|
+
#
|
32386
|
+
# @note When making an API call, you may pass ServiceCatalogProvisioningUpdateDetails
|
32387
|
+
# data as a hash:
|
32388
|
+
#
|
32389
|
+
# {
|
32390
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
32391
|
+
# provisioning_parameters: [
|
32392
|
+
# {
|
32393
|
+
# key: "ProvisioningParameterKey",
|
32394
|
+
# value: "ProvisioningParameterValue",
|
32395
|
+
# },
|
32396
|
+
# ],
|
32397
|
+
# }
|
32398
|
+
#
|
32399
|
+
# @!attribute [rw] provisioning_artifact_id
|
32400
|
+
# The ID of the provisioning artifact.
|
32401
|
+
# @return [String]
|
32402
|
+
#
|
32403
|
+
# @!attribute [rw] provisioning_parameters
|
32404
|
+
# A list of key value pairs that you specify when you provision a
|
32405
|
+
# product.
|
32406
|
+
# @return [Array<Types::ProvisioningParameter>]
|
32407
|
+
#
|
32408
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ServiceCatalogProvisioningUpdateDetails AWS API Documentation
|
32409
|
+
#
|
32410
|
+
class ServiceCatalogProvisioningUpdateDetails < Struct.new(
|
32411
|
+
:provisioning_artifact_id,
|
32412
|
+
:provisioning_parameters)
|
32413
|
+
SENSITIVE = []
|
32414
|
+
include Aws::Structure
|
32415
|
+
end
|
32416
|
+
|
31968
32417
|
# Specifies options for sharing SageMaker Studio notebooks. These
|
31969
32418
|
# settings are specified as part of `DefaultUserSettings` when the
|
31970
32419
|
# `CreateDomain` API is called, and as part of `UserSettings` when the
|
@@ -35364,6 +35813,23 @@ module Aws::SageMaker
|
|
35364
35813
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
35365
35814
|
# },
|
35366
35815
|
# },
|
35816
|
+
# r_studio_server_pro_app_settings: {
|
35817
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
35818
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
35819
|
+
# },
|
35820
|
+
# r_session_app_settings: {
|
35821
|
+
# },
|
35822
|
+
# },
|
35823
|
+
# domain_settings_for_update: {
|
35824
|
+
# r_studio_server_pro_domain_settings_for_update: {
|
35825
|
+
# domain_execution_role_arn: "RoleArn", # required
|
35826
|
+
# default_resource_spec: {
|
35827
|
+
# sage_maker_image_arn: "ImageArn",
|
35828
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
35829
|
+
# 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
|
35830
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
35831
|
+
# },
|
35832
|
+
# },
|
35367
35833
|
# },
|
35368
35834
|
# }
|
35369
35835
|
#
|
@@ -35375,11 +35841,16 @@ module Aws::SageMaker
|
|
35375
35841
|
# A collection of settings.
|
35376
35842
|
# @return [Types::UserSettings]
|
35377
35843
|
#
|
35844
|
+
# @!attribute [rw] domain_settings_for_update
|
35845
|
+
# A collection of `DomainSettings` configuration values to update.
|
35846
|
+
# @return [Types::DomainSettingsForUpdate]
|
35847
|
+
#
|
35378
35848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainRequest AWS API Documentation
|
35379
35849
|
#
|
35380
35850
|
class UpdateDomainRequest < Struct.new(
|
35381
35851
|
:domain_id,
|
35382
|
-
:default_user_settings
|
35852
|
+
:default_user_settings,
|
35853
|
+
:domain_settings_for_update)
|
35383
35854
|
SENSITIVE = []
|
35384
35855
|
include Aws::Structure
|
35385
35856
|
end
|
@@ -35641,12 +36112,16 @@ module Aws::SageMaker
|
|
35641
36112
|
#
|
35642
36113
|
# {
|
35643
36114
|
# model_package_arn: "ModelPackageArn", # required
|
35644
|
-
# model_approval_status: "Approved", #
|
36115
|
+
# model_approval_status: "Approved", # accepts Approved, Rejected, PendingManualApproval
|
35645
36116
|
# approval_description: "ApprovalDescription",
|
36117
|
+
# customer_metadata_properties: {
|
36118
|
+
# "CustomerMetadataKey" => "CustomerMetadataValue",
|
36119
|
+
# },
|
36120
|
+
# customer_metadata_properties_to_remove: ["CustomerMetadataKey"],
|
35646
36121
|
# }
|
35647
36122
|
#
|
35648
36123
|
# @!attribute [rw] model_package_arn
|
35649
|
-
# The Amazon Resource Name (ARN) of the model.
|
36124
|
+
# The Amazon Resource Name (ARN) of the model package.
|
35650
36125
|
# @return [String]
|
35651
36126
|
#
|
35652
36127
|
# @!attribute [rw] model_approval_status
|
@@ -35657,12 +36132,23 @@ module Aws::SageMaker
|
|
35657
36132
|
# A description for the approval status of the model.
|
35658
36133
|
# @return [String]
|
35659
36134
|
#
|
36135
|
+
# @!attribute [rw] customer_metadata_properties
|
36136
|
+
# The metadata properties associated with the model package versions.
|
36137
|
+
# @return [Hash<String,String>]
|
36138
|
+
#
|
36139
|
+
# @!attribute [rw] customer_metadata_properties_to_remove
|
36140
|
+
# The metadata properties associated with the model package versions
|
36141
|
+
# to remove.
|
36142
|
+
# @return [Array<String>]
|
36143
|
+
#
|
35660
36144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
|
35661
36145
|
#
|
35662
36146
|
class UpdateModelPackageInput < Struct.new(
|
35663
36147
|
:model_package_arn,
|
35664
36148
|
:model_approval_status,
|
35665
|
-
:approval_description
|
36149
|
+
:approval_description,
|
36150
|
+
:customer_metadata_properties,
|
36151
|
+
:customer_metadata_properties_to_remove)
|
35666
36152
|
SENSITIVE = []
|
35667
36153
|
include Aws::Structure
|
35668
36154
|
end
|
@@ -36107,6 +36593,83 @@ module Aws::SageMaker
|
|
36107
36593
|
include Aws::Structure
|
36108
36594
|
end
|
36109
36595
|
|
36596
|
+
# @note When making an API call, you may pass UpdateProjectInput
|
36597
|
+
# data as a hash:
|
36598
|
+
#
|
36599
|
+
# {
|
36600
|
+
# project_name: "ProjectEntityName", # required
|
36601
|
+
# project_description: "EntityDescription",
|
36602
|
+
# service_catalog_provisioning_update_details: {
|
36603
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
36604
|
+
# provisioning_parameters: [
|
36605
|
+
# {
|
36606
|
+
# key: "ProvisioningParameterKey",
|
36607
|
+
# value: "ProvisioningParameterValue",
|
36608
|
+
# },
|
36609
|
+
# ],
|
36610
|
+
# },
|
36611
|
+
# tags: [
|
36612
|
+
# {
|
36613
|
+
# key: "TagKey", # required
|
36614
|
+
# value: "TagValue", # required
|
36615
|
+
# },
|
36616
|
+
# ],
|
36617
|
+
# }
|
36618
|
+
#
|
36619
|
+
# @!attribute [rw] project_name
|
36620
|
+
# The name of the project.
|
36621
|
+
# @return [String]
|
36622
|
+
#
|
36623
|
+
# @!attribute [rw] project_description
|
36624
|
+
# The description for the project.
|
36625
|
+
# @return [String]
|
36626
|
+
#
|
36627
|
+
# @!attribute [rw] service_catalog_provisioning_update_details
|
36628
|
+
# The product ID and provisioning artifact ID to provision a service
|
36629
|
+
# catalog. The provisioning artifact ID will default to the latest
|
36630
|
+
# provisioning artifact ID of the product, if you don't provide the
|
36631
|
+
# provisioning artifact ID. For more information, see [What is Amazon
|
36632
|
+
# Web Services Service Catalog][1].
|
36633
|
+
#
|
36634
|
+
#
|
36635
|
+
#
|
36636
|
+
# [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
|
36637
|
+
# @return [Types::ServiceCatalogProvisioningUpdateDetails]
|
36638
|
+
#
|
36639
|
+
# @!attribute [rw] tags
|
36640
|
+
# An array of key-value pairs. You can use tags to categorize your
|
36641
|
+
# Amazon Web Services resources in different ways, for example, by
|
36642
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
36643
|
+
# Amazon Web Services Resources][1].
|
36644
|
+
#
|
36645
|
+
#
|
36646
|
+
#
|
36647
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
36648
|
+
# @return [Array<Types::Tag>]
|
36649
|
+
#
|
36650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateProjectInput AWS API Documentation
|
36651
|
+
#
|
36652
|
+
class UpdateProjectInput < Struct.new(
|
36653
|
+
:project_name,
|
36654
|
+
:project_description,
|
36655
|
+
:service_catalog_provisioning_update_details,
|
36656
|
+
:tags)
|
36657
|
+
SENSITIVE = []
|
36658
|
+
include Aws::Structure
|
36659
|
+
end
|
36660
|
+
|
36661
|
+
# @!attribute [rw] project_arn
|
36662
|
+
# The Amazon Resource Name (ARN) of the project.
|
36663
|
+
# @return [String]
|
36664
|
+
#
|
36665
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateProjectOutput AWS API Documentation
|
36666
|
+
#
|
36667
|
+
class UpdateProjectOutput < Struct.new(
|
36668
|
+
:project_arn)
|
36669
|
+
SENSITIVE = []
|
36670
|
+
include Aws::Structure
|
36671
|
+
end
|
36672
|
+
|
36110
36673
|
# @note When making an API call, you may pass UpdateTrainingJobRequest
|
36111
36674
|
# data as a hash:
|
36112
36675
|
#
|
@@ -36371,6 +36934,12 @@ module Aws::SageMaker
|
|
36371
36934
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
36372
36935
|
# },
|
36373
36936
|
# },
|
36937
|
+
# r_studio_server_pro_app_settings: {
|
36938
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
36939
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
36940
|
+
# },
|
36941
|
+
# r_session_app_settings: {
|
36942
|
+
# },
|
36374
36943
|
# },
|
36375
36944
|
# }
|
36376
36945
|
#
|
@@ -36683,6 +37252,12 @@ module Aws::SageMaker
|
|
36683
37252
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
36684
37253
|
# },
|
36685
37254
|
# },
|
37255
|
+
# r_studio_server_pro_app_settings: {
|
37256
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
37257
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
37258
|
+
# },
|
37259
|
+
# r_session_app_settings: {
|
37260
|
+
# },
|
36686
37261
|
# }
|
36687
37262
|
#
|
36688
37263
|
# @!attribute [rw] execution_role
|
@@ -36720,6 +37295,15 @@ module Aws::SageMaker
|
|
36720
37295
|
# The TensorBoard app settings.
|
36721
37296
|
# @return [Types::TensorBoardAppSettings]
|
36722
37297
|
#
|
37298
|
+
# @!attribute [rw] r_studio_server_pro_app_settings
|
37299
|
+
# A collection of settings that configure user interaction with the
|
37300
|
+
# `RStudioServerPro` app.
|
37301
|
+
# @return [Types::RStudioServerProAppSettings]
|
37302
|
+
#
|
37303
|
+
# @!attribute [rw] r_session_app_settings
|
37304
|
+
# A collection of settings that configure the `RSessionGateway` app.
|
37305
|
+
# @return [Types::RSessionAppSettings]
|
37306
|
+
#
|
36723
37307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
|
36724
37308
|
#
|
36725
37309
|
class UserSettings < Struct.new(
|
@@ -36728,7 +37312,9 @@ module Aws::SageMaker
|
|
36728
37312
|
:sharing_settings,
|
36729
37313
|
:jupyter_server_app_settings,
|
36730
37314
|
:kernel_gateway_app_settings,
|
36731
|
-
:tensor_board_app_settings
|
37315
|
+
:tensor_board_app_settings,
|
37316
|
+
:r_studio_server_pro_app_settings,
|
37317
|
+
:r_session_app_settings)
|
36732
37318
|
SENSITIVE = []
|
36733
37319
|
include Aws::Structure
|
36734
37320
|
end
|