aws-sdk-sagemaker 1.105.0 → 1.109.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 +179 -15
- data/lib/aws-sdk-sagemaker/client_api.rb +82 -0
- data/lib/aws-sdk-sagemaker/types.rb +613 -36
- 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
|
@@ -2555,31 +2561,49 @@ module Aws::SageMaker
|
|
2555
2561
|
include Aws::Structure
|
2556
2562
|
end
|
2557
2563
|
|
2558
|
-
#
|
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.
|
2559
2571
|
#
|
2560
2572
|
# @note When making an API call, you may pass BlueGreenUpdatePolicy
|
2561
2573
|
# data as a hash:
|
2562
2574
|
#
|
2563
2575
|
# {
|
2564
2576
|
# traffic_routing_configuration: { # required
|
2565
|
-
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
|
2577
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
2566
2578
|
# wait_interval_in_seconds: 1, # required
|
2567
2579
|
# canary_size: {
|
2568
2580
|
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
2569
2581
|
# value: 1, # required
|
2570
2582
|
# },
|
2583
|
+
# linear_step_size: {
|
2584
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
2585
|
+
# value: 1, # required
|
2586
|
+
# },
|
2571
2587
|
# },
|
2572
2588
|
# termination_wait_in_seconds: 1,
|
2573
2589
|
# maximum_execution_timeout_in_seconds: 1,
|
2574
2590
|
# }
|
2575
2591
|
#
|
2576
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.
|
2577
2595
|
# @return [Types::TrafficRoutingConfig]
|
2578
2596
|
#
|
2579
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.
|
2580
2601
|
# @return [Integer]
|
2581
2602
|
#
|
2582
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`.
|
2583
2607
|
# @return [Integer]
|
2584
2608
|
#
|
2585
2609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/BlueGreenUpdatePolicy AWS API Documentation
|
@@ -2666,7 +2690,7 @@ module Aws::SageMaker
|
|
2666
2690
|
include Aws::Structure
|
2667
2691
|
end
|
2668
2692
|
|
2669
|
-
#
|
2693
|
+
# Specifies the endpoint capacity to activate for production.
|
2670
2694
|
#
|
2671
2695
|
# @note When making an API call, you may pass CapacitySize
|
2672
2696
|
# data as a hash:
|
@@ -2677,10 +2701,18 @@ module Aws::SageMaker
|
|
2677
2701
|
# }
|
2678
2702
|
#
|
2679
2703
|
# @!attribute [rw] type
|
2680
|
-
#
|
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.
|
2681
2711
|
# @return [String]
|
2682
2712
|
#
|
2683
2713
|
# @!attribute [rw] value
|
2714
|
+
# Defines the capacity size, either as a number of instances or a
|
2715
|
+
# capacity percentage.
|
2684
2716
|
# @return [Integer]
|
2685
2717
|
#
|
2686
2718
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CapacitySize AWS API Documentation
|
@@ -3960,7 +3992,7 @@ module Aws::SageMaker
|
|
3960
3992
|
# {
|
3961
3993
|
# domain_id: "DomainId", # required
|
3962
3994
|
# user_profile_name: "UserProfileName", # required
|
3963
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
3995
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
3964
3996
|
# app_name: "AppName", # required
|
3965
3997
|
# tags: [
|
3966
3998
|
# {
|
@@ -4800,6 +4832,12 @@ module Aws::SageMaker
|
|
4800
4832
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
4801
4833
|
# },
|
4802
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
|
+
# },
|
4803
4841
|
# },
|
4804
4842
|
# subnet_ids: ["SubnetId"], # required
|
4805
4843
|
# vpc_id: "VpcId", # required
|
@@ -4812,6 +4850,21 @@ module Aws::SageMaker
|
|
4812
4850
|
# app_network_access_type: "PublicInternetOnly", # accepts PublicInternetOnly, VpcOnly
|
4813
4851
|
# home_efs_file_system_kms_key_id: "KmsKeyId",
|
4814
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
|
+
# },
|
4815
4868
|
# }
|
4816
4869
|
#
|
4817
4870
|
# @!attribute [rw] domain_name
|
@@ -4872,6 +4925,18 @@ module Aws::SageMaker
|
|
4872
4925
|
# default. For more control, specify a customer managed key.
|
4873
4926
|
# @return [String]
|
4874
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
|
+
#
|
4875
4940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomainRequest AWS API Documentation
|
4876
4941
|
#
|
4877
4942
|
class CreateDomainRequest < Struct.new(
|
@@ -4883,7 +4948,9 @@ module Aws::SageMaker
|
|
4883
4948
|
:tags,
|
4884
4949
|
:app_network_access_type,
|
4885
4950
|
:home_efs_file_system_kms_key_id,
|
4886
|
-
:kms_key_id
|
4951
|
+
:kms_key_id,
|
4952
|
+
:app_security_group_management,
|
4953
|
+
:domain_settings)
|
4887
4954
|
SENSITIVE = []
|
4888
4955
|
include Aws::Structure
|
4889
4956
|
end
|
@@ -5150,6 +5217,31 @@ module Aws::SageMaker
|
|
5150
5217
|
# {
|
5151
5218
|
# endpoint_name: "EndpointName", # required
|
5152
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
|
+
# },
|
5153
5245
|
# tags: [
|
5154
5246
|
# {
|
5155
5247
|
# key: "TagKey", # required
|
@@ -5170,6 +5262,11 @@ module Aws::SageMaker
|
|
5170
5262
|
# CreateEndpointConfig.
|
5171
5263
|
# @return [String]
|
5172
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
|
+
#
|
5173
5270
|
# @!attribute [rw] tags
|
5174
5271
|
# An array of key-value pairs. You can use tags to categorize your
|
5175
5272
|
# Amazon Web Services resources in different ways, for example, by
|
@@ -5186,6 +5283,7 @@ module Aws::SageMaker
|
|
5186
5283
|
class CreateEndpointInput < Struct.new(
|
5187
5284
|
:endpoint_name,
|
5188
5285
|
:endpoint_config_name,
|
5286
|
+
:deployment_config,
|
5189
5287
|
:tags)
|
5190
5288
|
SENSITIVE = []
|
5191
5289
|
include Aws::Structure
|
@@ -9050,6 +9148,12 @@ module Aws::SageMaker
|
|
9050
9148
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
9051
9149
|
# },
|
9052
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
|
+
# },
|
9053
9157
|
# },
|
9054
9158
|
# }
|
9055
9159
|
#
|
@@ -10053,7 +10157,7 @@ module Aws::SageMaker
|
|
10053
10157
|
# {
|
10054
10158
|
# domain_id: "DomainId", # required
|
10055
10159
|
# user_profile_name: "UserProfileName", # required
|
10056
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
10160
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
10057
10161
|
# app_name: "AppName", # required
|
10058
10162
|
# }
|
10059
10163
|
#
|
@@ -10963,7 +11067,8 @@ module Aws::SageMaker
|
|
10963
11067
|
include Aws::Structure
|
10964
11068
|
end
|
10965
11069
|
|
10966
|
-
#
|
11070
|
+
# The deployment configuration for an endpoint, which contains the
|
11071
|
+
# desired deployment strategy and rollback configurations.
|
10967
11072
|
#
|
10968
11073
|
# @note When making an API call, you may pass DeploymentConfig
|
10969
11074
|
# data as a hash:
|
@@ -10971,12 +11076,16 @@ module Aws::SageMaker
|
|
10971
11076
|
# {
|
10972
11077
|
# blue_green_update_policy: { # required
|
10973
11078
|
# traffic_routing_configuration: { # required
|
10974
|
-
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
|
11079
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
10975
11080
|
# wait_interval_in_seconds: 1, # required
|
10976
11081
|
# canary_size: {
|
10977
11082
|
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
10978
11083
|
# value: 1, # required
|
10979
11084
|
# },
|
11085
|
+
# linear_step_size: {
|
11086
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
11087
|
+
# value: 1, # required
|
11088
|
+
# },
|
10980
11089
|
# },
|
10981
11090
|
# termination_wait_in_seconds: 1,
|
10982
11091
|
# maximum_execution_timeout_in_seconds: 1,
|
@@ -10991,9 +11100,18 @@ module Aws::SageMaker
|
|
10991
11100
|
# }
|
10992
11101
|
#
|
10993
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.
|
10994
11110
|
# @return [Types::BlueGreenUpdatePolicy]
|
10995
11111
|
#
|
10996
11112
|
# @!attribute [rw] auto_rollback_configuration
|
11113
|
+
# Automatic rollback configuration for handling endpoint deployment
|
11114
|
+
# failures and recovery.
|
10997
11115
|
# @return [Types::AutoRollbackConfig]
|
10998
11116
|
#
|
10999
11117
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeploymentConfig AWS API Documentation
|
@@ -11259,7 +11377,7 @@ module Aws::SageMaker
|
|
11259
11377
|
# {
|
11260
11378
|
# domain_id: "DomainId", # required
|
11261
11379
|
# user_profile_name: "UserProfileName", # required
|
11262
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard
|
11380
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, TensorBoard, RStudioServerPro, RSessionGateway
|
11263
11381
|
# app_name: "AppName", # required
|
11264
11382
|
# }
|
11265
11383
|
#
|
@@ -12070,6 +12188,10 @@ module Aws::SageMaker
|
|
12070
12188
|
# to need tokening.
|
12071
12189
|
# @return [String]
|
12072
12190
|
#
|
12191
|
+
# @!attribute [rw] agent_version
|
12192
|
+
# Edge Manager agent version.
|
12193
|
+
# @return [String]
|
12194
|
+
#
|
12073
12195
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDeviceResponse AWS API Documentation
|
12074
12196
|
#
|
12075
12197
|
class DescribeDeviceResponse < Struct.new(
|
@@ -12082,7 +12204,8 @@ module Aws::SageMaker
|
|
12082
12204
|
:latest_heartbeat,
|
12083
12205
|
:models,
|
12084
12206
|
:max_models,
|
12085
|
-
:next_token
|
12207
|
+
:next_token,
|
12208
|
+
:agent_version)
|
12086
12209
|
SENSITIVE = []
|
12087
12210
|
include Aws::Structure
|
12088
12211
|
end
|
@@ -12185,6 +12308,23 @@ module Aws::SageMaker
|
|
12185
12308
|
# EFS volume attached to the domain.
|
12186
12309
|
# @return [String]
|
12187
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
|
+
#
|
12188
12328
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomainResponse AWS API Documentation
|
12189
12329
|
#
|
12190
12330
|
class DescribeDomainResponse < Struct.new(
|
@@ -12204,7 +12344,10 @@ module Aws::SageMaker
|
|
12204
12344
|
:subnet_ids,
|
12205
12345
|
:url,
|
12206
12346
|
:vpc_id,
|
12207
|
-
:kms_key_id
|
12347
|
+
:kms_key_id,
|
12348
|
+
:domain_settings,
|
12349
|
+
:app_security_group_management,
|
12350
|
+
:security_group_id_for_domain_boundary)
|
12208
12351
|
SENSITIVE = []
|
12209
12352
|
include Aws::Structure
|
12210
12353
|
end
|
@@ -12482,6 +12625,12 @@ module Aws::SageMaker
|
|
12482
12625
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html
|
12483
12626
|
# @return [Types::AsyncInferenceConfig]
|
12484
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
|
+
#
|
12485
12634
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointOutput AWS API Documentation
|
12486
12635
|
#
|
12487
12636
|
class DescribeEndpointOutput < Struct.new(
|
@@ -12495,7 +12644,8 @@ module Aws::SageMaker
|
|
12495
12644
|
:creation_time,
|
12496
12645
|
:last_modified_time,
|
12497
12646
|
:last_deployment_config,
|
12498
|
-
:async_inference_config
|
12647
|
+
:async_inference_config,
|
12648
|
+
:pending_deployment_summary)
|
12499
12649
|
SENSITIVE = []
|
12500
12650
|
include Aws::Structure
|
12501
12651
|
end
|
@@ -15737,6 +15887,10 @@ module Aws::SageMaker
|
|
15737
15887
|
# Models on the device.
|
15738
15888
|
# @return [Array<Types::EdgeModelSummary>]
|
15739
15889
|
#
|
15890
|
+
# @!attribute [rw] agent_version
|
15891
|
+
# Edge Manager agent version.
|
15892
|
+
# @return [String]
|
15893
|
+
#
|
15740
15894
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeviceSummary AWS API Documentation
|
15741
15895
|
#
|
15742
15896
|
class DeviceSummary < Struct.new(
|
@@ -15747,7 +15901,8 @@ module Aws::SageMaker
|
|
15747
15901
|
:iot_thing_name,
|
15748
15902
|
:registration_time,
|
15749
15903
|
:latest_heartbeat,
|
15750
|
-
:models
|
15904
|
+
:models,
|
15905
|
+
:agent_version)
|
15751
15906
|
SENSITIVE = []
|
15752
15907
|
include Aws::Structure
|
15753
15908
|
end
|
@@ -15848,6 +16003,77 @@ module Aws::SageMaker
|
|
15848
16003
|
include Aws::Structure
|
15849
16004
|
end
|
15850
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
|
+
|
15851
16077
|
# The model on the edge device.
|
15852
16078
|
#
|
15853
16079
|
# @!attribute [rw] model_name
|
@@ -18455,7 +18681,8 @@ module Aws::SageMaker
|
|
18455
18681
|
# (28,800 seconds).
|
18456
18682
|
#
|
18457
18683
|
# * For [3D point cloud][4] and [video frame][5] labeling jobs, the
|
18458
|
-
# 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
|
18459
18686
|
# limits, contact Amazon Web Services Support.
|
18460
18687
|
#
|
18461
18688
|
#
|
@@ -18477,9 +18704,9 @@ module Aws::SageMaker
|
|
18477
18704
|
# seconds).
|
18478
18705
|
#
|
18479
18706
|
# * If you choose a private or vendor workforce, the default value is
|
18480
|
-
#
|
18481
|
-
# days. If you want to change this limit, contact
|
18482
|
-
# 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.
|
18483
18710
|
# @return [Integer]
|
18484
18711
|
#
|
18485
18712
|
# @!attribute [rw] max_concurrent_task_count
|
@@ -28807,6 +29034,102 @@ module Aws::SageMaker
|
|
28807
29034
|
include Aws::Structure
|
28808
29035
|
end
|
28809
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
|
+
|
28810
29133
|
# A SageMaker Model Building Pipeline instance.
|
28811
29134
|
#
|
28812
29135
|
# @!attribute [rw] pipeline_arn
|
@@ -29965,6 +30288,45 @@ module Aws::SageMaker
|
|
29965
30288
|
include Aws::Structure
|
29966
30289
|
end
|
29967
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
|
+
|
29968
30330
|
# Describes weight and capacities for a production variant associated
|
29969
30331
|
# with an endpoint. If you sent a request to the
|
29970
30332
|
# `UpdateEndpointWeightsAndCapacities` API and the endpoint status is
|
@@ -29998,6 +30360,11 @@ module Aws::SageMaker
|
|
29998
30360
|
# `UpdateEndpointWeightsAndCapacities` request.
|
29999
30361
|
# @return [Integer]
|
30000
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
|
+
#
|
30001
30368
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantSummary AWS API Documentation
|
30002
30369
|
#
|
30003
30370
|
class ProductionVariantSummary < Struct.new(
|
@@ -30006,7 +30373,8 @@ module Aws::SageMaker
|
|
30006
30373
|
:current_weight,
|
30007
30374
|
:desired_weight,
|
30008
30375
|
:current_instance_count,
|
30009
|
-
:desired_instance_count
|
30376
|
+
:desired_instance_count,
|
30377
|
+
:variant_status)
|
30010
30378
|
SENSITIVE = []
|
30011
30379
|
include Aws::Structure
|
30012
30380
|
end
|
@@ -30682,6 +31050,129 @@ module Aws::SageMaker
|
|
30682
31050
|
include Aws::Structure
|
30683
31051
|
end
|
30684
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
|
+
|
30685
31176
|
# Configuration for Redshift Dataset Definition input.
|
30686
31177
|
#
|
30687
31178
|
# @note When making an API call, you may pass RedshiftDatasetDefinition
|
@@ -32111,8 +32602,8 @@ module Aws::SageMaker
|
|
32111
32602
|
end
|
32112
32603
|
|
32113
32604
|
# Details that you specify to provision a service catalog product. For
|
32114
|
-
# information about service catalog, see [What is
|
32115
|
-
# Catalog][1].
|
32605
|
+
# information about service catalog, see [What is Amazon Web Services
|
32606
|
+
# Service Catalog][1].
|
32116
32607
|
#
|
32117
32608
|
#
|
32118
32609
|
#
|
@@ -32992,27 +33483,54 @@ module Aws::SageMaker
|
|
32992
33483
|
include Aws::Structure
|
32993
33484
|
end
|
32994
33485
|
|
32995
|
-
#
|
33486
|
+
# Defines the traffic routing strategy during an endpoint deployment to
|
33487
|
+
# shift traffic from the old fleet to the new fleet.
|
32996
33488
|
#
|
32997
33489
|
# @note When making an API call, you may pass TrafficRoutingConfig
|
32998
33490
|
# data as a hash:
|
32999
33491
|
#
|
33000
33492
|
# {
|
33001
|
-
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
|
33493
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
33002
33494
|
# wait_interval_in_seconds: 1, # required
|
33003
33495
|
# canary_size: {
|
33004
33496
|
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
33005
33497
|
# value: 1, # required
|
33006
33498
|
# },
|
33499
|
+
# linear_step_size: {
|
33500
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
33501
|
+
# value: 1, # required
|
33502
|
+
# },
|
33007
33503
|
# }
|
33008
33504
|
#
|
33009
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.
|
33010
33517
|
# @return [String]
|
33011
33518
|
#
|
33012
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.
|
33013
33522
|
# @return [Integer]
|
33014
33523
|
#
|
33015
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.
|
33016
33534
|
# @return [Types::CapacitySize]
|
33017
33535
|
#
|
33018
33536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrafficRoutingConfig AWS API Documentation
|
@@ -33020,7 +33538,8 @@ module Aws::SageMaker
|
|
33020
33538
|
class TrafficRoutingConfig < Struct.new(
|
33021
33539
|
:type,
|
33022
33540
|
:wait_interval_in_seconds,
|
33023
|
-
:canary_size
|
33541
|
+
:canary_size,
|
33542
|
+
:linear_step_size)
|
33024
33543
|
SENSITIVE = []
|
33025
33544
|
include Aws::Structure
|
33026
33545
|
end
|
@@ -35548,6 +36067,23 @@ module Aws::SageMaker
|
|
35548
36067
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
35549
36068
|
# },
|
35550
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
|
+
# },
|
35551
36087
|
# },
|
35552
36088
|
# }
|
35553
36089
|
#
|
@@ -35559,11 +36095,16 @@ module Aws::SageMaker
|
|
35559
36095
|
# A collection of settings.
|
35560
36096
|
# @return [Types::UserSettings]
|
35561
36097
|
#
|
36098
|
+
# @!attribute [rw] domain_settings_for_update
|
36099
|
+
# A collection of `DomainSettings` configuration values to update.
|
36100
|
+
# @return [Types::DomainSettingsForUpdate]
|
36101
|
+
#
|
35562
36102
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainRequest AWS API Documentation
|
35563
36103
|
#
|
35564
36104
|
class UpdateDomainRequest < Struct.new(
|
35565
36105
|
:domain_id,
|
35566
|
-
:default_user_settings
|
36106
|
+
:default_user_settings,
|
36107
|
+
:domain_settings_for_update)
|
35567
36108
|
SENSITIVE = []
|
35568
36109
|
include Aws::Structure
|
35569
36110
|
end
|
@@ -35595,12 +36136,16 @@ module Aws::SageMaker
|
|
35595
36136
|
# deployment_config: {
|
35596
36137
|
# blue_green_update_policy: { # required
|
35597
36138
|
# traffic_routing_configuration: { # required
|
35598
|
-
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY
|
36139
|
+
# type: "ALL_AT_ONCE", # required, accepts ALL_AT_ONCE, CANARY, LINEAR
|
35599
36140
|
# wait_interval_in_seconds: 1, # required
|
35600
36141
|
# canary_size: {
|
35601
36142
|
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
35602
36143
|
# value: 1, # required
|
35603
36144
|
# },
|
36145
|
+
# linear_step_size: {
|
36146
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENT
|
36147
|
+
# value: 1, # required
|
36148
|
+
# },
|
35604
36149
|
# },
|
35605
36150
|
# termination_wait_in_seconds: 1,
|
35606
36151
|
# maximum_execution_timeout_in_seconds: 1,
|
@@ -35613,6 +36158,7 @@ module Aws::SageMaker
|
|
35613
36158
|
# ],
|
35614
36159
|
# },
|
35615
36160
|
# },
|
36161
|
+
# retain_deployment_config: false,
|
35616
36162
|
# }
|
35617
36163
|
#
|
35618
36164
|
# @!attribute [rw] endpoint_name
|
@@ -35647,9 +36193,15 @@ module Aws::SageMaker
|
|
35647
36193
|
# @return [Array<Types::VariantProperty>]
|
35648
36194
|
#
|
35649
36195
|
# @!attribute [rw] deployment_config
|
35650
|
-
# The deployment configuration for
|
36196
|
+
# The deployment configuration for an endpoint, which contains the
|
36197
|
+
# desired deployment strategy and rollback configurations.
|
35651
36198
|
# @return [Types::DeploymentConfig]
|
35652
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
|
+
#
|
35653
36205
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateEndpointInput AWS API Documentation
|
35654
36206
|
#
|
35655
36207
|
class UpdateEndpointInput < Struct.new(
|
@@ -35657,7 +36209,8 @@ module Aws::SageMaker
|
|
35657
36209
|
:endpoint_config_name,
|
35658
36210
|
:retain_all_variant_properties,
|
35659
36211
|
:exclude_retained_variant_properties,
|
35660
|
-
:deployment_config
|
36212
|
+
:deployment_config,
|
36213
|
+
:retain_deployment_config)
|
35661
36214
|
SENSITIVE = []
|
35662
36215
|
include Aws::Structure
|
35663
36216
|
end
|
@@ -36341,8 +36894,8 @@ module Aws::SageMaker
|
|
36341
36894
|
# The product ID and provisioning artifact ID to provision a service
|
36342
36895
|
# catalog. The provisioning artifact ID will default to the latest
|
36343
36896
|
# provisioning artifact ID of the product, if you don't provide the
|
36344
|
-
# provisioning artifact ID. For more information, see [What is
|
36345
|
-
# Service Catalog][1].
|
36897
|
+
# provisioning artifact ID. For more information, see [What is Amazon
|
36898
|
+
# Web Services Service Catalog][1].
|
36346
36899
|
#
|
36347
36900
|
#
|
36348
36901
|
#
|
@@ -36350,9 +36903,10 @@ module Aws::SageMaker
|
|
36350
36903
|
# @return [Types::ServiceCatalogProvisioningUpdateDetails]
|
36351
36904
|
#
|
36352
36905
|
# @!attribute [rw] tags
|
36353
|
-
# An array of key-value pairs. You can use tags to categorize your
|
36354
|
-
# resources in different ways, for example, by
|
36355
|
-
# environment. For more information, see [Tagging
|
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].
|
36356
36910
|
#
|
36357
36911
|
#
|
36358
36912
|
#
|
@@ -36646,6 +37200,12 @@ module Aws::SageMaker
|
|
36646
37200
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
36647
37201
|
# },
|
36648
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
|
+
# },
|
36649
37209
|
# },
|
36650
37210
|
# }
|
36651
37211
|
#
|
@@ -36958,6 +37518,12 @@ module Aws::SageMaker
|
|
36958
37518
|
# lifecycle_config_arn: "StudioLifecycleConfigArn",
|
36959
37519
|
# },
|
36960
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
|
+
# },
|
36961
37527
|
# }
|
36962
37528
|
#
|
36963
37529
|
# @!attribute [rw] execution_role
|
@@ -36995,6 +37561,15 @@ module Aws::SageMaker
|
|
36995
37561
|
# The TensorBoard app settings.
|
36996
37562
|
# @return [Types::TensorBoardAppSettings]
|
36997
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
|
+
#
|
36998
37573
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
|
36999
37574
|
#
|
37000
37575
|
class UserSettings < Struct.new(
|
@@ -37003,7 +37578,9 @@ module Aws::SageMaker
|
|
37003
37578
|
:sharing_settings,
|
37004
37579
|
:jupyter_server_app_settings,
|
37005
37580
|
:kernel_gateway_app_settings,
|
37006
|
-
:tensor_board_app_settings
|
37581
|
+
:tensor_board_app_settings,
|
37582
|
+
:r_studio_server_pro_app_settings,
|
37583
|
+
:r_session_app_settings)
|
37007
37584
|
SENSITIVE = []
|
37008
37585
|
include Aws::Structure
|
37009
37586
|
end
|