aws-sdk-sagemaker 1.104.0 → 1.108.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 +346 -20
- data/lib/aws-sdk-sagemaker/client_api.rb +170 -2
- data/lib/aws-sdk-sagemaker/types.rb +893 -41
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +4 -4
@@ -222,7 +222,8 @@ module Aws::SageMaker
|
|
222
222
|
include Aws::Structure
|
223
223
|
end
|
224
224
|
|
225
|
-
#
|
225
|
+
# An Amazon CloudWatch alarm configured to monitor metrics on an
|
226
|
+
# endpoint.
|
226
227
|
#
|
227
228
|
# @note When making an API call, you may pass Alarm
|
228
229
|
# data as a hash:
|
@@ -232,6 +233,7 @@ module Aws::SageMaker
|
|
232
233
|
# }
|
233
234
|
#
|
234
235
|
# @!attribute [rw] alarm_name
|
236
|
+
# The name of a CloudWatch alarm in your account.
|
235
237
|
# @return [String]
|
236
238
|
#
|
237
239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Alarm AWS API Documentation
|
@@ -2402,7 +2404,8 @@ module Aws::SageMaker
|
|
2402
2404
|
include Aws::Structure
|
2403
2405
|
end
|
2404
2406
|
|
2405
|
-
#
|
2407
|
+
# Automatic rollback configuration for handling endpoint deployment
|
2408
|
+
# failures and recovery.
|
2406
2409
|
#
|
2407
2410
|
# @note When making an API call, you may pass AutoRollbackConfig
|
2408
2411
|
# data as a hash:
|
@@ -2416,6 +2419,9 @@ module Aws::SageMaker
|
|
2416
2419
|
# }
|
2417
2420
|
#
|
2418
2421
|
# @!attribute [rw] alarms
|
2422
|
+
# List of CloudWatch alarms in your account that are configured to
|
2423
|
+
# monitor metrics on an endpoint. If any alarms are tripped during a
|
2424
|
+
# deployment, SageMaker rolls back the deployment.
|
2419
2425
|
# @return [Array<Types::Alarm>]
|
2420
2426
|
#
|
2421
2427
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoRollbackConfig AWS API Documentation
|
@@ -2426,6 +2432,110 @@ module Aws::SageMaker
|
|
2426
2432
|
include Aws::Structure
|
2427
2433
|
end
|
2428
2434
|
|
2435
|
+
# The error code and error description associated with the resource.
|
2436
|
+
#
|
2437
|
+
# @!attribute [rw] error_code
|
2438
|
+
# @return [String]
|
2439
|
+
#
|
2440
|
+
# @!attribute [rw] error_response
|
2441
|
+
# @return [String]
|
2442
|
+
#
|
2443
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackageError AWS API Documentation
|
2444
|
+
#
|
2445
|
+
class BatchDescribeModelPackageError < Struct.new(
|
2446
|
+
:error_code,
|
2447
|
+
:error_response)
|
2448
|
+
SENSITIVE = []
|
2449
|
+
include Aws::Structure
|
2450
|
+
end
|
2451
|
+
|
2452
|
+
# @note When making an API call, you may pass BatchDescribeModelPackageInput
|
2453
|
+
# data as a hash:
|
2454
|
+
#
|
2455
|
+
# {
|
2456
|
+
# model_package_arn_list: ["ModelPackageArn"], # required
|
2457
|
+
# }
|
2458
|
+
#
|
2459
|
+
# @!attribute [rw] model_package_arn_list
|
2460
|
+
# The list of Amazon Resource Name (ARN) of the model package groups.
|
2461
|
+
# @return [Array<String>]
|
2462
|
+
#
|
2463
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackageInput AWS API Documentation
|
2464
|
+
#
|
2465
|
+
class BatchDescribeModelPackageInput < Struct.new(
|
2466
|
+
:model_package_arn_list)
|
2467
|
+
SENSITIVE = []
|
2468
|
+
include Aws::Structure
|
2469
|
+
end
|
2470
|
+
|
2471
|
+
# @!attribute [rw] model_package_summaries
|
2472
|
+
# The summaries for the model package versions
|
2473
|
+
# @return [Hash<String,Types::BatchDescribeModelPackageSummary>]
|
2474
|
+
#
|
2475
|
+
# @!attribute [rw] batch_describe_model_package_error_map
|
2476
|
+
# A map of the resource and BatchDescribeModelPackageError objects
|
2477
|
+
# reporting the error associated with describing the model package.
|
2478
|
+
# @return [Hash<String,Types::BatchDescribeModelPackageError>]
|
2479
|
+
#
|
2480
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackageOutput AWS API Documentation
|
2481
|
+
#
|
2482
|
+
class BatchDescribeModelPackageOutput < Struct.new(
|
2483
|
+
:model_package_summaries,
|
2484
|
+
:batch_describe_model_package_error_map)
|
2485
|
+
SENSITIVE = []
|
2486
|
+
include Aws::Structure
|
2487
|
+
end
|
2488
|
+
|
2489
|
+
# Provides summary information about the model package.
|
2490
|
+
#
|
2491
|
+
# @!attribute [rw] model_package_group_name
|
2492
|
+
# The group name for the model package
|
2493
|
+
# @return [String]
|
2494
|
+
#
|
2495
|
+
# @!attribute [rw] model_package_version
|
2496
|
+
# The version number of a versioned model.
|
2497
|
+
# @return [Integer]
|
2498
|
+
#
|
2499
|
+
# @!attribute [rw] model_package_arn
|
2500
|
+
# The Amazon Resource Name (ARN) of the model package.
|
2501
|
+
# @return [String]
|
2502
|
+
#
|
2503
|
+
# @!attribute [rw] model_package_description
|
2504
|
+
# The description of the model package.
|
2505
|
+
# @return [String]
|
2506
|
+
#
|
2507
|
+
# @!attribute [rw] creation_time
|
2508
|
+
# The creation time of the mortgage package summary.
|
2509
|
+
# @return [Time]
|
2510
|
+
#
|
2511
|
+
# @!attribute [rw] inference_specification
|
2512
|
+
# Defines how to perform inference generation after a training job is
|
2513
|
+
# run.
|
2514
|
+
# @return [Types::InferenceSpecification]
|
2515
|
+
#
|
2516
|
+
# @!attribute [rw] model_package_status
|
2517
|
+
# The status of the mortgage package.
|
2518
|
+
# @return [String]
|
2519
|
+
#
|
2520
|
+
# @!attribute [rw] model_approval_status
|
2521
|
+
# The approval status of the model.
|
2522
|
+
# @return [String]
|
2523
|
+
#
|
2524
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BatchDescribeModelPackageSummary AWS API Documentation
|
2525
|
+
#
|
2526
|
+
class BatchDescribeModelPackageSummary < Struct.new(
|
2527
|
+
:model_package_group_name,
|
2528
|
+
:model_package_version,
|
2529
|
+
:model_package_arn,
|
2530
|
+
:model_package_description,
|
2531
|
+
:creation_time,
|
2532
|
+
:inference_specification,
|
2533
|
+
:model_package_status,
|
2534
|
+
:model_approval_status)
|
2535
|
+
SENSITIVE = []
|
2536
|
+
include Aws::Structure
|
2537
|
+
end
|
2538
|
+
|
2429
2539
|
# Contains bias metrics for a model.
|
2430
2540
|
#
|
2431
2541
|
# @note When making an API call, you may pass Bias
|
@@ -2451,31 +2561,49 @@ module Aws::SageMaker
|
|
2451
2561
|
include Aws::Structure
|
2452
2562
|
end
|
2453
2563
|
|
2454
|
-
#
|
2564
|
+
# Update policy for a blue/green deployment. If this update policy is
|
2565
|
+
# specified, SageMaker creates a new fleet during the deployment while
|
2566
|
+
# maintaining the old fleet. SageMaker flips traffic to the new fleet
|
2567
|
+
# according to the specified traffic routing configuration. Only one
|
2568
|
+
# update policy should be used in the deployment configuration. If no
|
2569
|
+
# update policy is specified, SageMaker uses a blue/green deployment
|
2570
|
+
# strategy with all at once traffic shifting by default.
|
2455
2571
|
#
|
2456
2572
|
# @note When making an API call, you may pass BlueGreenUpdatePolicy
|
2457
2573
|
# data as a hash:
|
2458
2574
|
#
|
2459
2575
|
# {
|
2460
2576
|
# traffic_routing_configuration: { # required
|
2461
|
-
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
|
2577
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
2462
2578
|
# wait_interval_in_seconds: 1, # required
|
2463
2579
|
# canary_size: {
|
2464
2580
|
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
2465
2581
|
# value: 1, # required
|
2466
2582
|
# },
|
2583
|
+
# linear_step_size: {
|
2584
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
2585
|
+
# value: 1, # required
|
2586
|
+
# },
|
2467
2587
|
# },
|
2468
2588
|
# termination_wait_in_seconds: 1,
|
2469
2589
|
# maximum_execution_timeout_in_seconds: 1,
|
2470
2590
|
# }
|
2471
2591
|
#
|
2472
2592
|
# @!attribute [rw] traffic_routing_configuration
|
2593
|
+
# Defines the traffic routing strategy to shift traffic from the old
|
2594
|
+
# fleet to the new fleet during an endpoint deployment.
|
2473
2595
|
# @return [Types::TrafficRoutingConfig]
|
2474
2596
|
#
|
2475
2597
|
# @!attribute [rw] termination_wait_in_seconds
|
2598
|
+
# Additional waiting time in seconds after the completion of an
|
2599
|
+
# endpoint deployment before terminating the old endpoint fleet.
|
2600
|
+
# Default is 0.
|
2476
2601
|
# @return [Integer]
|
2477
2602
|
#
|
2478
2603
|
# @!attribute [rw] maximum_execution_timeout_in_seconds
|
2604
|
+
# Maximum execution timeout for the deployment. Note that the timeout
|
2605
|
+
# value should be larger than the total waiting time specified in
|
2606
|
+
# `TerminationWaitInSeconds` and `WaitIntervalInSeconds`.
|
2479
2607
|
# @return [Integer]
|
2480
2608
|
#
|
2481
2609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BlueGreenUpdatePolicy AWS API Documentation
|
@@ -2562,7 +2690,7 @@ module Aws::SageMaker
|
|
2562
2690
|
include Aws::Structure
|
2563
2691
|
end
|
2564
2692
|
|
2565
|
-
#
|
2693
|
+
# Specifies the endpoint capacity to activate for production.
|
2566
2694
|
#
|
2567
2695
|
# @note When making an API call, you may pass CapacitySize
|
2568
2696
|
# data as a hash:
|
@@ -2573,10 +2701,18 @@ module Aws::SageMaker
|
|
2573
2701
|
# }
|
2574
2702
|
#
|
2575
2703
|
# @!attribute [rw] type
|
2576
|
-
#
|
2704
|
+
# Specifies the endpoint capacity type.
|
2705
|
+
#
|
2706
|
+
# * `INSTANCE_COUNT`\: The endpoint activates based on the number of
|
2707
|
+
# instances.
|
2708
|
+
#
|
2709
|
+
# * `CAPACITY_PERCENT`\: The endpoint activates based on the specified
|
2710
|
+
# percentage of capacity.
|
2577
2711
|
# @return [String]
|
2578
2712
|
#
|
2579
2713
|
# @!attribute [rw] value
|
2714
|
+
# Defines the capacity size, either as a number of instances or a
|
2715
|
+
# capacity percentage.
|
2580
2716
|
# @return [Integer]
|
2581
2717
|
#
|
2582
2718
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CapacitySize AWS API Documentation
|
@@ -3856,7 +3992,7 @@ module Aws::SageMaker
|
|
3856
3992
|
# {
|
3857
3993
|
# domain_id: "DomainId", # required
|
3858
3994
|
# user_profile_name: "UserProfileName", # required
|
3859
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
3995
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
3860
3996
|
# app_name: "AppName", # required
|
3861
3997
|
# tags: [
|
3862
3998
|
# {
|
@@ -4696,6 +4832,12 @@ module Aws::SageMaker
|
|
4696
4832
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
4697
4833
|
# },
|
4698
4834
|
# },
|
4835
|
+
# r_studio_server_pro_app_settings: {
|
4836
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
4837
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
4838
|
+
# },
|
4839
|
+
# r_session_app_settings: {
|
4840
|
+
# },
|
4699
4841
|
# },
|
4700
4842
|
# subnet_ids: ["SubnetId"], # required
|
4701
4843
|
# vpc_id: "VpcId", # required
|
@@ -4708,6 +4850,21 @@ module Aws::SageMaker
|
|
4708
4850
|
# app_network_access_type: "PublicInternetOnly", # accepts PublicInternetOnly, VpcOnly
|
4709
4851
|
# home_efs_file_system_kms_key_id: "KmsKeyId",
|
4710
4852
|
# kms_key_id: "KmsKeyId",
|
4853
|
+
# app_security_group_management: "Service", # accepts Service, Customer
|
4854
|
+
# domain_settings: {
|
4855
|
+
# security_group_ids: ["SecurityGroupId"],
|
4856
|
+
# r_studio_server_pro_domain_settings: {
|
4857
|
+
# domain_execution_role_arn: "RoleArn", # required
|
4858
|
+
# r_studio_connect_url: "String",
|
4859
|
+
# r_studio_package_manager_url: "String",
|
4860
|
+
# default_resource_spec: {
|
4861
|
+
# sage_maker_image_arn: "ImageArn",
|
4862
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
4863
|
+
# 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
|
4864
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
4865
|
+
# },
|
4866
|
+
# },
|
4867
|
+
# },
|
4711
4868
|
# }
|
4712
4869
|
#
|
4713
4870
|
# @!attribute [rw] domain_name
|
@@ -4768,6 +4925,18 @@ module Aws::SageMaker
|
|
4768
4925
|
# default. For more control, specify a customer managed key.
|
4769
4926
|
# @return [String]
|
4770
4927
|
#
|
4928
|
+
# @!attribute [rw] app_security_group_management
|
4929
|
+
# The entity that creates and manages the required security groups for
|
4930
|
+
# inter-app communication in `VPCOnly` mode. Required when
|
4931
|
+
# `CreateDomain.AppNetworkAccessType` is `VPCOnly` and
|
4932
|
+
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
4933
|
+
# is provided.
|
4934
|
+
# @return [String]
|
4935
|
+
#
|
4936
|
+
# @!attribute [rw] domain_settings
|
4937
|
+
# A collection of `Domain` settings.
|
4938
|
+
# @return [Types::DomainSettings]
|
4939
|
+
#
|
4771
4940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomainRequest AWS API Documentation
|
4772
4941
|
#
|
4773
4942
|
class CreateDomainRequest < Struct.new(
|
@@ -4779,7 +4948,9 @@ module Aws::SageMaker
|
|
4779
4948
|
:tags,
|
4780
4949
|
:app_network_access_type,
|
4781
4950
|
:home_efs_file_system_kms_key_id,
|
4782
|
-
:kms_key_id
|
4951
|
+
:kms_key_id,
|
4952
|
+
:app_security_group_management,
|
4953
|
+
:domain_settings)
|
4783
4954
|
SENSITIVE = []
|
4784
4955
|
include Aws::Structure
|
4785
4956
|
end
|
@@ -5046,6 +5217,31 @@ module Aws::SageMaker
|
|
5046
5217
|
# {
|
5047
5218
|
# endpoint_name: "EndpointName", # required
|
5048
5219
|
# endpoint_config_name: "EndpointConfigName", # required
|
5220
|
+
# deployment_config: {
|
5221
|
+
# blue_green_update_policy: { # required
|
5222
|
+
# traffic_routing_configuration: { # required
|
5223
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
5224
|
+
# wait_interval_in_seconds: 1, # required
|
5225
|
+
# canary_size: {
|
5226
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
5227
|
+
# value: 1, # required
|
5228
|
+
# },
|
5229
|
+
# linear_step_size: {
|
5230
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
5231
|
+
# value: 1, # required
|
5232
|
+
# },
|
5233
|
+
# },
|
5234
|
+
# termination_wait_in_seconds: 1,
|
5235
|
+
# maximum_execution_timeout_in_seconds: 1,
|
5236
|
+
# },
|
5237
|
+
# auto_rollback_configuration: {
|
5238
|
+
# alarms: [
|
5239
|
+
# {
|
5240
|
+
# alarm_name: "AlarmName",
|
5241
|
+
# },
|
5242
|
+
# ],
|
5243
|
+
# },
|
5244
|
+
# },
|
5049
5245
|
# tags: [
|
5050
5246
|
# {
|
5051
5247
|
# key: "TagKey", # required
|
@@ -5066,6 +5262,11 @@ module Aws::SageMaker
|
|
5066
5262
|
# CreateEndpointConfig.
|
5067
5263
|
# @return [String]
|
5068
5264
|
#
|
5265
|
+
# @!attribute [rw] deployment_config
|
5266
|
+
# The deployment configuration for an endpoint, which contains the
|
5267
|
+
# desired deployment strategy and rollback configurations.
|
5268
|
+
# @return [Types::DeploymentConfig]
|
5269
|
+
#
|
5069
5270
|
# @!attribute [rw] tags
|
5070
5271
|
# An array of key-value pairs. You can use tags to categorize your
|
5071
5272
|
# Amazon Web Services resources in different ways, for example, by
|
@@ -5082,6 +5283,7 @@ module Aws::SageMaker
|
|
5082
5283
|
class CreateEndpointInput < Struct.new(
|
5083
5284
|
:endpoint_name,
|
5084
5285
|
:endpoint_config_name,
|
5286
|
+
:deployment_config,
|
5085
5287
|
:tags)
|
5086
5288
|
SENSITIVE = []
|
5087
5289
|
include Aws::Structure
|
@@ -6772,7 +6974,7 @@ module Aws::SageMaker
|
|
6772
6974
|
#
|
6773
6975
|
# {
|
6774
6976
|
# model_package_name: "EntityName",
|
6775
|
-
# model_package_group_name: "
|
6977
|
+
# model_package_group_name: "ArnOrName",
|
6776
6978
|
# model_package_description: "EntityDescription",
|
6777
6979
|
# inference_specification: {
|
6778
6980
|
# containers: [ # required
|
@@ -6893,6 +7095,9 @@ module Aws::SageMaker
|
|
6893
7095
|
# },
|
6894
7096
|
# },
|
6895
7097
|
# client_token: "ClientToken",
|
7098
|
+
# customer_metadata_properties: {
|
7099
|
+
# "CustomerMetadataKey" => "CustomerMetadataValue",
|
7100
|
+
# },
|
6896
7101
|
# }
|
6897
7102
|
#
|
6898
7103
|
# @!attribute [rw] model_package_name
|
@@ -6904,7 +7109,8 @@ module Aws::SageMaker
|
|
6904
7109
|
# @return [String]
|
6905
7110
|
#
|
6906
7111
|
# @!attribute [rw] model_package_group_name
|
6907
|
-
# The name
|
7112
|
+
# The name or Amazon Resource Name (ARN) of the model package group
|
7113
|
+
# that this model version belongs to.
|
6908
7114
|
#
|
6909
7115
|
# This parameter is required for versioned models, and does not apply
|
6910
7116
|
# to unversioned models.
|
@@ -6983,6 +7189,10 @@ module Aws::SageMaker
|
|
6983
7189
|
# not need to pass this option.
|
6984
7190
|
# @return [String]
|
6985
7191
|
#
|
7192
|
+
# @!attribute [rw] customer_metadata_properties
|
7193
|
+
# The metadata properties associated with the model package versions.
|
7194
|
+
# @return [Hash<String,String>]
|
7195
|
+
#
|
6986
7196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageInput AWS API Documentation
|
6987
7197
|
#
|
6988
7198
|
class CreateModelPackageInput < Struct.new(
|
@@ -6997,7 +7207,8 @@ module Aws::SageMaker
|
|
6997
7207
|
:model_approval_status,
|
6998
7208
|
:metadata_properties,
|
6999
7209
|
:model_metrics,
|
7000
|
-
:client_token
|
7210
|
+
:client_token,
|
7211
|
+
:customer_metadata_properties)
|
7001
7212
|
SENSITIVE = []
|
7002
7213
|
include Aws::Structure
|
7003
7214
|
end
|
@@ -8937,6 +9148,12 @@ module Aws::SageMaker
|
|
8937
9148
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
8938
9149
|
# },
|
8939
9150
|
# },
|
9151
|
+
# r_studio_server_pro_app_settings: {
|
9152
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
9153
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
9154
|
+
# },
|
9155
|
+
# r_session_app_settings: {
|
9156
|
+
# },
|
8940
9157
|
# },
|
8941
9158
|
# }
|
8942
9159
|
#
|
@@ -9940,7 +10157,7 @@ module Aws::SageMaker
|
|
9940
10157
|
# {
|
9941
10158
|
# domain_id: "DomainId", # required
|
9942
10159
|
# user_profile_name: "UserProfileName", # required
|
9943
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
10160
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
9944
10161
|
# app_name: "AppName", # required
|
9945
10162
|
# }
|
9946
10163
|
#
|
@@ -10850,7 +11067,8 @@ module Aws::SageMaker
|
|
10850
11067
|
include Aws::Structure
|
10851
11068
|
end
|
10852
11069
|
|
10853
|
-
#
|
11070
|
+
# The deployment configuration for an endpoint, which contains the
|
11071
|
+
# desired deployment strategy and rollback configurations.
|
10854
11072
|
#
|
10855
11073
|
# @note When making an API call, you may pass DeploymentConfig
|
10856
11074
|
# data as a hash:
|
@@ -10858,12 +11076,16 @@ module Aws::SageMaker
|
|
10858
11076
|
# {
|
10859
11077
|
# blue_green_update_policy: { # required
|
10860
11078
|
# traffic_routing_configuration: { # required
|
10861
|
-
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
|
11079
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
10862
11080
|
# wait_interval_in_seconds: 1, # required
|
10863
11081
|
# canary_size: {
|
10864
11082
|
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
10865
11083
|
# value: 1, # required
|
10866
11084
|
# },
|
11085
|
+
# linear_step_size: {
|
11086
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
11087
|
+
# value: 1, # required
|
11088
|
+
# },
|
10867
11089
|
# },
|
10868
11090
|
# termination_wait_in_seconds: 1,
|
10869
11091
|
# maximum_execution_timeout_in_seconds: 1,
|
@@ -10878,9 +11100,18 @@ module Aws::SageMaker
|
|
10878
11100
|
# }
|
10879
11101
|
#
|
10880
11102
|
# @!attribute [rw] blue_green_update_policy
|
11103
|
+
# Update policy for a blue/green deployment. If this update policy is
|
11104
|
+
# specified, SageMaker creates a new fleet during the deployment while
|
11105
|
+
# maintaining the old fleet. SageMaker flips traffic to the new fleet
|
11106
|
+
# according to the specified traffic routing configuration. Only one
|
11107
|
+
# update policy should be used in the deployment configuration. If no
|
11108
|
+
# update policy is specified, SageMaker uses a blue/green deployment
|
11109
|
+
# strategy with all at once traffic shifting by default.
|
10881
11110
|
# @return [Types::BlueGreenUpdatePolicy]
|
10882
11111
|
#
|
10883
11112
|
# @!attribute [rw] auto_rollback_configuration
|
11113
|
+
# Automatic rollback configuration for handling endpoint deployment
|
11114
|
+
# failures and recovery.
|
10884
11115
|
# @return [Types::AutoRollbackConfig]
|
10885
11116
|
#
|
10886
11117
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeploymentConfig AWS API Documentation
|
@@ -11146,7 +11377,7 @@ module Aws::SageMaker
|
|
11146
11377
|
# {
|
11147
11378
|
# domain_id: "DomainId", # required
|
11148
11379
|
# user_profile_name: "UserProfileName", # required
|
11149
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
11380
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
11150
11381
|
# app_name: "AppName", # required
|
11151
11382
|
# }
|
11152
11383
|
#
|
@@ -11957,6 +12188,10 @@ module Aws::SageMaker
|
|
11957
12188
|
# to need tokening.
|
11958
12189
|
# @return [String]
|
11959
12190
|
#
|
12191
|
+
# @!attribute [rw] agent_version
|
12192
|
+
# Edge Manager agent version.
|
12193
|
+
# @return [String]
|
12194
|
+
#
|
11960
12195
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDeviceResponse AWS API Documentation
|
11961
12196
|
#
|
11962
12197
|
class DescribeDeviceResponse < Struct.new(
|
@@ -11969,7 +12204,8 @@ module Aws::SageMaker
|
|
11969
12204
|
:latest_heartbeat,
|
11970
12205
|
:models,
|
11971
12206
|
:max_models,
|
11972
|
-
:next_token
|
12207
|
+
:next_token,
|
12208
|
+
:agent_version)
|
11973
12209
|
SENSITIVE = []
|
11974
12210
|
include Aws::Structure
|
11975
12211
|
end
|
@@ -12072,6 +12308,23 @@ module Aws::SageMaker
|
|
12072
12308
|
# EFS volume attached to the domain.
|
12073
12309
|
# @return [String]
|
12074
12310
|
#
|
12311
|
+
# @!attribute [rw] domain_settings
|
12312
|
+
# A collection of `Domain` settings.
|
12313
|
+
# @return [Types::DomainSettings]
|
12314
|
+
#
|
12315
|
+
# @!attribute [rw] app_security_group_management
|
12316
|
+
# The entity that creates and manages the required security groups for
|
12317
|
+
# inter-app communication in `VPCOnly` mode. Required when
|
12318
|
+
# `CreateDomain.AppNetworkAccessType` is `VPCOnly` and
|
12319
|
+
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
12320
|
+
# is provided.
|
12321
|
+
# @return [String]
|
12322
|
+
#
|
12323
|
+
# @!attribute [rw] security_group_id_for_domain_boundary
|
12324
|
+
# The ID of the security group that authorizes traffic between the
|
12325
|
+
# `RSessionGateway` apps and the `RStudioServerPro` app.
|
12326
|
+
# @return [String]
|
12327
|
+
#
|
12075
12328
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomainResponse AWS API Documentation
|
12076
12329
|
#
|
12077
12330
|
class DescribeDomainResponse < Struct.new(
|
@@ -12091,7 +12344,10 @@ module Aws::SageMaker
|
|
12091
12344
|
:subnet_ids,
|
12092
12345
|
:url,
|
12093
12346
|
:vpc_id,
|
12094
|
-
:kms_key_id
|
12347
|
+
:kms_key_id,
|
12348
|
+
:domain_settings,
|
12349
|
+
:app_security_group_management,
|
12350
|
+
:security_group_id_for_domain_boundary)
|
12095
12351
|
SENSITIVE = []
|
12096
12352
|
include Aws::Structure
|
12097
12353
|
end
|
@@ -12369,6 +12625,12 @@ module Aws::SageMaker
|
|
12369
12625
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html
|
12370
12626
|
# @return [Types::AsyncInferenceConfig]
|
12371
12627
|
#
|
12628
|
+
# @!attribute [rw] pending_deployment_summary
|
12629
|
+
# Returns the summary of an in-progress deployment. This field is only
|
12630
|
+
# returned when the endpoint is creating or updating with a new
|
12631
|
+
# endpoint configuration.
|
12632
|
+
# @return [Types::PendingDeploymentSummary]
|
12633
|
+
#
|
12372
12634
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointOutput AWS API Documentation
|
12373
12635
|
#
|
12374
12636
|
class DescribeEndpointOutput < Struct.new(
|
@@ -12382,7 +12644,8 @@ module Aws::SageMaker
|
|
12382
12644
|
:creation_time,
|
12383
12645
|
:last_modified_time,
|
12384
12646
|
:last_deployment_config,
|
12385
|
-
:async_inference_config
|
12647
|
+
:async_inference_config,
|
12648
|
+
:pending_deployment_summary)
|
12386
12649
|
SENSITIVE = []
|
12387
12650
|
include Aws::Structure
|
12388
12651
|
end
|
@@ -13535,8 +13798,8 @@ module Aws::SageMaker
|
|
13535
13798
|
# @return [Types::SourceAlgorithmSpecification]
|
13536
13799
|
#
|
13537
13800
|
# @!attribute [rw] validation_specification
|
13538
|
-
# Configurations for one or more transform jobs that
|
13539
|
-
#
|
13801
|
+
# Configurations for one or more transform jobs that SageMaker runs to
|
13802
|
+
# test the model package.
|
13540
13803
|
# @return [Types::ModelPackageValidationSpecification]
|
13541
13804
|
#
|
13542
13805
|
# @!attribute [rw] model_package_status
|
@@ -13583,6 +13846,10 @@ module Aws::SageMaker
|
|
13583
13846
|
# A description provided for the model approval.
|
13584
13847
|
# @return [String]
|
13585
13848
|
#
|
13849
|
+
# @!attribute [rw] customer_metadata_properties
|
13850
|
+
# The metadata properties associated with the model package versions.
|
13851
|
+
# @return [Hash<String,String>]
|
13852
|
+
#
|
13586
13853
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
|
13587
13854
|
#
|
13588
13855
|
class DescribeModelPackageOutput < Struct.new(
|
@@ -13604,7 +13871,8 @@ module Aws::SageMaker
|
|
13604
13871
|
:model_metrics,
|
13605
13872
|
:last_modified_time,
|
13606
13873
|
:last_modified_by,
|
13607
|
-
:approval_description
|
13874
|
+
:approval_description,
|
13875
|
+
:customer_metadata_properties)
|
13608
13876
|
SENSITIVE = []
|
13609
13877
|
include Aws::Structure
|
13610
13878
|
end
|
@@ -14449,6 +14717,15 @@ module Aws::SageMaker
|
|
14449
14717
|
# The time when the project was created.
|
14450
14718
|
# @return [Time]
|
14451
14719
|
#
|
14720
|
+
# @!attribute [rw] last_modified_time
|
14721
|
+
# The timestamp when project was last modified.
|
14722
|
+
# @return [Time]
|
14723
|
+
#
|
14724
|
+
# @!attribute [rw] last_modified_by
|
14725
|
+
# Information about the user who created or modified an experiment,
|
14726
|
+
# trial, trial component, or project.
|
14727
|
+
# @return [Types::UserContext]
|
14728
|
+
#
|
14452
14729
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeProjectOutput AWS API Documentation
|
14453
14730
|
#
|
14454
14731
|
class DescribeProjectOutput < Struct.new(
|
@@ -14460,7 +14737,9 @@ module Aws::SageMaker
|
|
14460
14737
|
:service_catalog_provisioned_product_details,
|
14461
14738
|
:project_status,
|
14462
14739
|
:created_by,
|
14463
|
-
:creation_time
|
14740
|
+
:creation_time,
|
14741
|
+
:last_modified_time,
|
14742
|
+
:last_modified_by)
|
14464
14743
|
SENSITIVE = []
|
14465
14744
|
include Aws::Structure
|
14466
14745
|
end
|
@@ -15608,6 +15887,10 @@ module Aws::SageMaker
|
|
15608
15887
|
# Models on the device.
|
15609
15888
|
# @return [Array<Types::EdgeModelSummary>]
|
15610
15889
|
#
|
15890
|
+
# @!attribute [rw] agent_version
|
15891
|
+
# Edge Manager agent version.
|
15892
|
+
# @return [String]
|
15893
|
+
#
|
15611
15894
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeviceSummary AWS API Documentation
|
15612
15895
|
#
|
15613
15896
|
class DeviceSummary < Struct.new(
|
@@ -15618,7 +15901,8 @@ module Aws::SageMaker
|
|
15618
15901
|
:iot_thing_name,
|
15619
15902
|
:registration_time,
|
15620
15903
|
:latest_heartbeat,
|
15621
|
-
:models
|
15904
|
+
:models,
|
15905
|
+
:agent_version)
|
15622
15906
|
SENSITIVE = []
|
15623
15907
|
include Aws::Structure
|
15624
15908
|
end
|
@@ -15719,6 +16003,77 @@ module Aws::SageMaker
|
|
15719
16003
|
include Aws::Structure
|
15720
16004
|
end
|
15721
16005
|
|
16006
|
+
# A collection of settings that apply to the `SageMaker Domain`. These
|
16007
|
+
# settings are specified through the `CreateDomain` API call.
|
16008
|
+
#
|
16009
|
+
# @note When making an API call, you may pass DomainSettings
|
16010
|
+
# data as a hash:
|
16011
|
+
#
|
16012
|
+
# {
|
16013
|
+
# security_group_ids: ["SecurityGroupId"],
|
16014
|
+
# r_studio_server_pro_domain_settings: {
|
16015
|
+
# domain_execution_role_arn: "RoleArn", # required
|
16016
|
+
# r_studio_connect_url: "String",
|
16017
|
+
# r_studio_package_manager_url: "String",
|
16018
|
+
# default_resource_spec: {
|
16019
|
+
# sage_maker_image_arn: "ImageArn",
|
16020
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
16021
|
+
# 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
|
16022
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
16023
|
+
# },
|
16024
|
+
# },
|
16025
|
+
# }
|
16026
|
+
#
|
16027
|
+
# @!attribute [rw] security_group_ids
|
16028
|
+
# The security groups for the Amazon Virtual Private Cloud that the
|
16029
|
+
# `Domain` uses for communication between Domain-level apps and user
|
16030
|
+
# apps.
|
16031
|
+
# @return [Array<String>]
|
16032
|
+
#
|
16033
|
+
# @!attribute [rw] r_studio_server_pro_domain_settings
|
16034
|
+
# A collection of settings that configure the `RStudioServerPro`
|
16035
|
+
# Domain-level app.
|
16036
|
+
# @return [Types::RStudioServerProDomainSettings]
|
16037
|
+
#
|
16038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettings AWS API Documentation
|
16039
|
+
#
|
16040
|
+
class DomainSettings < Struct.new(
|
16041
|
+
:security_group_ids,
|
16042
|
+
:r_studio_server_pro_domain_settings)
|
16043
|
+
SENSITIVE = []
|
16044
|
+
include Aws::Structure
|
16045
|
+
end
|
16046
|
+
|
16047
|
+
# A collection of `Domain` configuration settings to update.
|
16048
|
+
#
|
16049
|
+
# @note When making an API call, you may pass DomainSettingsForUpdate
|
16050
|
+
# data as a hash:
|
16051
|
+
#
|
16052
|
+
# {
|
16053
|
+
# r_studio_server_pro_domain_settings_for_update: {
|
16054
|
+
# domain_execution_role_arn: "RoleArn", # required
|
16055
|
+
# default_resource_spec: {
|
16056
|
+
# sage_maker_image_arn: "ImageArn",
|
16057
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
16058
|
+
# 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
|
16059
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
16060
|
+
# },
|
16061
|
+
# },
|
16062
|
+
# }
|
16063
|
+
#
|
16064
|
+
# @!attribute [rw] r_studio_server_pro_domain_settings_for_update
|
16065
|
+
# A collection of `RStudioServerPro` Domain-level app settings to
|
16066
|
+
# update.
|
16067
|
+
# @return [Types::RStudioServerProDomainSettingsForUpdate]
|
16068
|
+
#
|
16069
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettingsForUpdate AWS API Documentation
|
16070
|
+
#
|
16071
|
+
class DomainSettingsForUpdate < Struct.new(
|
16072
|
+
:r_studio_server_pro_domain_settings_for_update)
|
16073
|
+
SENSITIVE = []
|
16074
|
+
include Aws::Structure
|
16075
|
+
end
|
16076
|
+
|
15722
16077
|
# The model on the edge device.
|
15723
16078
|
#
|
15724
16079
|
# @!attribute [rw] model_name
|
@@ -18326,7 +18681,8 @@ module Aws::SageMaker
|
|
18326
18681
|
# (28,800 seconds).
|
18327
18682
|
#
|
18328
18683
|
# * For [3D point cloud][4] and [video frame][5] labeling jobs, the
|
18329
|
-
# maximum is
|
18684
|
+
# maximum is 30 days (2952,000 seconds) for non-AL mode. For most
|
18685
|
+
# users, the maximum is also 30 days. If you want to change these
|
18330
18686
|
# limits, contact Amazon Web Services Support.
|
18331
18687
|
#
|
18332
18688
|
#
|
@@ -18348,9 +18704,9 @@ module Aws::SageMaker
|
|
18348
18704
|
# seconds).
|
18349
18705
|
#
|
18350
18706
|
# * If you choose a private or vendor workforce, the default value is
|
18351
|
-
#
|
18352
|
-
# days. If you want to change this limit, contact
|
18353
|
-
# Services Support.
|
18707
|
+
# 30 days (2592,000 seconds) for non-AL mode. For most users, the
|
18708
|
+
# maximum is also 30 days. If you want to change this limit, contact
|
18709
|
+
# Amazon Web Services Support.
|
18354
18710
|
# @return [Integer]
|
18355
18711
|
#
|
18356
18712
|
# @!attribute [rw] max_concurrent_task_count
|
@@ -25919,6 +26275,10 @@ module Aws::SageMaker
|
|
25919
26275
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
25920
26276
|
# @return [Array<Types::Tag>]
|
25921
26277
|
#
|
26278
|
+
# @!attribute [rw] customer_metadata_properties
|
26279
|
+
# The metadata properties for the model package.
|
26280
|
+
# @return [Hash<String,String>]
|
26281
|
+
#
|
25922
26282
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackage AWS API Documentation
|
25923
26283
|
#
|
25924
26284
|
class ModelPackage < Struct.new(
|
@@ -25941,7 +26301,8 @@ module Aws::SageMaker
|
|
25941
26301
|
:last_modified_time,
|
25942
26302
|
:last_modified_by,
|
25943
26303
|
:approval_description,
|
25944
|
-
:tags
|
26304
|
+
:tags,
|
26305
|
+
:customer_metadata_properties)
|
25945
26306
|
SENSITIVE = []
|
25946
26307
|
include Aws::Structure
|
25947
26308
|
end
|
@@ -28673,6 +29034,102 @@ module Aws::SageMaker
|
|
28673
29034
|
include Aws::Structure
|
28674
29035
|
end
|
28675
29036
|
|
29037
|
+
# The summary of an in-progress deployment when an endpoint is creating
|
29038
|
+
# or updating with a new endpoint configuration.
|
29039
|
+
#
|
29040
|
+
# @!attribute [rw] endpoint_config_name
|
29041
|
+
# The name of the endpoint configuration used in the deployment.
|
29042
|
+
# @return [String]
|
29043
|
+
#
|
29044
|
+
# @!attribute [rw] production_variants
|
29045
|
+
# List of `PendingProductionVariantSummary` objects.
|
29046
|
+
# @return [Array<Types::PendingProductionVariantSummary>]
|
29047
|
+
#
|
29048
|
+
# @!attribute [rw] start_time
|
29049
|
+
# The start time of the deployment.
|
29050
|
+
# @return [Time]
|
29051
|
+
#
|
29052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PendingDeploymentSummary AWS API Documentation
|
29053
|
+
#
|
29054
|
+
class PendingDeploymentSummary < Struct.new(
|
29055
|
+
:endpoint_config_name,
|
29056
|
+
:production_variants,
|
29057
|
+
:start_time)
|
29058
|
+
SENSITIVE = []
|
29059
|
+
include Aws::Structure
|
29060
|
+
end
|
29061
|
+
|
29062
|
+
# The production variant summary for a deployment when an endpoint is
|
29063
|
+
# creating or updating with the ` CreateEndpoint ` or ` UpdateEndpoint `
|
29064
|
+
# operations. Describes the `VariantStatus `, weight and capacity for a
|
29065
|
+
# production variant associated with an endpoint.
|
29066
|
+
#
|
29067
|
+
# @!attribute [rw] variant_name
|
29068
|
+
# The name of the variant.
|
29069
|
+
# @return [String]
|
29070
|
+
#
|
29071
|
+
# @!attribute [rw] deployed_images
|
29072
|
+
# An array of `DeployedImage` objects that specify the Amazon EC2
|
29073
|
+
# Container Registry paths of the inference images deployed on
|
29074
|
+
# instances of this `ProductionVariant`.
|
29075
|
+
# @return [Array<Types::DeployedImage>]
|
29076
|
+
#
|
29077
|
+
# @!attribute [rw] current_weight
|
29078
|
+
# The weight associated with the variant.
|
29079
|
+
# @return [Float]
|
29080
|
+
#
|
29081
|
+
# @!attribute [rw] desired_weight
|
29082
|
+
# The requested weight for the variant in this deployment, as
|
29083
|
+
# specified in the endpoint configuration for the endpoint. The value
|
29084
|
+
# is taken from the request to the ` CreateEndpointConfig ` operation.
|
29085
|
+
# @return [Float]
|
29086
|
+
#
|
29087
|
+
# @!attribute [rw] current_instance_count
|
29088
|
+
# The number of instances associated with the variant.
|
29089
|
+
# @return [Integer]
|
29090
|
+
#
|
29091
|
+
# @!attribute [rw] desired_instance_count
|
29092
|
+
# The number of instances requested in this deployment, as specified
|
29093
|
+
# in the endpoint configuration for the endpoint. The value is taken
|
29094
|
+
# from the request to the ` CreateEndpointConfig ` operation.
|
29095
|
+
# @return [Integer]
|
29096
|
+
#
|
29097
|
+
# @!attribute [rw] instance_type
|
29098
|
+
# The type of instances associated with the variant.
|
29099
|
+
# @return [String]
|
29100
|
+
#
|
29101
|
+
# @!attribute [rw] accelerator_type
|
29102
|
+
# The size of the Elastic Inference (EI) instance to use for the
|
29103
|
+
# production variant. EI instances provide on-demand GPU computing for
|
29104
|
+
# inference. For more information, see [Using Elastic Inference in
|
29105
|
+
# Amazon SageMaker][1].
|
29106
|
+
#
|
29107
|
+
#
|
29108
|
+
#
|
29109
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html
|
29110
|
+
# @return [String]
|
29111
|
+
#
|
29112
|
+
# @!attribute [rw] variant_status
|
29113
|
+
# The endpoint variant status which describes the current deployment
|
29114
|
+
# stage status or operational status.
|
29115
|
+
# @return [Array<Types::ProductionVariantStatus>]
|
29116
|
+
#
|
29117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PendingProductionVariantSummary AWS API Documentation
|
29118
|
+
#
|
29119
|
+
class PendingProductionVariantSummary < Struct.new(
|
29120
|
+
:variant_name,
|
29121
|
+
:deployed_images,
|
29122
|
+
:current_weight,
|
29123
|
+
:desired_weight,
|
29124
|
+
:current_instance_count,
|
29125
|
+
:desired_instance_count,
|
29126
|
+
:instance_type,
|
29127
|
+
:accelerator_type,
|
29128
|
+
:variant_status)
|
29129
|
+
SENSITIVE = []
|
29130
|
+
include Aws::Structure
|
29131
|
+
end
|
29132
|
+
|
28676
29133
|
# A SageMaker Model Building Pipeline instance.
|
28677
29134
|
#
|
28678
29135
|
# @!attribute [rw] pipeline_arn
|
@@ -29831,6 +30288,45 @@ module Aws::SageMaker
|
|
29831
30288
|
include Aws::Structure
|
29832
30289
|
end
|
29833
30290
|
|
30291
|
+
# Describes the status of the production variant.
|
30292
|
+
#
|
30293
|
+
# @!attribute [rw] status
|
30294
|
+
# The endpoint variant status which describes the current deployment
|
30295
|
+
# stage status or operational status.
|
30296
|
+
#
|
30297
|
+
# * `Creating`\: Creating inference resources for the production
|
30298
|
+
# variant.
|
30299
|
+
#
|
30300
|
+
# * `Deleting`\: Terminating inference resources for the production
|
30301
|
+
# variant.
|
30302
|
+
#
|
30303
|
+
# * `Updating`\: Updating capacity for the production variant.
|
30304
|
+
#
|
30305
|
+
# * `ActivatingTraffic`\: Turning on traffic for the production
|
30306
|
+
# variant.
|
30307
|
+
#
|
30308
|
+
# * `Baking`\: Waiting period to monitor the CloudWatch alarms in the
|
30309
|
+
# automatic rollback configuration.
|
30310
|
+
# @return [String]
|
30311
|
+
#
|
30312
|
+
# @!attribute [rw] status_message
|
30313
|
+
# A message that describes the status of the production variant.
|
30314
|
+
# @return [String]
|
30315
|
+
#
|
30316
|
+
# @!attribute [rw] start_time
|
30317
|
+
# The start time of the current status change.
|
30318
|
+
# @return [Time]
|
30319
|
+
#
|
30320
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantStatus AWS API Documentation
|
30321
|
+
#
|
30322
|
+
class ProductionVariantStatus < Struct.new(
|
30323
|
+
:status,
|
30324
|
+
:status_message,
|
30325
|
+
:start_time)
|
30326
|
+
SENSITIVE = []
|
30327
|
+
include Aws::Structure
|
30328
|
+
end
|
30329
|
+
|
29834
30330
|
# Describes weight and capacities for a production variant associated
|
29835
30331
|
# with an endpoint. If you sent a request to the
|
29836
30332
|
# `UpdateEndpointWeightsAndCapacities` API and the endpoint status is
|
@@ -29864,6 +30360,11 @@ module Aws::SageMaker
|
|
29864
30360
|
# `UpdateEndpointWeightsAndCapacities` request.
|
29865
30361
|
# @return [Integer]
|
29866
30362
|
#
|
30363
|
+
# @!attribute [rw] variant_status
|
30364
|
+
# The endpoint variant status which describes the current deployment
|
30365
|
+
# stage status or operational status.
|
30366
|
+
# @return [Array<Types::ProductionVariantStatus>]
|
30367
|
+
#
|
29867
30368
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantSummary AWS API Documentation
|
29868
30369
|
#
|
29869
30370
|
class ProductionVariantSummary < Struct.new(
|
@@ -29872,7 +30373,8 @@ module Aws::SageMaker
|
|
29872
30373
|
:current_weight,
|
29873
30374
|
:desired_weight,
|
29874
30375
|
:current_instance_count,
|
29875
|
-
:desired_instance_count
|
30376
|
+
:desired_instance_count,
|
30377
|
+
:variant_status)
|
29876
30378
|
SENSITIVE = []
|
29877
30379
|
include Aws::Structure
|
29878
30380
|
end
|
@@ -30143,6 +30645,15 @@ module Aws::SageMaker
|
|
30143
30645
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
30144
30646
|
# @return [Array<Types::Tag>]
|
30145
30647
|
#
|
30648
|
+
# @!attribute [rw] last_modified_time
|
30649
|
+
# A timestamp container for when the project was last modified.
|
30650
|
+
# @return [Time]
|
30651
|
+
#
|
30652
|
+
# @!attribute [rw] last_modified_by
|
30653
|
+
# Information about the user who created or modified an experiment,
|
30654
|
+
# trial, trial component, or project.
|
30655
|
+
# @return [Types::UserContext]
|
30656
|
+
#
|
30146
30657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Project AWS API Documentation
|
30147
30658
|
#
|
30148
30659
|
class Project < Struct.new(
|
@@ -30155,7 +30666,9 @@ module Aws::SageMaker
|
|
30155
30666
|
:project_status,
|
30156
30667
|
:created_by,
|
30157
30668
|
:creation_time,
|
30158
|
-
:tags
|
30669
|
+
:tags,
|
30670
|
+
:last_modified_time,
|
30671
|
+
:last_modified_by)
|
30159
30672
|
SENSITIVE = []
|
30160
30673
|
include Aws::Structure
|
30161
30674
|
end
|
@@ -30537,6 +31050,129 @@ module Aws::SageMaker
|
|
30537
31050
|
include Aws::Structure
|
30538
31051
|
end
|
30539
31052
|
|
31053
|
+
# A collection of settings that apply to an `RSessionGateway` app.
|
31054
|
+
#
|
31055
|
+
# @api private
|
31056
|
+
#
|
31057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RSessionAppSettings AWS API Documentation
|
31058
|
+
#
|
31059
|
+
class RSessionAppSettings < Aws::EmptyStructure; end
|
31060
|
+
|
31061
|
+
# A collection of settings that configure user interaction with the
|
31062
|
+
# `RStudioServerPro` app. `RStudioServerProAppSettings` cannot be
|
31063
|
+
# updated. The `RStudioServerPro` app must be deleted and a new one
|
31064
|
+
# created to make any changes.
|
31065
|
+
#
|
31066
|
+
# @note When making an API call, you may pass RStudioServerProAppSettings
|
31067
|
+
# data as a hash:
|
31068
|
+
#
|
31069
|
+
# {
|
31070
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
31071
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
31072
|
+
# }
|
31073
|
+
#
|
31074
|
+
# @!attribute [rw] access_status
|
31075
|
+
# Indicates whether the current user has access to the
|
31076
|
+
# `RStudioServerPro` app.
|
31077
|
+
# @return [String]
|
31078
|
+
#
|
31079
|
+
# @!attribute [rw] user_group
|
31080
|
+
# The level of permissions that the user has within the
|
31081
|
+
# `RStudioServerPro` app. This value defaults to `User`. The
|
31082
|
+
# `Admin` value allows the user access to the RStudio Administrative
|
31083
|
+
# Dashboard.
|
31084
|
+
# @return [String]
|
31085
|
+
#
|
31086
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RStudioServerProAppSettings AWS API Documentation
|
31087
|
+
#
|
31088
|
+
class RStudioServerProAppSettings < Struct.new(
|
31089
|
+
:access_status,
|
31090
|
+
:user_group)
|
31091
|
+
SENSITIVE = []
|
31092
|
+
include Aws::Structure
|
31093
|
+
end
|
31094
|
+
|
31095
|
+
# A collection of settings that configure the `RStudioServerPro`
|
31096
|
+
# Domain-level app.
|
31097
|
+
#
|
31098
|
+
# @note When making an API call, you may pass RStudioServerProDomainSettings
|
31099
|
+
# data as a hash:
|
31100
|
+
#
|
31101
|
+
# {
|
31102
|
+
# domain_execution_role_arn: "RoleArn", # required
|
31103
|
+
# r_studio_connect_url: "String",
|
31104
|
+
# r_studio_package_manager_url: "String",
|
31105
|
+
# default_resource_spec: {
|
31106
|
+
# sage_maker_image_arn: "ImageArn",
|
31107
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
31108
|
+
# 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
|
31109
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
31110
|
+
# },
|
31111
|
+
# }
|
31112
|
+
#
|
31113
|
+
# @!attribute [rw] domain_execution_role_arn
|
31114
|
+
# The ARN of the execution role for the `RStudioServerPro`
|
31115
|
+
# Domain-level app.
|
31116
|
+
# @return [String]
|
31117
|
+
#
|
31118
|
+
# @!attribute [rw] r_studio_connect_url
|
31119
|
+
# A URL pointing to an RStudio Connect server.
|
31120
|
+
# @return [String]
|
31121
|
+
#
|
31122
|
+
# @!attribute [rw] r_studio_package_manager_url
|
31123
|
+
# A URL pointing to an RStudio Package Manager server.
|
31124
|
+
# @return [String]
|
31125
|
+
#
|
31126
|
+
# @!attribute [rw] default_resource_spec
|
31127
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
31128
|
+
# version, and the instance type that the version runs on.
|
31129
|
+
# @return [Types::ResourceSpec]
|
31130
|
+
#
|
31131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RStudioServerProDomainSettings AWS API Documentation
|
31132
|
+
#
|
31133
|
+
class RStudioServerProDomainSettings < Struct.new(
|
31134
|
+
:domain_execution_role_arn,
|
31135
|
+
:r_studio_connect_url,
|
31136
|
+
:r_studio_package_manager_url,
|
31137
|
+
:default_resource_spec)
|
31138
|
+
SENSITIVE = []
|
31139
|
+
include Aws::Structure
|
31140
|
+
end
|
31141
|
+
|
31142
|
+
# A collection of settings that update the current configuration for the
|
31143
|
+
# `RStudioServerPro` Domain-level app.
|
31144
|
+
#
|
31145
|
+
# @note When making an API call, you may pass RStudioServerProDomainSettingsForUpdate
|
31146
|
+
# data as a hash:
|
31147
|
+
#
|
31148
|
+
# {
|
31149
|
+
# domain_execution_role_arn: "RoleArn", # required
|
31150
|
+
# default_resource_spec: {
|
31151
|
+
# sage_maker_image_arn: "ImageArn",
|
31152
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
31153
|
+
# 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
|
31154
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
31155
|
+
# },
|
31156
|
+
# }
|
31157
|
+
#
|
31158
|
+
# @!attribute [rw] domain_execution_role_arn
|
31159
|
+
# The execution role for the `RStudioServerPro` Domain-level app.
|
31160
|
+
# @return [String]
|
31161
|
+
#
|
31162
|
+
# @!attribute [rw] default_resource_spec
|
31163
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
31164
|
+
# version, and the instance type that the version runs on.
|
31165
|
+
# @return [Types::ResourceSpec]
|
31166
|
+
#
|
31167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RStudioServerProDomainSettingsForUpdate AWS API Documentation
|
31168
|
+
#
|
31169
|
+
class RStudioServerProDomainSettingsForUpdate < Struct.new(
|
31170
|
+
:domain_execution_role_arn,
|
31171
|
+
:default_resource_spec)
|
31172
|
+
SENSITIVE = []
|
31173
|
+
include Aws::Structure
|
31174
|
+
end
|
31175
|
+
|
30540
31176
|
# Configuration for Redshift Dataset Definition input.
|
30541
31177
|
#
|
30542
31178
|
# @note When making an API call, you may pass RedshiftDatasetDefinition
|
@@ -31965,6 +32601,45 @@ module Aws::SageMaker
|
|
31965
32601
|
include Aws::Structure
|
31966
32602
|
end
|
31967
32603
|
|
32604
|
+
# Details that you specify to provision a service catalog product. For
|
32605
|
+
# information about service catalog, see [What is Amazon Web Services
|
32606
|
+
# Service Catalog][1].
|
32607
|
+
#
|
32608
|
+
#
|
32609
|
+
#
|
32610
|
+
# [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
|
32611
|
+
#
|
32612
|
+
# @note When making an API call, you may pass ServiceCatalogProvisioningUpdateDetails
|
32613
|
+
# data as a hash:
|
32614
|
+
#
|
32615
|
+
# {
|
32616
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
32617
|
+
# provisioning_parameters: [
|
32618
|
+
# {
|
32619
|
+
# key: "ProvisioningParameterKey",
|
32620
|
+
# value: "ProvisioningParameterValue",
|
32621
|
+
# },
|
32622
|
+
# ],
|
32623
|
+
# }
|
32624
|
+
#
|
32625
|
+
# @!attribute [rw] provisioning_artifact_id
|
32626
|
+
# The ID of the provisioning artifact.
|
32627
|
+
# @return [String]
|
32628
|
+
#
|
32629
|
+
# @!attribute [rw] provisioning_parameters
|
32630
|
+
# A list of key value pairs that you specify when you provision a
|
32631
|
+
# product.
|
32632
|
+
# @return [Array<Types::ProvisioningParameter>]
|
32633
|
+
#
|
32634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ServiceCatalogProvisioningUpdateDetails AWS API Documentation
|
32635
|
+
#
|
32636
|
+
class ServiceCatalogProvisioningUpdateDetails < Struct.new(
|
32637
|
+
:provisioning_artifact_id,
|
32638
|
+
:provisioning_parameters)
|
32639
|
+
SENSITIVE = []
|
32640
|
+
include Aws::Structure
|
32641
|
+
end
|
32642
|
+
|
31968
32643
|
# Specifies options for sharing SageMaker Studio notebooks. These
|
31969
32644
|
# settings are specified as part of `DefaultUserSettings` when the
|
31970
32645
|
# `CreateDomain` API is called, and as part of `UserSettings` when the
|
@@ -32808,27 +33483,54 @@ module Aws::SageMaker
|
|
32808
33483
|
include Aws::Structure
|
32809
33484
|
end
|
32810
33485
|
|
32811
|
-
#
|
33486
|
+
# Defines the traffic routing strategy during an endpoint deployment to
|
33487
|
+
# shift traffic from the old fleet to the new fleet.
|
32812
33488
|
#
|
32813
33489
|
# @note When making an API call, you may pass TrafficRoutingConfig
|
32814
33490
|
# data as a hash:
|
32815
33491
|
#
|
32816
33492
|
# {
|
32817
|
-
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
|
33493
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
32818
33494
|
# wait_interval_in_seconds: 1, # required
|
32819
33495
|
# canary_size: {
|
32820
33496
|
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
32821
33497
|
# value: 1, # required
|
32822
33498
|
# },
|
33499
|
+
# linear_step_size: {
|
33500
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
33501
|
+
# value: 1, # required
|
33502
|
+
# },
|
32823
33503
|
# }
|
32824
33504
|
#
|
32825
33505
|
# @!attribute [rw] type
|
33506
|
+
# Traffic routing strategy type.
|
33507
|
+
#
|
33508
|
+
# * `ALL_AT_ONCE`\: Endpoint traffic shifts to the new fleet in a
|
33509
|
+
# single step.
|
33510
|
+
#
|
33511
|
+
# * `CANARY`\: Endpoint traffic shifts to the new fleet in two steps.
|
33512
|
+
# The first step is the canary, which is a small portion of the
|
33513
|
+
# traffic. The second step is the remainder of the traffic.
|
33514
|
+
#
|
33515
|
+
# * `LINEAR`\: Endpoint traffic shifts to the new fleet in n steps of
|
33516
|
+
# a configurable size.
|
32826
33517
|
# @return [String]
|
32827
33518
|
#
|
32828
33519
|
# @!attribute [rw] wait_interval_in_seconds
|
33520
|
+
# The waiting time (in seconds) between incremental steps to turn on
|
33521
|
+
# traffic on the new endpoint fleet.
|
32829
33522
|
# @return [Integer]
|
32830
33523
|
#
|
32831
33524
|
# @!attribute [rw] canary_size
|
33525
|
+
# Batch size for the first step to turn on traffic on the new endpoint
|
33526
|
+
# fleet. `Value` must be less than or equal to 50% of the variant's
|
33527
|
+
# total instance count.
|
33528
|
+
# @return [Types::CapacitySize]
|
33529
|
+
#
|
33530
|
+
# @!attribute [rw] linear_step_size
|
33531
|
+
# Batch size for each step to turn on traffic on the new endpoint
|
33532
|
+
# fleet. `Value` must be 10-50% of the variant's total instance
|
33533
|
+
# count.
|
32832
33534
|
# @return [Types::CapacitySize]
|
32833
33535
|
#
|
32834
33536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrafficRoutingConfig AWS API Documentation
|
@@ -32836,7 +33538,8 @@ module Aws::SageMaker
|
|
32836
33538
|
class TrafficRoutingConfig < Struct.new(
|
32837
33539
|
:type,
|
32838
33540
|
:wait_interval_in_seconds,
|
32839
|
-
:canary_size
|
33541
|
+
:canary_size,
|
33542
|
+
:linear_step_size)
|
32840
33543
|
SENSITIVE = []
|
32841
33544
|
include Aws::Structure
|
32842
33545
|
end
|
@@ -35364,6 +36067,23 @@ module Aws::SageMaker
|
|
35364
36067
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
35365
36068
|
# },
|
35366
36069
|
# },
|
36070
|
+
# r_studio_server_pro_app_settings: {
|
36071
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
36072
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
36073
|
+
# },
|
36074
|
+
# r_session_app_settings: {
|
36075
|
+
# },
|
36076
|
+
# },
|
36077
|
+
# domain_settings_for_update: {
|
36078
|
+
# r_studio_server_pro_domain_settings_for_update: {
|
36079
|
+
# domain_execution_role_arn: "RoleArn", # required
|
36080
|
+
# default_resource_spec: {
|
36081
|
+
# sage_maker_image_arn: "ImageArn",
|
36082
|
+
# sage_maker_image_version_arn: "ImageVersionArn",
|
36083
|
+
# 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
|
36084
|
+
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
36085
|
+
# },
|
36086
|
+
# },
|
35367
36087
|
# },
|
35368
36088
|
# }
|
35369
36089
|
#
|
@@ -35375,11 +36095,16 @@ module Aws::SageMaker
|
|
35375
36095
|
# A collection of settings.
|
35376
36096
|
# @return [Types::UserSettings]
|
35377
36097
|
#
|
36098
|
+
# @!attribute [rw] domain_settings_for_update
|
36099
|
+
# A collection of `DomainSettings` configuration values to update.
|
36100
|
+
# @return [Types::DomainSettingsForUpdate]
|
36101
|
+
#
|
35378
36102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainRequest AWS API Documentation
|
35379
36103
|
#
|
35380
36104
|
class UpdateDomainRequest < Struct.new(
|
35381
36105
|
:domain_id,
|
35382
|
-
:default_user_settings
|
36106
|
+
:default_user_settings,
|
36107
|
+
:domain_settings_for_update)
|
35383
36108
|
SENSITIVE = []
|
35384
36109
|
include Aws::Structure
|
35385
36110
|
end
|
@@ -35411,12 +36136,16 @@ module Aws::SageMaker
|
|
35411
36136
|
# deployment_config: {
|
35412
36137
|
# blue_green_update_policy: { # required
|
35413
36138
|
# traffic_routing_configuration: { # required
|
35414
|
-
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
|
36139
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
35415
36140
|
# wait_interval_in_seconds: 1, # required
|
35416
36141
|
# canary_size: {
|
35417
36142
|
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
35418
36143
|
# value: 1, # required
|
35419
36144
|
# },
|
36145
|
+
# linear_step_size: {
|
36146
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
36147
|
+
# value: 1, # required
|
36148
|
+
# },
|
35420
36149
|
# },
|
35421
36150
|
# termination_wait_in_seconds: 1,
|
35422
36151
|
# maximum_execution_timeout_in_seconds: 1,
|
@@ -35429,6 +36158,7 @@ module Aws::SageMaker
|
|
35429
36158
|
# ],
|
35430
36159
|
# },
|
35431
36160
|
# },
|
36161
|
+
# retain_deployment_config: false,
|
35432
36162
|
# }
|
35433
36163
|
#
|
35434
36164
|
# @!attribute [rw] endpoint_name
|
@@ -35463,9 +36193,15 @@ module Aws::SageMaker
|
|
35463
36193
|
# @return [Array<Types::VariantProperty>]
|
35464
36194
|
#
|
35465
36195
|
# @!attribute [rw] deployment_config
|
35466
|
-
# The deployment configuration for
|
36196
|
+
# The deployment configuration for an endpoint, which contains the
|
36197
|
+
# desired deployment strategy and rollback configurations.
|
35467
36198
|
# @return [Types::DeploymentConfig]
|
35468
36199
|
#
|
36200
|
+
# @!attribute [rw] retain_deployment_config
|
36201
|
+
# Specifies whether to reuse the last deployment configuration. The
|
36202
|
+
# default value is false (the configuration is not reused).
|
36203
|
+
# @return [Boolean]
|
36204
|
+
#
|
35469
36205
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateEndpointInput AWS API Documentation
|
35470
36206
|
#
|
35471
36207
|
class UpdateEndpointInput < Struct.new(
|
@@ -35473,7 +36209,8 @@ module Aws::SageMaker
|
|
35473
36209
|
:endpoint_config_name,
|
35474
36210
|
:retain_all_variant_properties,
|
35475
36211
|
:exclude_retained_variant_properties,
|
35476
|
-
:deployment_config
|
36212
|
+
:deployment_config,
|
36213
|
+
:retain_deployment_config)
|
35477
36214
|
SENSITIVE = []
|
35478
36215
|
include Aws::Structure
|
35479
36216
|
end
|
@@ -35641,12 +36378,16 @@ module Aws::SageMaker
|
|
35641
36378
|
#
|
35642
36379
|
# {
|
35643
36380
|
# model_package_arn: "ModelPackageArn", # required
|
35644
|
-
# model_approval_status: "Approved", #
|
36381
|
+
# model_approval_status: "Approved", # accepts Approved, Rejected, PendingManualApproval
|
35645
36382
|
# approval_description: "ApprovalDescription",
|
36383
|
+
# customer_metadata_properties: {
|
36384
|
+
# "CustomerMetadataKey" => "CustomerMetadataValue",
|
36385
|
+
# },
|
36386
|
+
# customer_metadata_properties_to_remove: ["CustomerMetadataKey"],
|
35646
36387
|
# }
|
35647
36388
|
#
|
35648
36389
|
# @!attribute [rw] model_package_arn
|
35649
|
-
# The Amazon Resource Name (ARN) of the model.
|
36390
|
+
# The Amazon Resource Name (ARN) of the model package.
|
35650
36391
|
# @return [String]
|
35651
36392
|
#
|
35652
36393
|
# @!attribute [rw] model_approval_status
|
@@ -35657,12 +36398,23 @@ module Aws::SageMaker
|
|
35657
36398
|
# A description for the approval status of the model.
|
35658
36399
|
# @return [String]
|
35659
36400
|
#
|
36401
|
+
# @!attribute [rw] customer_metadata_properties
|
36402
|
+
# The metadata properties associated with the model package versions.
|
36403
|
+
# @return [Hash<String,String>]
|
36404
|
+
#
|
36405
|
+
# @!attribute [rw] customer_metadata_properties_to_remove
|
36406
|
+
# The metadata properties associated with the model package versions
|
36407
|
+
# to remove.
|
36408
|
+
# @return [Array<String>]
|
36409
|
+
#
|
35660
36410
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
|
35661
36411
|
#
|
35662
36412
|
class UpdateModelPackageInput < Struct.new(
|
35663
36413
|
:model_package_arn,
|
35664
36414
|
:model_approval_status,
|
35665
|
-
:approval_description
|
36415
|
+
:approval_description,
|
36416
|
+
:customer_metadata_properties,
|
36417
|
+
:customer_metadata_properties_to_remove)
|
35666
36418
|
SENSITIVE = []
|
35667
36419
|
include Aws::Structure
|
35668
36420
|
end
|
@@ -36107,6 +36859,83 @@ module Aws::SageMaker
|
|
36107
36859
|
include Aws::Structure
|
36108
36860
|
end
|
36109
36861
|
|
36862
|
+
# @note When making an API call, you may pass UpdateProjectInput
|
36863
|
+
# data as a hash:
|
36864
|
+
#
|
36865
|
+
# {
|
36866
|
+
# project_name: "ProjectEntityName", # required
|
36867
|
+
# project_description: "EntityDescription",
|
36868
|
+
# service_catalog_provisioning_update_details: {
|
36869
|
+
# provisioning_artifact_id: "ServiceCatalogEntityId",
|
36870
|
+
# provisioning_parameters: [
|
36871
|
+
# {
|
36872
|
+
# key: "ProvisioningParameterKey",
|
36873
|
+
# value: "ProvisioningParameterValue",
|
36874
|
+
# },
|
36875
|
+
# ],
|
36876
|
+
# },
|
36877
|
+
# tags: [
|
36878
|
+
# {
|
36879
|
+
# key: "TagKey", # required
|
36880
|
+
# value: "TagValue", # required
|
36881
|
+
# },
|
36882
|
+
# ],
|
36883
|
+
# }
|
36884
|
+
#
|
36885
|
+
# @!attribute [rw] project_name
|
36886
|
+
# The name of the project.
|
36887
|
+
# @return [String]
|
36888
|
+
#
|
36889
|
+
# @!attribute [rw] project_description
|
36890
|
+
# The description for the project.
|
36891
|
+
# @return [String]
|
36892
|
+
#
|
36893
|
+
# @!attribute [rw] service_catalog_provisioning_update_details
|
36894
|
+
# The product ID and provisioning artifact ID to provision a service
|
36895
|
+
# catalog. The provisioning artifact ID will default to the latest
|
36896
|
+
# provisioning artifact ID of the product, if you don't provide the
|
36897
|
+
# provisioning artifact ID. For more information, see [What is Amazon
|
36898
|
+
# Web Services Service Catalog][1].
|
36899
|
+
#
|
36900
|
+
#
|
36901
|
+
#
|
36902
|
+
# [1]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/introduction.html
|
36903
|
+
# @return [Types::ServiceCatalogProvisioningUpdateDetails]
|
36904
|
+
#
|
36905
|
+
# @!attribute [rw] tags
|
36906
|
+
# An array of key-value pairs. You can use tags to categorize your
|
36907
|
+
# Amazon Web Services resources in different ways, for example, by
|
36908
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
36909
|
+
# Amazon Web Services Resources][1].
|
36910
|
+
#
|
36911
|
+
#
|
36912
|
+
#
|
36913
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
36914
|
+
# @return [Array<Types::Tag>]
|
36915
|
+
#
|
36916
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateProjectInput AWS API Documentation
|
36917
|
+
#
|
36918
|
+
class UpdateProjectInput < Struct.new(
|
36919
|
+
:project_name,
|
36920
|
+
:project_description,
|
36921
|
+
:service_catalog_provisioning_update_details,
|
36922
|
+
:tags)
|
36923
|
+
SENSITIVE = []
|
36924
|
+
include Aws::Structure
|
36925
|
+
end
|
36926
|
+
|
36927
|
+
# @!attribute [rw] project_arn
|
36928
|
+
# The Amazon Resource Name (ARN) of the project.
|
36929
|
+
# @return [String]
|
36930
|
+
#
|
36931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateProjectOutput AWS API Documentation
|
36932
|
+
#
|
36933
|
+
class UpdateProjectOutput < Struct.new(
|
36934
|
+
:project_arn)
|
36935
|
+
SENSITIVE = []
|
36936
|
+
include Aws::Structure
|
36937
|
+
end
|
36938
|
+
|
36110
36939
|
# @note When making an API call, you may pass UpdateTrainingJobRequest
|
36111
36940
|
# data as a hash:
|
36112
36941
|
#
|
@@ -36371,6 +37200,12 @@ module Aws::SageMaker
|
|
36371
37200
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
36372
37201
|
# },
|
36373
37202
|
# },
|
37203
|
+
# r_studio_server_pro_app_settings: {
|
37204
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
37205
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
37206
|
+
# },
|
37207
|
+
# r_session_app_settings: {
|
37208
|
+
# },
|
36374
37209
|
# },
|
36375
37210
|
# }
|
36376
37211
|
#
|
@@ -36683,6 +37518,12 @@ module Aws::SageMaker
|
|
36683
37518
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
36684
37519
|
# },
|
36685
37520
|
# },
|
37521
|
+
# r_studio_server_pro_app_settings: {
|
37522
|
+
# access_status: "ENABLED", # accepts ENABLED, DISABLED
|
37523
|
+
# user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
|
37524
|
+
# },
|
37525
|
+
# r_session_app_settings: {
|
37526
|
+
# },
|
36686
37527
|
# }
|
36687
37528
|
#
|
36688
37529
|
# @!attribute [rw] execution_role
|
@@ -36720,6 +37561,15 @@ module Aws::SageMaker
|
|
36720
37561
|
# The TensorBoard app settings.
|
36721
37562
|
# @return [Types::TensorBoardAppSettings]
|
36722
37563
|
#
|
37564
|
+
# @!attribute [rw] r_studio_server_pro_app_settings
|
37565
|
+
# A collection of settings that configure user interaction with the
|
37566
|
+
# `RStudioServerPro` app.
|
37567
|
+
# @return [Types::RStudioServerProAppSettings]
|
37568
|
+
#
|
37569
|
+
# @!attribute [rw] r_session_app_settings
|
37570
|
+
# A collection of settings that configure the `RSessionGateway` app.
|
37571
|
+
# @return [Types::RSessionAppSettings]
|
37572
|
+
#
|
36723
37573
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
|
36724
37574
|
#
|
36725
37575
|
class UserSettings < Struct.new(
|
@@ -36728,7 +37578,9 @@ module Aws::SageMaker
|
|
36728
37578
|
:sharing_settings,
|
36729
37579
|
:jupyter_server_app_settings,
|
36730
37580
|
:kernel_gateway_app_settings,
|
36731
|
-
:tensor_board_app_settings
|
37581
|
+
:tensor_board_app_settings,
|
37582
|
+
:r_studio_server_pro_app_settings,
|
37583
|
+
:r_session_app_settings)
|
36732
37584
|
SENSITIVE = []
|
36733
37585
|
include Aws::Structure
|
36734
37586
|
end
|