aws-sdk-sagemaker 1.222.0 → 1.224.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +1514 -78
- data/lib/aws-sdk-sagemaker/client_api.rb +639 -3
- data/lib/aws-sdk-sagemaker/endpoints.rb +182 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +26 -0
- data/lib/aws-sdk-sagemaker/types.rb +2185 -94
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
|
@@ -1287,6 +1287,11 @@ module Aws::SageMaker
|
|
|
1287
1287
|
# The name of the space.
|
|
1288
1288
|
# @return [String]
|
|
1289
1289
|
#
|
|
1290
|
+
# @!attribute [rw] resource_spec
|
|
1291
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
|
1292
|
+
# version, and the instance type that the version runs on.
|
|
1293
|
+
# @return [Types::ResourceSpec]
|
|
1294
|
+
#
|
|
1290
1295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AppDetails AWS API Documentation
|
|
1291
1296
|
#
|
|
1292
1297
|
class AppDetails < Struct.new(
|
|
@@ -1296,7 +1301,8 @@ module Aws::SageMaker
|
|
|
1296
1301
|
:app_name,
|
|
1297
1302
|
:status,
|
|
1298
1303
|
:creation_time,
|
|
1299
|
-
:space_name
|
|
1304
|
+
:space_name,
|
|
1305
|
+
:resource_spec)
|
|
1300
1306
|
SENSITIVE = []
|
|
1301
1307
|
include Aws::Structure
|
|
1302
1308
|
end
|
|
@@ -1325,6 +1331,11 @@ module Aws::SageMaker
|
|
|
1325
1331
|
# image.
|
|
1326
1332
|
# @return [Types::KernelGatewayImageConfig]
|
|
1327
1333
|
#
|
|
1334
|
+
# @!attribute [rw] jupyter_lab_app_image_config
|
|
1335
|
+
# The configuration for the file system and the runtime, such as the
|
|
1336
|
+
# environment variables and entry point.
|
|
1337
|
+
# @return [Types::JupyterLabAppImageConfig]
|
|
1338
|
+
#
|
|
1328
1339
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AppImageConfigDetails AWS API Documentation
|
|
1329
1340
|
#
|
|
1330
1341
|
class AppImageConfigDetails < Struct.new(
|
|
@@ -1332,7 +1343,8 @@ module Aws::SageMaker
|
|
|
1332
1343
|
:app_image_config_name,
|
|
1333
1344
|
:creation_time,
|
|
1334
1345
|
:last_modified_time,
|
|
1335
|
-
:kernel_gateway_image_config
|
|
1346
|
+
:kernel_gateway_image_config,
|
|
1347
|
+
:jupyter_lab_app_image_config)
|
|
1336
1348
|
SENSITIVE = []
|
|
1337
1349
|
include Aws::Structure
|
|
1338
1350
|
end
|
|
@@ -2188,10 +2200,14 @@ module Aws::SageMaker
|
|
|
2188
2200
|
# For job V2s (jobs created by calling `CreateAutoMLJobV2`), this
|
|
2189
2201
|
# field controls the runtime of the job candidate.
|
|
2190
2202
|
#
|
|
2203
|
+
# For [TextGenerationJobConfig][3] problem types, the maximum time
|
|
2204
|
+
# defaults to 72 hours (259200 seconds).
|
|
2205
|
+
#
|
|
2191
2206
|
#
|
|
2192
2207
|
#
|
|
2193
2208
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_StoppingCondition.html
|
|
2194
2209
|
# [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateHyperParameterTuningJob.html
|
|
2210
|
+
# [3]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TextClassificationJobConfig.html
|
|
2195
2211
|
# @return [Integer]
|
|
2196
2212
|
#
|
|
2197
2213
|
# @!attribute [rw] max_auto_ml_job_runtime_in_seconds
|
|
@@ -3909,6 +3925,290 @@ module Aws::SageMaker
|
|
|
3909
3925
|
include Aws::Structure
|
|
3910
3926
|
end
|
|
3911
3927
|
|
|
3928
|
+
# Details of an instance group in a SageMaker HyperPod cluster.
|
|
3929
|
+
#
|
|
3930
|
+
# @!attribute [rw] current_count
|
|
3931
|
+
# The number of instances that are currently in the instance group of
|
|
3932
|
+
# a SageMaker HyperPod cluster.
|
|
3933
|
+
# @return [Integer]
|
|
3934
|
+
#
|
|
3935
|
+
# @!attribute [rw] target_count
|
|
3936
|
+
# The number of instances you specified to add to the instance group
|
|
3937
|
+
# of a SageMaker HyperPod cluster.
|
|
3938
|
+
# @return [Integer]
|
|
3939
|
+
#
|
|
3940
|
+
# @!attribute [rw] instance_group_name
|
|
3941
|
+
# The name of the instance group of a SageMaker HyperPod cluster.
|
|
3942
|
+
# @return [String]
|
|
3943
|
+
#
|
|
3944
|
+
# @!attribute [rw] instance_type
|
|
3945
|
+
# The instance type of the instance group of a SageMaker HyperPod
|
|
3946
|
+
# cluster.
|
|
3947
|
+
# @return [String]
|
|
3948
|
+
#
|
|
3949
|
+
# @!attribute [rw] life_cycle_config
|
|
3950
|
+
# Details of LifeCycle configuration for the instance group.
|
|
3951
|
+
# @return [Types::ClusterLifeCycleConfig]
|
|
3952
|
+
#
|
|
3953
|
+
# @!attribute [rw] execution_role
|
|
3954
|
+
# The execution role for the instance group to assume.
|
|
3955
|
+
# @return [String]
|
|
3956
|
+
#
|
|
3957
|
+
# @!attribute [rw] threads_per_core
|
|
3958
|
+
# The number you specified to `TreadsPerCore` in `CreateCluster` for
|
|
3959
|
+
# enabling or disabling multithreading. For instance types that
|
|
3960
|
+
# support multithreading, you can specify 1 for disabling
|
|
3961
|
+
# multithreading and 2 for enabling multithreading. For more
|
|
3962
|
+
# information, see the reference table of [CPU cores and threads per
|
|
3963
|
+
# CPU core per instance type][1] in the *Amazon Elastic Compute Cloud
|
|
3964
|
+
# User Guide*.
|
|
3965
|
+
#
|
|
3966
|
+
#
|
|
3967
|
+
#
|
|
3968
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html
|
|
3969
|
+
# @return [Integer]
|
|
3970
|
+
#
|
|
3971
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupDetails AWS API Documentation
|
|
3972
|
+
#
|
|
3973
|
+
class ClusterInstanceGroupDetails < Struct.new(
|
|
3974
|
+
:current_count,
|
|
3975
|
+
:target_count,
|
|
3976
|
+
:instance_group_name,
|
|
3977
|
+
:instance_type,
|
|
3978
|
+
:life_cycle_config,
|
|
3979
|
+
:execution_role,
|
|
3980
|
+
:threads_per_core)
|
|
3981
|
+
SENSITIVE = []
|
|
3982
|
+
include Aws::Structure
|
|
3983
|
+
end
|
|
3984
|
+
|
|
3985
|
+
# The specifications of an instance group that you need to define.
|
|
3986
|
+
#
|
|
3987
|
+
# @!attribute [rw] instance_count
|
|
3988
|
+
# Specifies the number of instances to add to the instance group of a
|
|
3989
|
+
# SageMaker HyperPod cluster.
|
|
3990
|
+
# @return [Integer]
|
|
3991
|
+
#
|
|
3992
|
+
# @!attribute [rw] instance_group_name
|
|
3993
|
+
# Specifies the name of the instance group.
|
|
3994
|
+
# @return [String]
|
|
3995
|
+
#
|
|
3996
|
+
# @!attribute [rw] instance_type
|
|
3997
|
+
# Specifies the instance type of the instance group.
|
|
3998
|
+
# @return [String]
|
|
3999
|
+
#
|
|
4000
|
+
# @!attribute [rw] life_cycle_config
|
|
4001
|
+
# Specifies the LifeCycle configuration for the instance group.
|
|
4002
|
+
# @return [Types::ClusterLifeCycleConfig]
|
|
4003
|
+
#
|
|
4004
|
+
# @!attribute [rw] execution_role
|
|
4005
|
+
# Specifies an IAM execution role to be assumed by the instance group.
|
|
4006
|
+
# @return [String]
|
|
4007
|
+
#
|
|
4008
|
+
# @!attribute [rw] threads_per_core
|
|
4009
|
+
# Specifies the value for **Threads per core**. For instance types
|
|
4010
|
+
# that support multithreading, you can specify `1` for disabling
|
|
4011
|
+
# multithreading and `2` for enabling multithreading. For instance
|
|
4012
|
+
# types that doesn't support multithreading, specify `1`. For more
|
|
4013
|
+
# information, see the reference table of [CPU cores and threads per
|
|
4014
|
+
# CPU core per instance type][1] in the *Amazon Elastic Compute Cloud
|
|
4015
|
+
# User Guide*.
|
|
4016
|
+
#
|
|
4017
|
+
#
|
|
4018
|
+
#
|
|
4019
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html
|
|
4020
|
+
# @return [Integer]
|
|
4021
|
+
#
|
|
4022
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupSpecification AWS API Documentation
|
|
4023
|
+
#
|
|
4024
|
+
class ClusterInstanceGroupSpecification < Struct.new(
|
|
4025
|
+
:instance_count,
|
|
4026
|
+
:instance_group_name,
|
|
4027
|
+
:instance_type,
|
|
4028
|
+
:life_cycle_config,
|
|
4029
|
+
:execution_role,
|
|
4030
|
+
:threads_per_core)
|
|
4031
|
+
SENSITIVE = []
|
|
4032
|
+
include Aws::Structure
|
|
4033
|
+
end
|
|
4034
|
+
|
|
4035
|
+
# Details of an instance in a SageMaker HyperPod cluster.
|
|
4036
|
+
#
|
|
4037
|
+
# @!attribute [rw] status
|
|
4038
|
+
# The status of an instance in a SageMaker HyperPod cluster.
|
|
4039
|
+
# @return [String]
|
|
4040
|
+
#
|
|
4041
|
+
# @!attribute [rw] message
|
|
4042
|
+
# The message from an instance in a SageMaker HyperPod cluster.
|
|
4043
|
+
# @return [String]
|
|
4044
|
+
#
|
|
4045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceStatusDetails AWS API Documentation
|
|
4046
|
+
#
|
|
4047
|
+
class ClusterInstanceStatusDetails < Struct.new(
|
|
4048
|
+
:status,
|
|
4049
|
+
:message)
|
|
4050
|
+
SENSITIVE = []
|
|
4051
|
+
include Aws::Structure
|
|
4052
|
+
end
|
|
4053
|
+
|
|
4054
|
+
# The LifeCycle configuration for a SageMaker HyperPod cluster.
|
|
4055
|
+
#
|
|
4056
|
+
# @!attribute [rw] source_s3_uri
|
|
4057
|
+
# An Amazon S3 bucket path where your LifeCycle scripts are stored.
|
|
4058
|
+
# @return [String]
|
|
4059
|
+
#
|
|
4060
|
+
# @!attribute [rw] on_create
|
|
4061
|
+
# The directory of the LifeCycle script under `SourceS3Uri`. This
|
|
4062
|
+
# LifeCycle script runs during cluster creation.
|
|
4063
|
+
# @return [String]
|
|
4064
|
+
#
|
|
4065
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterLifeCycleConfig AWS API Documentation
|
|
4066
|
+
#
|
|
4067
|
+
class ClusterLifeCycleConfig < Struct.new(
|
|
4068
|
+
:source_s3_uri,
|
|
4069
|
+
:on_create)
|
|
4070
|
+
SENSITIVE = []
|
|
4071
|
+
include Aws::Structure
|
|
4072
|
+
end
|
|
4073
|
+
|
|
4074
|
+
# Details of an instance (also called a *node* interchangeably) in a
|
|
4075
|
+
# SageMaker HyperPod cluster.
|
|
4076
|
+
#
|
|
4077
|
+
# @!attribute [rw] instance_group_name
|
|
4078
|
+
# The instance group name in which the instance is.
|
|
4079
|
+
# @return [String]
|
|
4080
|
+
#
|
|
4081
|
+
# @!attribute [rw] instance_id
|
|
4082
|
+
# The ID of the instance.
|
|
4083
|
+
# @return [String]
|
|
4084
|
+
#
|
|
4085
|
+
# @!attribute [rw] instance_status
|
|
4086
|
+
# The status of the instance.
|
|
4087
|
+
# @return [Types::ClusterInstanceStatusDetails]
|
|
4088
|
+
#
|
|
4089
|
+
# @!attribute [rw] instance_type
|
|
4090
|
+
# The type of the instance.
|
|
4091
|
+
# @return [String]
|
|
4092
|
+
#
|
|
4093
|
+
# @!attribute [rw] launch_time
|
|
4094
|
+
# The time when the instance is launched.
|
|
4095
|
+
# @return [Time]
|
|
4096
|
+
#
|
|
4097
|
+
# @!attribute [rw] life_cycle_config
|
|
4098
|
+
# The LifeCycle configuration applied to the instance.
|
|
4099
|
+
# @return [Types::ClusterLifeCycleConfig]
|
|
4100
|
+
#
|
|
4101
|
+
# @!attribute [rw] threads_per_core
|
|
4102
|
+
# The number of threads per CPU core you specified under
|
|
4103
|
+
# `CreateCluster`.
|
|
4104
|
+
# @return [Integer]
|
|
4105
|
+
#
|
|
4106
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNodeDetails AWS API Documentation
|
|
4107
|
+
#
|
|
4108
|
+
class ClusterNodeDetails < Struct.new(
|
|
4109
|
+
:instance_group_name,
|
|
4110
|
+
:instance_id,
|
|
4111
|
+
:instance_status,
|
|
4112
|
+
:instance_type,
|
|
4113
|
+
:launch_time,
|
|
4114
|
+
:life_cycle_config,
|
|
4115
|
+
:threads_per_core)
|
|
4116
|
+
SENSITIVE = []
|
|
4117
|
+
include Aws::Structure
|
|
4118
|
+
end
|
|
4119
|
+
|
|
4120
|
+
# Lists a summary of the properties of an instance (also called a *node*
|
|
4121
|
+
# interchangeably) of a SageMaker HyperPod cluster.
|
|
4122
|
+
#
|
|
4123
|
+
# @!attribute [rw] instance_group_name
|
|
4124
|
+
# The name of the instance group in which the instance is.
|
|
4125
|
+
# @return [String]
|
|
4126
|
+
#
|
|
4127
|
+
# @!attribute [rw] instance_id
|
|
4128
|
+
# The ID of the instance.
|
|
4129
|
+
# @return [String]
|
|
4130
|
+
#
|
|
4131
|
+
# @!attribute [rw] instance_type
|
|
4132
|
+
# The type of the instance.
|
|
4133
|
+
# @return [String]
|
|
4134
|
+
#
|
|
4135
|
+
# @!attribute [rw] launch_time
|
|
4136
|
+
# The time when the instance is launched.
|
|
4137
|
+
# @return [Time]
|
|
4138
|
+
#
|
|
4139
|
+
# @!attribute [rw] instance_status
|
|
4140
|
+
# The status of the instance.
|
|
4141
|
+
# @return [Types::ClusterInstanceStatusDetails]
|
|
4142
|
+
#
|
|
4143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNodeSummary AWS API Documentation
|
|
4144
|
+
#
|
|
4145
|
+
class ClusterNodeSummary < Struct.new(
|
|
4146
|
+
:instance_group_name,
|
|
4147
|
+
:instance_id,
|
|
4148
|
+
:instance_type,
|
|
4149
|
+
:launch_time,
|
|
4150
|
+
:instance_status)
|
|
4151
|
+
SENSITIVE = []
|
|
4152
|
+
include Aws::Structure
|
|
4153
|
+
end
|
|
4154
|
+
|
|
4155
|
+
# Lists a summary of the properties of a SageMaker HyperPod cluster.
|
|
4156
|
+
#
|
|
4157
|
+
# @!attribute [rw] cluster_arn
|
|
4158
|
+
# The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster.
|
|
4159
|
+
# @return [String]
|
|
4160
|
+
#
|
|
4161
|
+
# @!attribute [rw] cluster_name
|
|
4162
|
+
# The name of the SageMaker HyperPod cluster.
|
|
4163
|
+
# @return [String]
|
|
4164
|
+
#
|
|
4165
|
+
# @!attribute [rw] creation_time
|
|
4166
|
+
# The time when the SageMaker HyperPod cluster is created.
|
|
4167
|
+
# @return [Time]
|
|
4168
|
+
#
|
|
4169
|
+
# @!attribute [rw] cluster_status
|
|
4170
|
+
# The status of the SageMaker HyperPod cluster.
|
|
4171
|
+
# @return [String]
|
|
4172
|
+
#
|
|
4173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterSummary AWS API Documentation
|
|
4174
|
+
#
|
|
4175
|
+
class ClusterSummary < Struct.new(
|
|
4176
|
+
:cluster_arn,
|
|
4177
|
+
:cluster_name,
|
|
4178
|
+
:creation_time,
|
|
4179
|
+
:cluster_status)
|
|
4180
|
+
SENSITIVE = []
|
|
4181
|
+
include Aws::Structure
|
|
4182
|
+
end
|
|
4183
|
+
|
|
4184
|
+
# The Code Editor application settings.
|
|
4185
|
+
#
|
|
4186
|
+
# For more information about Code Editor, see [Get started with Code
|
|
4187
|
+
# Editor in Amazon SageMaker][1].
|
|
4188
|
+
#
|
|
4189
|
+
#
|
|
4190
|
+
#
|
|
4191
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/code-editor.html
|
|
4192
|
+
#
|
|
4193
|
+
# @!attribute [rw] default_resource_spec
|
|
4194
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
|
4195
|
+
# version, and the instance type that the version runs on.
|
|
4196
|
+
# @return [Types::ResourceSpec]
|
|
4197
|
+
#
|
|
4198
|
+
# @!attribute [rw] lifecycle_config_arns
|
|
4199
|
+
# The Amazon Resource Name (ARN) of the Code Editor application
|
|
4200
|
+
# lifecycle configuration.
|
|
4201
|
+
# @return [Array<String>]
|
|
4202
|
+
#
|
|
4203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CodeEditorAppSettings AWS API Documentation
|
|
4204
|
+
#
|
|
4205
|
+
class CodeEditorAppSettings < Struct.new(
|
|
4206
|
+
:default_resource_spec,
|
|
4207
|
+
:lifecycle_config_arns)
|
|
4208
|
+
SENSITIVE = []
|
|
4209
|
+
include Aws::Structure
|
|
4210
|
+
end
|
|
4211
|
+
|
|
3912
4212
|
# A Git repository that SageMaker automatically displays to users for
|
|
3913
4213
|
# cloning in the JupyterServer application.
|
|
3914
4214
|
#
|
|
@@ -4167,6 +4467,31 @@ module Aws::SageMaker
|
|
|
4167
4467
|
include Aws::Structure
|
|
4168
4468
|
end
|
|
4169
4469
|
|
|
4470
|
+
# The configuration used to run the application image container.
|
|
4471
|
+
#
|
|
4472
|
+
# @!attribute [rw] container_arguments
|
|
4473
|
+
# The arguments for the container when you're running the
|
|
4474
|
+
# application.
|
|
4475
|
+
# @return [Array<String>]
|
|
4476
|
+
#
|
|
4477
|
+
# @!attribute [rw] container_entrypoint
|
|
4478
|
+
# The entrypoint used to run the application in the container.
|
|
4479
|
+
# @return [Array<String>]
|
|
4480
|
+
#
|
|
4481
|
+
# @!attribute [rw] container_environment_variables
|
|
4482
|
+
# The environment variables to set in the container
|
|
4483
|
+
# @return [Hash<String,String>]
|
|
4484
|
+
#
|
|
4485
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ContainerConfig AWS API Documentation
|
|
4486
|
+
#
|
|
4487
|
+
class ContainerConfig < Struct.new(
|
|
4488
|
+
:container_arguments,
|
|
4489
|
+
:container_entrypoint,
|
|
4490
|
+
:container_environment_variables)
|
|
4491
|
+
SENSITIVE = []
|
|
4492
|
+
include Aws::Structure
|
|
4493
|
+
end
|
|
4494
|
+
|
|
4170
4495
|
# Describes the container, as part of model definition.
|
|
4171
4496
|
#
|
|
4172
4497
|
# @!attribute [rw] container_hostname
|
|
@@ -4648,12 +4973,20 @@ module Aws::SageMaker
|
|
|
4648
4973
|
# JupyterLab.
|
|
4649
4974
|
# @return [Types::KernelGatewayImageConfig]
|
|
4650
4975
|
#
|
|
4976
|
+
# @!attribute [rw] jupyter_lab_app_image_config
|
|
4977
|
+
# The `JupyterLabAppImageConfig`. You can only specify one image
|
|
4978
|
+
# kernel in the `AppImageConfig` API. This kernel is shown to users
|
|
4979
|
+
# before the image starts. After the image runs, all kernels are
|
|
4980
|
+
# visible in JupyterLab.
|
|
4981
|
+
# @return [Types::JupyterLabAppImageConfig]
|
|
4982
|
+
#
|
|
4651
4983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppImageConfigRequest AWS API Documentation
|
|
4652
4984
|
#
|
|
4653
4985
|
class CreateAppImageConfigRequest < Struct.new(
|
|
4654
4986
|
:app_image_config_name,
|
|
4655
4987
|
:tags,
|
|
4656
|
-
:kernel_gateway_image_config
|
|
4988
|
+
:kernel_gateway_image_config,
|
|
4989
|
+
:jupyter_lab_app_image_config)
|
|
4657
4990
|
SENSITIVE = []
|
|
4658
4991
|
include Aws::Structure
|
|
4659
4992
|
end
|
|
@@ -5029,6 +5362,62 @@ module Aws::SageMaker
|
|
|
5029
5362
|
include Aws::Structure
|
|
5030
5363
|
end
|
|
5031
5364
|
|
|
5365
|
+
# @!attribute [rw] cluster_name
|
|
5366
|
+
# The name for the new SageMaker HyperPod cluster.
|
|
5367
|
+
# @return [String]
|
|
5368
|
+
#
|
|
5369
|
+
# @!attribute [rw] instance_groups
|
|
5370
|
+
# The instance groups to be created in the SageMaker HyperPod cluster.
|
|
5371
|
+
# @return [Array<Types::ClusterInstanceGroupSpecification>]
|
|
5372
|
+
#
|
|
5373
|
+
# @!attribute [rw] vpc_config
|
|
5374
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
|
5375
|
+
# jobs, hosted models, and compute resources have access to. You can
|
|
5376
|
+
# control access to and from your resources by configuring a VPC. For
|
|
5377
|
+
# more information, see [Give SageMaker Access to Resources in your
|
|
5378
|
+
# Amazon VPC][1].
|
|
5379
|
+
#
|
|
5380
|
+
#
|
|
5381
|
+
#
|
|
5382
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
|
5383
|
+
# @return [Types::VpcConfig]
|
|
5384
|
+
#
|
|
5385
|
+
# @!attribute [rw] tags
|
|
5386
|
+
# Custom tags for managing the SageMaker HyperPod cluster as an Amazon
|
|
5387
|
+
# Web Services resource. You can add tags to your cluster in the same
|
|
5388
|
+
# way you add them in other Amazon Web Services services that support
|
|
5389
|
+
# tagging. To learn more about tagging Amazon Web Services resources
|
|
5390
|
+
# in general, see [Tagging Amazon Web Services Resources User
|
|
5391
|
+
# Guide][1].
|
|
5392
|
+
#
|
|
5393
|
+
#
|
|
5394
|
+
#
|
|
5395
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html
|
|
5396
|
+
# @return [Array<Types::Tag>]
|
|
5397
|
+
#
|
|
5398
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateClusterRequest AWS API Documentation
|
|
5399
|
+
#
|
|
5400
|
+
class CreateClusterRequest < Struct.new(
|
|
5401
|
+
:cluster_name,
|
|
5402
|
+
:instance_groups,
|
|
5403
|
+
:vpc_config,
|
|
5404
|
+
:tags)
|
|
5405
|
+
SENSITIVE = []
|
|
5406
|
+
include Aws::Structure
|
|
5407
|
+
end
|
|
5408
|
+
|
|
5409
|
+
# @!attribute [rw] cluster_arn
|
|
5410
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
|
5411
|
+
# @return [String]
|
|
5412
|
+
#
|
|
5413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateClusterResponse AWS API Documentation
|
|
5414
|
+
#
|
|
5415
|
+
class CreateClusterResponse < Struct.new(
|
|
5416
|
+
:cluster_arn)
|
|
5417
|
+
SENSITIVE = []
|
|
5418
|
+
include Aws::Structure
|
|
5419
|
+
end
|
|
5420
|
+
|
|
5032
5421
|
# @!attribute [rw] code_repository_name
|
|
5033
5422
|
# The name of the Git repository. The name must have 1 to 63
|
|
5034
5423
|
# characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
|
@@ -5376,12 +5765,12 @@ module Aws::SageMaker
|
|
|
5376
5765
|
# @return [Types::UserSettings]
|
|
5377
5766
|
#
|
|
5378
5767
|
# @!attribute [rw] subnet_ids
|
|
5379
|
-
# The VPC subnets that
|
|
5768
|
+
# The VPC subnets that the domain uses for communication.
|
|
5380
5769
|
# @return [Array<String>]
|
|
5381
5770
|
#
|
|
5382
5771
|
# @!attribute [rw] vpc_id
|
|
5383
|
-
# The ID of the Amazon Virtual Private Cloud (VPC) that
|
|
5384
|
-
# for communication.
|
|
5772
|
+
# The ID of the Amazon Virtual Private Cloud (VPC) that the domain
|
|
5773
|
+
# uses for communication.
|
|
5385
5774
|
# @return [String]
|
|
5386
5775
|
#
|
|
5387
5776
|
# @!attribute [rw] tags
|
|
@@ -5400,8 +5789,7 @@ module Aws::SageMaker
|
|
|
5400
5789
|
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
|
5401
5790
|
# Amazon SageMaker, which allows direct internet access
|
|
5402
5791
|
#
|
|
5403
|
-
# * `VpcOnly` - All
|
|
5404
|
-
# subnets
|
|
5792
|
+
# * `VpcOnly` - All traffic is through the specified VPC and subnets
|
|
5405
5793
|
# @return [String]
|
|
5406
5794
|
#
|
|
5407
5795
|
# @!attribute [rw] home_efs_file_system_kms_key_id
|
|
@@ -5680,6 +6068,39 @@ module Aws::SageMaker
|
|
|
5680
6068
|
# `ProductionVariants` and one variant for `ShadowProductionVariants`.
|
|
5681
6069
|
# @return [Array<Types::ProductionVariant>]
|
|
5682
6070
|
#
|
|
6071
|
+
# @!attribute [rw] execution_role_arn
|
|
6072
|
+
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
|
6073
|
+
# can assume to perform actions on your behalf. For more information,
|
|
6074
|
+
# see [SageMaker Roles][1].
|
|
6075
|
+
#
|
|
6076
|
+
# <note markdown="1"> To be able to pass this role to Amazon SageMaker, the caller of this
|
|
6077
|
+
# action must have the `iam:PassRole` permission.
|
|
6078
|
+
#
|
|
6079
|
+
# </note>
|
|
6080
|
+
#
|
|
6081
|
+
#
|
|
6082
|
+
#
|
|
6083
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html
|
|
6084
|
+
# @return [String]
|
|
6085
|
+
#
|
|
6086
|
+
# @!attribute [rw] vpc_config
|
|
6087
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
|
6088
|
+
# jobs, hosted models, and compute resources have access to. You can
|
|
6089
|
+
# control access to and from your resources by configuring a VPC. For
|
|
6090
|
+
# more information, see [Give SageMaker Access to Resources in your
|
|
6091
|
+
# Amazon VPC][1].
|
|
6092
|
+
#
|
|
6093
|
+
#
|
|
6094
|
+
#
|
|
6095
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
|
6096
|
+
# @return [Types::VpcConfig]
|
|
6097
|
+
#
|
|
6098
|
+
# @!attribute [rw] enable_network_isolation
|
|
6099
|
+
# Sets whether all model containers deployed to the endpoint are
|
|
6100
|
+
# isolated. If they are, no inbound or outbound network calls can be
|
|
6101
|
+
# made to or from the model containers.
|
|
6102
|
+
# @return [Boolean]
|
|
6103
|
+
#
|
|
5683
6104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEndpointConfigInput AWS API Documentation
|
|
5684
6105
|
#
|
|
5685
6106
|
class CreateEndpointConfigInput < Struct.new(
|
|
@@ -5690,7 +6111,10 @@ module Aws::SageMaker
|
|
|
5690
6111
|
:kms_key_id,
|
|
5691
6112
|
:async_inference_config,
|
|
5692
6113
|
:explainer_config,
|
|
5693
|
-
:shadow_production_variants
|
|
6114
|
+
:shadow_production_variants,
|
|
6115
|
+
:execution_role_arn,
|
|
6116
|
+
:vpc_config,
|
|
6117
|
+
:enable_network_isolation)
|
|
5694
6118
|
SENSITIVE = []
|
|
5695
6119
|
include Aws::Structure
|
|
5696
6120
|
end
|
|
@@ -6404,6 +6828,65 @@ module Aws::SageMaker
|
|
|
6404
6828
|
include Aws::Structure
|
|
6405
6829
|
end
|
|
6406
6830
|
|
|
6831
|
+
# @!attribute [rw] inference_component_name
|
|
6832
|
+
# A unique name to assign to the inference component.
|
|
6833
|
+
# @return [String]
|
|
6834
|
+
#
|
|
6835
|
+
# @!attribute [rw] endpoint_name
|
|
6836
|
+
# The name of an existing endpoint where you host the inference
|
|
6837
|
+
# component.
|
|
6838
|
+
# @return [String]
|
|
6839
|
+
#
|
|
6840
|
+
# @!attribute [rw] variant_name
|
|
6841
|
+
# The name of an existing production variant where you host the
|
|
6842
|
+
# inference component.
|
|
6843
|
+
# @return [String]
|
|
6844
|
+
#
|
|
6845
|
+
# @!attribute [rw] specification
|
|
6846
|
+
# Details about the resources to deploy with this inference component,
|
|
6847
|
+
# including the model, container, and compute resources.
|
|
6848
|
+
# @return [Types::InferenceComponentSpecification]
|
|
6849
|
+
#
|
|
6850
|
+
# @!attribute [rw] runtime_config
|
|
6851
|
+
# Runtime settings for a model that is deployed with an inference
|
|
6852
|
+
# component.
|
|
6853
|
+
# @return [Types::InferenceComponentRuntimeConfig]
|
|
6854
|
+
#
|
|
6855
|
+
# @!attribute [rw] tags
|
|
6856
|
+
# A list of key-value pairs associated with the model. For more
|
|
6857
|
+
# information, see [Tagging Amazon Web Services resources][1] in the
|
|
6858
|
+
# *Amazon Web Services General Reference*.
|
|
6859
|
+
#
|
|
6860
|
+
#
|
|
6861
|
+
#
|
|
6862
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
|
6863
|
+
# @return [Array<Types::Tag>]
|
|
6864
|
+
#
|
|
6865
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceComponentInput AWS API Documentation
|
|
6866
|
+
#
|
|
6867
|
+
class CreateInferenceComponentInput < Struct.new(
|
|
6868
|
+
:inference_component_name,
|
|
6869
|
+
:endpoint_name,
|
|
6870
|
+
:variant_name,
|
|
6871
|
+
:specification,
|
|
6872
|
+
:runtime_config,
|
|
6873
|
+
:tags)
|
|
6874
|
+
SENSITIVE = []
|
|
6875
|
+
include Aws::Structure
|
|
6876
|
+
end
|
|
6877
|
+
|
|
6878
|
+
# @!attribute [rw] inference_component_arn
|
|
6879
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
|
6880
|
+
# @return [String]
|
|
6881
|
+
#
|
|
6882
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceComponentOutput AWS API Documentation
|
|
6883
|
+
#
|
|
6884
|
+
class CreateInferenceComponentOutput < Struct.new(
|
|
6885
|
+
:inference_component_arn)
|
|
6886
|
+
SENSITIVE = []
|
|
6887
|
+
include Aws::Structure
|
|
6888
|
+
end
|
|
6889
|
+
|
|
6407
6890
|
# @!attribute [rw] name
|
|
6408
6891
|
# The name for the inference experiment.
|
|
6409
6892
|
# @return [String]
|
|
@@ -7875,6 +8358,28 @@ module Aws::SageMaker
|
|
|
7875
8358
|
# The name of the space.
|
|
7876
8359
|
# @return [String]
|
|
7877
8360
|
#
|
|
8361
|
+
# @!attribute [rw] landing_uri
|
|
8362
|
+
# The landing page that the user is directed to when accessing the
|
|
8363
|
+
# presigned URL. Using this value, users can access Studio or Studio
|
|
8364
|
+
# Classic, even if it is not the default experience for the domain.
|
|
8365
|
+
# The supported values are:
|
|
8366
|
+
#
|
|
8367
|
+
# * `studio::relative/path`: Directs users to the relative path in
|
|
8368
|
+
# Studio.
|
|
8369
|
+
#
|
|
8370
|
+
# * `app:JupyterServer:relative/path`: Directs users to the relative
|
|
8371
|
+
# path in the Studio Classic application.
|
|
8372
|
+
#
|
|
8373
|
+
# * `app:JupyterLab:relative/path`: Directs users to the relative path
|
|
8374
|
+
# in the JupyterLab application.
|
|
8375
|
+
#
|
|
8376
|
+
# * `app:RStudioServerPro:relative/path`: Directs users to the
|
|
8377
|
+
# relative path in the RStudio application.
|
|
8378
|
+
#
|
|
8379
|
+
# * `app:Canvas:relative/path`: Directs users to the relative path in
|
|
8380
|
+
# the Canvas application.
|
|
8381
|
+
# @return [String]
|
|
8382
|
+
#
|
|
7878
8383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePresignedDomainUrlRequest AWS API Documentation
|
|
7879
8384
|
#
|
|
7880
8385
|
class CreatePresignedDomainUrlRequest < Struct.new(
|
|
@@ -7882,7 +8387,8 @@ module Aws::SageMaker
|
|
|
7882
8387
|
:user_profile_name,
|
|
7883
8388
|
:session_expiration_duration_in_seconds,
|
|
7884
8389
|
:expires_in_seconds,
|
|
7885
|
-
:space_name
|
|
8390
|
+
:space_name,
|
|
8391
|
+
:landing_uri)
|
|
7886
8392
|
SENSITIVE = []
|
|
7887
8393
|
include Aws::Structure
|
|
7888
8394
|
end
|
|
@@ -8108,13 +8614,28 @@ module Aws::SageMaker
|
|
|
8108
8614
|
# A collection of space settings.
|
|
8109
8615
|
# @return [Types::SpaceSettings]
|
|
8110
8616
|
#
|
|
8617
|
+
# @!attribute [rw] space_display_name
|
|
8618
|
+
# The name of the space that appears in the SageMaker Studio UI.
|
|
8619
|
+
# @return [String]
|
|
8620
|
+
#
|
|
8621
|
+
# @!attribute [rw] ownership_settings
|
|
8622
|
+
# A collection of ownership settings.
|
|
8623
|
+
# @return [Types::OwnershipSettings]
|
|
8624
|
+
#
|
|
8625
|
+
# @!attribute [rw] space_sharing_settings
|
|
8626
|
+
# A collection of space sharing settings.
|
|
8627
|
+
# @return [Types::SpaceSharingSettings]
|
|
8628
|
+
#
|
|
8111
8629
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateSpaceRequest AWS API Documentation
|
|
8112
8630
|
#
|
|
8113
8631
|
class CreateSpaceRequest < Struct.new(
|
|
8114
8632
|
:domain_id,
|
|
8115
8633
|
:space_name,
|
|
8116
8634
|
:tags,
|
|
8117
|
-
:space_settings
|
|
8635
|
+
:space_settings,
|
|
8636
|
+
:space_display_name,
|
|
8637
|
+
:ownership_settings,
|
|
8638
|
+
:space_sharing_settings)
|
|
8118
8639
|
SENSITIVE = []
|
|
8119
8640
|
include Aws::Structure
|
|
8120
8641
|
end
|
|
@@ -8132,12 +8653,13 @@ module Aws::SageMaker
|
|
|
8132
8653
|
end
|
|
8133
8654
|
|
|
8134
8655
|
# @!attribute [rw] studio_lifecycle_config_name
|
|
8135
|
-
# The name of the Studio Lifecycle Configuration to
|
|
8656
|
+
# The name of the Amazon SageMaker Studio Lifecycle Configuration to
|
|
8657
|
+
# create.
|
|
8136
8658
|
# @return [String]
|
|
8137
8659
|
#
|
|
8138
8660
|
# @!attribute [rw] studio_lifecycle_config_content
|
|
8139
|
-
# The content of your Studio Lifecycle Configuration
|
|
8140
|
-
# content must be base64 encoded.
|
|
8661
|
+
# The content of your Amazon SageMaker Studio Lifecycle Configuration
|
|
8662
|
+
# script. This content must be base64 encoded.
|
|
8141
8663
|
# @return [String]
|
|
8142
8664
|
#
|
|
8143
8665
|
# @!attribute [rw] studio_lifecycle_config_app_type
|
|
@@ -8410,6 +8932,11 @@ module Aws::SageMaker
|
|
|
8410
8932
|
# `InternalServerError`.
|
|
8411
8933
|
# @return [Types::RetryStrategy]
|
|
8412
8934
|
#
|
|
8935
|
+
# @!attribute [rw] infra_check_config
|
|
8936
|
+
# Contains information about the infrastructure health check
|
|
8937
|
+
# configuration for the training job.
|
|
8938
|
+
# @return [Types::InfraCheckConfig]
|
|
8939
|
+
#
|
|
8413
8940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateTrainingJobRequest AWS API Documentation
|
|
8414
8941
|
#
|
|
8415
8942
|
class CreateTrainingJobRequest < Struct.new(
|
|
@@ -8434,7 +8961,8 @@ module Aws::SageMaker
|
|
|
8434
8961
|
:profiler_config,
|
|
8435
8962
|
:profiler_rule_configurations,
|
|
8436
8963
|
:environment,
|
|
8437
|
-
:retry_strategy
|
|
8964
|
+
:retry_strategy,
|
|
8965
|
+
:infra_check_config)
|
|
8438
8966
|
SENSITIVE = []
|
|
8439
8967
|
include Aws::Structure
|
|
8440
8968
|
end
|
|
@@ -8972,6 +9500,56 @@ module Aws::SageMaker
|
|
|
8972
9500
|
include Aws::Structure
|
|
8973
9501
|
end
|
|
8974
9502
|
|
|
9503
|
+
# A file system, created by you, that you assign to a user profile or
|
|
9504
|
+
# space for an Amazon SageMaker Domain. Permitted users can access this
|
|
9505
|
+
# file system in Amazon SageMaker Studio.
|
|
9506
|
+
#
|
|
9507
|
+
# @note CustomFileSystem is a union - when making an API calls you must set exactly one of the members.
|
|
9508
|
+
#
|
|
9509
|
+
# @note CustomFileSystem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CustomFileSystem corresponding to the set member.
|
|
9510
|
+
#
|
|
9511
|
+
# @!attribute [rw] efs_file_system
|
|
9512
|
+
# A custom file system in Amazon EFS.
|
|
9513
|
+
# @return [Types::EFSFileSystem]
|
|
9514
|
+
#
|
|
9515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomFileSystem AWS API Documentation
|
|
9516
|
+
#
|
|
9517
|
+
class CustomFileSystem < Struct.new(
|
|
9518
|
+
:efs_file_system,
|
|
9519
|
+
:unknown)
|
|
9520
|
+
SENSITIVE = []
|
|
9521
|
+
include Aws::Structure
|
|
9522
|
+
include Aws::Structure::Union
|
|
9523
|
+
|
|
9524
|
+
class EfsFileSystem < CustomFileSystem; end
|
|
9525
|
+
class Unknown < CustomFileSystem; end
|
|
9526
|
+
end
|
|
9527
|
+
|
|
9528
|
+
# The settings for assigning a custom file system to a user profile or
|
|
9529
|
+
# space for an Amazon SageMaker Domain. Permitted users can access this
|
|
9530
|
+
# file system in Amazon SageMaker Studio.
|
|
9531
|
+
#
|
|
9532
|
+
# @note CustomFileSystemConfig is a union - when making an API calls you must set exactly one of the members.
|
|
9533
|
+
#
|
|
9534
|
+
# @note CustomFileSystemConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CustomFileSystemConfig corresponding to the set member.
|
|
9535
|
+
#
|
|
9536
|
+
# @!attribute [rw] efs_file_system_config
|
|
9537
|
+
# The settings for a custom Amazon EFS file system.
|
|
9538
|
+
# @return [Types::EFSFileSystemConfig]
|
|
9539
|
+
#
|
|
9540
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomFileSystemConfig AWS API Documentation
|
|
9541
|
+
#
|
|
9542
|
+
class CustomFileSystemConfig < Struct.new(
|
|
9543
|
+
:efs_file_system_config,
|
|
9544
|
+
:unknown)
|
|
9545
|
+
SENSITIVE = []
|
|
9546
|
+
include Aws::Structure
|
|
9547
|
+
include Aws::Structure::Union
|
|
9548
|
+
|
|
9549
|
+
class EfsFileSystemConfig < CustomFileSystemConfig; end
|
|
9550
|
+
class Unknown < CustomFileSystemConfig; end
|
|
9551
|
+
end
|
|
9552
|
+
|
|
8975
9553
|
# A custom SageMaker image. For more information, see [Bring your own
|
|
8976
9554
|
# SageMaker image][1].
|
|
8977
9555
|
#
|
|
@@ -9001,6 +9579,26 @@ module Aws::SageMaker
|
|
|
9001
9579
|
include Aws::Structure
|
|
9002
9580
|
end
|
|
9003
9581
|
|
|
9582
|
+
# Details about the POSIX identity that is used for file system
|
|
9583
|
+
# operations.
|
|
9584
|
+
#
|
|
9585
|
+
# @!attribute [rw] uid
|
|
9586
|
+
# The POSIX user ID.
|
|
9587
|
+
# @return [Integer]
|
|
9588
|
+
#
|
|
9589
|
+
# @!attribute [rw] gid
|
|
9590
|
+
# The POSIX group ID.
|
|
9591
|
+
# @return [Integer]
|
|
9592
|
+
#
|
|
9593
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomPosixUserConfig AWS API Documentation
|
|
9594
|
+
#
|
|
9595
|
+
class CustomPosixUserConfig < Struct.new(
|
|
9596
|
+
:uid,
|
|
9597
|
+
:gid)
|
|
9598
|
+
SENSITIVE = []
|
|
9599
|
+
include Aws::Structure
|
|
9600
|
+
end
|
|
9601
|
+
|
|
9004
9602
|
# A customized metric.
|
|
9005
9603
|
#
|
|
9006
9604
|
# @!attribute [rw] metric_name
|
|
@@ -9519,6 +10117,26 @@ module Aws::SageMaker
|
|
|
9519
10117
|
include Aws::Structure
|
|
9520
10118
|
end
|
|
9521
10119
|
|
|
10120
|
+
# A collection of default EBS storage settings that applies to private
|
|
10121
|
+
# spaces created within a domain or user profile.
|
|
10122
|
+
#
|
|
10123
|
+
# @!attribute [rw] default_ebs_volume_size_in_gb
|
|
10124
|
+
# The default size of the EBS storage volume for a private space.
|
|
10125
|
+
# @return [Integer]
|
|
10126
|
+
#
|
|
10127
|
+
# @!attribute [rw] maximum_ebs_volume_size_in_gb
|
|
10128
|
+
# The maximum size of the EBS storage volume for a private space.
|
|
10129
|
+
# @return [Integer]
|
|
10130
|
+
#
|
|
10131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DefaultEbsStorageSettings AWS API Documentation
|
|
10132
|
+
#
|
|
10133
|
+
class DefaultEbsStorageSettings < Struct.new(
|
|
10134
|
+
:default_ebs_volume_size_in_gb,
|
|
10135
|
+
:maximum_ebs_volume_size_in_gb)
|
|
10136
|
+
SENSITIVE = []
|
|
10137
|
+
include Aws::Structure
|
|
10138
|
+
end
|
|
10139
|
+
|
|
9522
10140
|
# A collection of settings that apply to spaces created in the Domain.
|
|
9523
10141
|
#
|
|
9524
10142
|
# @!attribute [rw] execution_role
|
|
@@ -9549,6 +10167,20 @@ module Aws::SageMaker
|
|
|
9549
10167
|
include Aws::Structure
|
|
9550
10168
|
end
|
|
9551
10169
|
|
|
10170
|
+
# The default storage settings for a private space.
|
|
10171
|
+
#
|
|
10172
|
+
# @!attribute [rw] default_ebs_storage_settings
|
|
10173
|
+
# The default EBS storage settings for a private space.
|
|
10174
|
+
# @return [Types::DefaultEbsStorageSettings]
|
|
10175
|
+
#
|
|
10176
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DefaultSpaceStorageSettings AWS API Documentation
|
|
10177
|
+
#
|
|
10178
|
+
class DefaultSpaceStorageSettings < Struct.new(
|
|
10179
|
+
:default_ebs_storage_settings)
|
|
10180
|
+
SENSITIVE = []
|
|
10181
|
+
include Aws::Structure
|
|
10182
|
+
end
|
|
10183
|
+
|
|
9552
10184
|
# @!attribute [rw] action_name
|
|
9553
10185
|
# The name of the action to delete.
|
|
9554
10186
|
# @return [String]
|
|
@@ -9694,6 +10326,32 @@ module Aws::SageMaker
|
|
|
9694
10326
|
include Aws::Structure
|
|
9695
10327
|
end
|
|
9696
10328
|
|
|
10329
|
+
# @!attribute [rw] cluster_name
|
|
10330
|
+
# The string name or the Amazon Resource Name (ARN) of the SageMaker
|
|
10331
|
+
# HyperPod cluster to delete.
|
|
10332
|
+
# @return [String]
|
|
10333
|
+
#
|
|
10334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteClusterRequest AWS API Documentation
|
|
10335
|
+
#
|
|
10336
|
+
class DeleteClusterRequest < Struct.new(
|
|
10337
|
+
:cluster_name)
|
|
10338
|
+
SENSITIVE = []
|
|
10339
|
+
include Aws::Structure
|
|
10340
|
+
end
|
|
10341
|
+
|
|
10342
|
+
# @!attribute [rw] cluster_arn
|
|
10343
|
+
# The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster to
|
|
10344
|
+
# delete.
|
|
10345
|
+
# @return [String]
|
|
10346
|
+
#
|
|
10347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteClusterResponse AWS API Documentation
|
|
10348
|
+
#
|
|
10349
|
+
class DeleteClusterResponse < Struct.new(
|
|
10350
|
+
:cluster_arn)
|
|
10351
|
+
SENSITIVE = []
|
|
10352
|
+
include Aws::Structure
|
|
10353
|
+
end
|
|
10354
|
+
|
|
9697
10355
|
# @!attribute [rw] code_repository_name
|
|
9698
10356
|
# The name of the Git repository to delete.
|
|
9699
10357
|
# @return [String]
|
|
@@ -9980,6 +10638,18 @@ module Aws::SageMaker
|
|
|
9980
10638
|
#
|
|
9981
10639
|
class DeleteImageVersionResponse < Aws::EmptyStructure; end
|
|
9982
10640
|
|
|
10641
|
+
# @!attribute [rw] inference_component_name
|
|
10642
|
+
# The name of the inference component to delete.
|
|
10643
|
+
# @return [String]
|
|
10644
|
+
#
|
|
10645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteInferenceComponentInput AWS API Documentation
|
|
10646
|
+
#
|
|
10647
|
+
class DeleteInferenceComponentInput < Struct.new(
|
|
10648
|
+
:inference_component_name)
|
|
10649
|
+
SENSITIVE = []
|
|
10650
|
+
include Aws::Structure
|
|
10651
|
+
end
|
|
10652
|
+
|
|
9983
10653
|
# @!attribute [rw] name
|
|
9984
10654
|
# The name of the inference experiment you want to delete.
|
|
9985
10655
|
# @return [String]
|
|
@@ -10204,7 +10874,8 @@ module Aws::SageMaker
|
|
|
10204
10874
|
end
|
|
10205
10875
|
|
|
10206
10876
|
# @!attribute [rw] studio_lifecycle_config_name
|
|
10207
|
-
# The name of the Studio Lifecycle Configuration to
|
|
10877
|
+
# The name of the Amazon SageMaker Studio Lifecycle Configuration to
|
|
10878
|
+
# delete.
|
|
10208
10879
|
# @return [String]
|
|
10209
10880
|
#
|
|
10210
10881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteStudioLifecycleConfigRequest AWS API Documentation
|
|
@@ -10732,6 +11403,10 @@ module Aws::SageMaker
|
|
|
10732
11403
|
# The configuration of a KernelGateway app.
|
|
10733
11404
|
# @return [Types::KernelGatewayImageConfig]
|
|
10734
11405
|
#
|
|
11406
|
+
# @!attribute [rw] jupyter_lab_app_image_config
|
|
11407
|
+
# The configuration of the JupyterLab app.
|
|
11408
|
+
# @return [Types::JupyterLabAppImageConfig]
|
|
11409
|
+
#
|
|
10735
11410
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppImageConfigResponse AWS API Documentation
|
|
10736
11411
|
#
|
|
10737
11412
|
class DescribeAppImageConfigResponse < Struct.new(
|
|
@@ -10739,7 +11414,8 @@ module Aws::SageMaker
|
|
|
10739
11414
|
:app_image_config_name,
|
|
10740
11415
|
:creation_time,
|
|
10741
11416
|
:last_modified_time,
|
|
10742
|
-
:kernel_gateway_image_config
|
|
11417
|
+
:kernel_gateway_image_config,
|
|
11418
|
+
:jupyter_lab_app_image_config)
|
|
10743
11419
|
SENSITIVE = []
|
|
10744
11420
|
include Aws::Structure
|
|
10745
11421
|
end
|
|
@@ -11203,6 +11879,99 @@ module Aws::SageMaker
|
|
|
11203
11879
|
include Aws::Structure
|
|
11204
11880
|
end
|
|
11205
11881
|
|
|
11882
|
+
# @!attribute [rw] cluster_name
|
|
11883
|
+
# The string name or the Amazon Resource Name (ARN) of the SageMaker
|
|
11884
|
+
# HyperPod cluster in which the instance is.
|
|
11885
|
+
# @return [String]
|
|
11886
|
+
#
|
|
11887
|
+
# @!attribute [rw] node_id
|
|
11888
|
+
# The ID of the instance.
|
|
11889
|
+
# @return [String]
|
|
11890
|
+
#
|
|
11891
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNodeRequest AWS API Documentation
|
|
11892
|
+
#
|
|
11893
|
+
class DescribeClusterNodeRequest < Struct.new(
|
|
11894
|
+
:cluster_name,
|
|
11895
|
+
:node_id)
|
|
11896
|
+
SENSITIVE = []
|
|
11897
|
+
include Aws::Structure
|
|
11898
|
+
end
|
|
11899
|
+
|
|
11900
|
+
# @!attribute [rw] node_details
|
|
11901
|
+
# The details of the instance.
|
|
11902
|
+
# @return [Types::ClusterNodeDetails]
|
|
11903
|
+
#
|
|
11904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNodeResponse AWS API Documentation
|
|
11905
|
+
#
|
|
11906
|
+
class DescribeClusterNodeResponse < Struct.new(
|
|
11907
|
+
:node_details)
|
|
11908
|
+
SENSITIVE = []
|
|
11909
|
+
include Aws::Structure
|
|
11910
|
+
end
|
|
11911
|
+
|
|
11912
|
+
# @!attribute [rw] cluster_name
|
|
11913
|
+
# The string name or the Amazon Resource Name (ARN) of the SageMaker
|
|
11914
|
+
# HyperPod cluster.
|
|
11915
|
+
# @return [String]
|
|
11916
|
+
#
|
|
11917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterRequest AWS API Documentation
|
|
11918
|
+
#
|
|
11919
|
+
class DescribeClusterRequest < Struct.new(
|
|
11920
|
+
:cluster_name)
|
|
11921
|
+
SENSITIVE = []
|
|
11922
|
+
include Aws::Structure
|
|
11923
|
+
end
|
|
11924
|
+
|
|
11925
|
+
# @!attribute [rw] cluster_arn
|
|
11926
|
+
# The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster.
|
|
11927
|
+
# @return [String]
|
|
11928
|
+
#
|
|
11929
|
+
# @!attribute [rw] cluster_name
|
|
11930
|
+
# The name of the SageMaker HyperPod cluster.
|
|
11931
|
+
# @return [String]
|
|
11932
|
+
#
|
|
11933
|
+
# @!attribute [rw] cluster_status
|
|
11934
|
+
# The status of the SageMaker HyperPod cluster.
|
|
11935
|
+
# @return [String]
|
|
11936
|
+
#
|
|
11937
|
+
# @!attribute [rw] creation_time
|
|
11938
|
+
# The time when the SageMaker Cluster is created.
|
|
11939
|
+
# @return [Time]
|
|
11940
|
+
#
|
|
11941
|
+
# @!attribute [rw] failure_message
|
|
11942
|
+
# The failure message of the SageMaker HyperPod cluster.
|
|
11943
|
+
# @return [String]
|
|
11944
|
+
#
|
|
11945
|
+
# @!attribute [rw] instance_groups
|
|
11946
|
+
# The instance groups of the SageMaker HyperPod cluster.
|
|
11947
|
+
# @return [Array<Types::ClusterInstanceGroupDetails>]
|
|
11948
|
+
#
|
|
11949
|
+
# @!attribute [rw] vpc_config
|
|
11950
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
|
11951
|
+
# jobs, hosted models, and compute resources have access to. You can
|
|
11952
|
+
# control access to and from your resources by configuring a VPC. For
|
|
11953
|
+
# more information, see [Give SageMaker Access to Resources in your
|
|
11954
|
+
# Amazon VPC][1].
|
|
11955
|
+
#
|
|
11956
|
+
#
|
|
11957
|
+
#
|
|
11958
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
|
11959
|
+
# @return [Types::VpcConfig]
|
|
11960
|
+
#
|
|
11961
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterResponse AWS API Documentation
|
|
11962
|
+
#
|
|
11963
|
+
class DescribeClusterResponse < Struct.new(
|
|
11964
|
+
:cluster_arn,
|
|
11965
|
+
:cluster_name,
|
|
11966
|
+
:cluster_status,
|
|
11967
|
+
:creation_time,
|
|
11968
|
+
:failure_message,
|
|
11969
|
+
:instance_groups,
|
|
11970
|
+
:vpc_config)
|
|
11971
|
+
SENSITIVE = []
|
|
11972
|
+
include Aws::Structure
|
|
11973
|
+
end
|
|
11974
|
+
|
|
11206
11975
|
# @!attribute [rw] code_repository_name
|
|
11207
11976
|
# The name of the Git repository to describe.
|
|
11208
11977
|
# @return [String]
|
|
@@ -11765,8 +12534,7 @@ module Aws::SageMaker
|
|
|
11765
12534
|
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
|
11766
12535
|
# Amazon SageMaker, which allows direct internet access
|
|
11767
12536
|
#
|
|
11768
|
-
# * `VpcOnly` - All
|
|
11769
|
-
# subnets
|
|
12537
|
+
# * `VpcOnly` - All traffic is through the specified VPC and subnets
|
|
11770
12538
|
# @return [String]
|
|
11771
12539
|
#
|
|
11772
12540
|
# @!attribute [rw] home_efs_file_system_kms_key_id
|
|
@@ -11774,7 +12542,7 @@ module Aws::SageMaker
|
|
|
11774
12542
|
# @return [String]
|
|
11775
12543
|
#
|
|
11776
12544
|
# @!attribute [rw] subnet_ids
|
|
11777
|
-
# The VPC subnets that
|
|
12545
|
+
# The VPC subnets that the domain uses for communication.
|
|
11778
12546
|
# @return [Array<String>]
|
|
11779
12547
|
#
|
|
11780
12548
|
# @!attribute [rw] url
|
|
@@ -11782,8 +12550,8 @@ module Aws::SageMaker
|
|
|
11782
12550
|
# @return [String]
|
|
11783
12551
|
#
|
|
11784
12552
|
# @!attribute [rw] vpc_id
|
|
11785
|
-
# The ID of the Amazon Virtual Private Cloud (VPC) that
|
|
11786
|
-
# for communication.
|
|
12553
|
+
# The ID of the Amazon Virtual Private Cloud (VPC) that the domain
|
|
12554
|
+
# uses for communication.
|
|
11787
12555
|
# @return [String]
|
|
11788
12556
|
#
|
|
11789
12557
|
# @!attribute [rw] kms_key_id
|
|
@@ -12083,6 +12851,29 @@ module Aws::SageMaker
|
|
|
12083
12851
|
# replicated from the model specified on `ProductionVariants`.
|
|
12084
12852
|
# @return [Array<Types::ProductionVariant>]
|
|
12085
12853
|
#
|
|
12854
|
+
# @!attribute [rw] execution_role_arn
|
|
12855
|
+
# The Amazon Resource Name (ARN) of the IAM role that you assigned to
|
|
12856
|
+
# the endpoint configuration.
|
|
12857
|
+
# @return [String]
|
|
12858
|
+
#
|
|
12859
|
+
# @!attribute [rw] vpc_config
|
|
12860
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
|
12861
|
+
# jobs, hosted models, and compute resources have access to. You can
|
|
12862
|
+
# control access to and from your resources by configuring a VPC. For
|
|
12863
|
+
# more information, see [Give SageMaker Access to Resources in your
|
|
12864
|
+
# Amazon VPC][1].
|
|
12865
|
+
#
|
|
12866
|
+
#
|
|
12867
|
+
#
|
|
12868
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
|
12869
|
+
# @return [Types::VpcConfig]
|
|
12870
|
+
#
|
|
12871
|
+
# @!attribute [rw] enable_network_isolation
|
|
12872
|
+
# Indicates whether all model containers deployed to the endpoint are
|
|
12873
|
+
# isolated. If they are, no inbound or outbound network calls can be
|
|
12874
|
+
# made to or from the model containers.
|
|
12875
|
+
# @return [Boolean]
|
|
12876
|
+
#
|
|
12086
12877
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointConfigOutput AWS API Documentation
|
|
12087
12878
|
#
|
|
12088
12879
|
class DescribeEndpointConfigOutput < Struct.new(
|
|
@@ -12094,7 +12885,10 @@ module Aws::SageMaker
|
|
|
12094
12885
|
:creation_time,
|
|
12095
12886
|
:async_inference_config,
|
|
12096
12887
|
:explainer_config,
|
|
12097
|
-
:shadow_production_variants
|
|
12888
|
+
:shadow_production_variants,
|
|
12889
|
+
:execution_role_arn,
|
|
12890
|
+
:vpc_config,
|
|
12891
|
+
:enable_network_isolation)
|
|
12098
12892
|
SENSITIVE = []
|
|
12099
12893
|
include Aws::Structure
|
|
12100
12894
|
end
|
|
@@ -13204,6 +13998,85 @@ module Aws::SageMaker
|
|
|
13204
13998
|
include Aws::Structure
|
|
13205
13999
|
end
|
|
13206
14000
|
|
|
14001
|
+
# @!attribute [rw] inference_component_name
|
|
14002
|
+
# The name of the inference component.
|
|
14003
|
+
# @return [String]
|
|
14004
|
+
#
|
|
14005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceComponentInput AWS API Documentation
|
|
14006
|
+
#
|
|
14007
|
+
class DescribeInferenceComponentInput < Struct.new(
|
|
14008
|
+
:inference_component_name)
|
|
14009
|
+
SENSITIVE = []
|
|
14010
|
+
include Aws::Structure
|
|
14011
|
+
end
|
|
14012
|
+
|
|
14013
|
+
# @!attribute [rw] inference_component_name
|
|
14014
|
+
# The name of the inference component.
|
|
14015
|
+
# @return [String]
|
|
14016
|
+
#
|
|
14017
|
+
# @!attribute [rw] inference_component_arn
|
|
14018
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
|
14019
|
+
# @return [String]
|
|
14020
|
+
#
|
|
14021
|
+
# @!attribute [rw] endpoint_name
|
|
14022
|
+
# The name of the endpoint that hosts the inference component.
|
|
14023
|
+
# @return [String]
|
|
14024
|
+
#
|
|
14025
|
+
# @!attribute [rw] endpoint_arn
|
|
14026
|
+
# The Amazon Resource Name (ARN) of the endpoint that hosts the
|
|
14027
|
+
# inference component.
|
|
14028
|
+
# @return [String]
|
|
14029
|
+
#
|
|
14030
|
+
# @!attribute [rw] variant_name
|
|
14031
|
+
# The name of the production variant that hosts the inference
|
|
14032
|
+
# component.
|
|
14033
|
+
# @return [String]
|
|
14034
|
+
#
|
|
14035
|
+
# @!attribute [rw] failure_reason
|
|
14036
|
+
# If the inference component status is `Failed`, the reason for the
|
|
14037
|
+
# failure.
|
|
14038
|
+
# @return [String]
|
|
14039
|
+
#
|
|
14040
|
+
# @!attribute [rw] specification
|
|
14041
|
+
# Details about the resources that are deployed with this inference
|
|
14042
|
+
# component.
|
|
14043
|
+
# @return [Types::InferenceComponentSpecificationSummary]
|
|
14044
|
+
#
|
|
14045
|
+
# @!attribute [rw] runtime_config
|
|
14046
|
+
# Details about the runtime settings for the model that is deployed
|
|
14047
|
+
# with the inference component.
|
|
14048
|
+
# @return [Types::InferenceComponentRuntimeConfigSummary]
|
|
14049
|
+
#
|
|
14050
|
+
# @!attribute [rw] creation_time
|
|
14051
|
+
# The time when the inference component was created.
|
|
14052
|
+
# @return [Time]
|
|
14053
|
+
#
|
|
14054
|
+
# @!attribute [rw] last_modified_time
|
|
14055
|
+
# The time when the inference component was last updated.
|
|
14056
|
+
# @return [Time]
|
|
14057
|
+
#
|
|
14058
|
+
# @!attribute [rw] inference_component_status
|
|
14059
|
+
# The status of the inference component.
|
|
14060
|
+
# @return [String]
|
|
14061
|
+
#
|
|
14062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceComponentOutput AWS API Documentation
|
|
14063
|
+
#
|
|
14064
|
+
class DescribeInferenceComponentOutput < Struct.new(
|
|
14065
|
+
:inference_component_name,
|
|
14066
|
+
:inference_component_arn,
|
|
14067
|
+
:endpoint_name,
|
|
14068
|
+
:endpoint_arn,
|
|
14069
|
+
:variant_name,
|
|
14070
|
+
:failure_reason,
|
|
14071
|
+
:specification,
|
|
14072
|
+
:runtime_config,
|
|
14073
|
+
:creation_time,
|
|
14074
|
+
:last_modified_time,
|
|
14075
|
+
:inference_component_status)
|
|
14076
|
+
SENSITIVE = []
|
|
14077
|
+
include Aws::Structure
|
|
14078
|
+
end
|
|
14079
|
+
|
|
13207
14080
|
# @!attribute [rw] name
|
|
13208
14081
|
# The name of the inference experiment to describe.
|
|
13209
14082
|
# @return [String]
|
|
@@ -15209,6 +16082,33 @@ module Aws::SageMaker
|
|
|
15209
16082
|
# A collection of space settings.
|
|
15210
16083
|
# @return [Types::SpaceSettings]
|
|
15211
16084
|
#
|
|
16085
|
+
# @!attribute [rw] url
|
|
16086
|
+
# Returns the URL of the space. If the space is created with Amazon
|
|
16087
|
+
# Web Services IAM Identity Center (Successor to Amazon Web Services
|
|
16088
|
+
# Single Sign-On) authentication, users can navigate to the URL after
|
|
16089
|
+
# appending the respective redirect parameter for the application type
|
|
16090
|
+
# to be federated through Amazon Web Services IAM Identity Center.
|
|
16091
|
+
#
|
|
16092
|
+
# The following application types are supported:
|
|
16093
|
+
#
|
|
16094
|
+
# * Studio Classic: `&redirect=JupyterServer`
|
|
16095
|
+
#
|
|
16096
|
+
# * JupyterLab: `&redirect=JupyterLab`
|
|
16097
|
+
# @return [String]
|
|
16098
|
+
#
|
|
16099
|
+
# @!attribute [rw] space_display_name
|
|
16100
|
+
# The name of the space that appears in the Amazon SageMaker Studio
|
|
16101
|
+
# UI.
|
|
16102
|
+
# @return [String]
|
|
16103
|
+
#
|
|
16104
|
+
# @!attribute [rw] ownership_settings
|
|
16105
|
+
# The collection of ownership settings for a space.
|
|
16106
|
+
# @return [Types::OwnershipSettings]
|
|
16107
|
+
#
|
|
16108
|
+
# @!attribute [rw] space_sharing_settings
|
|
16109
|
+
# The collection of space sharing settings for a space.
|
|
16110
|
+
# @return [Types::SpaceSharingSettings]
|
|
16111
|
+
#
|
|
15212
16112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeSpaceResponse AWS API Documentation
|
|
15213
16113
|
#
|
|
15214
16114
|
class DescribeSpaceResponse < Struct.new(
|
|
@@ -15220,13 +16120,18 @@ module Aws::SageMaker
|
|
|
15220
16120
|
:last_modified_time,
|
|
15221
16121
|
:creation_time,
|
|
15222
16122
|
:failure_reason,
|
|
15223
|
-
:space_settings
|
|
16123
|
+
:space_settings,
|
|
16124
|
+
:url,
|
|
16125
|
+
:space_display_name,
|
|
16126
|
+
:ownership_settings,
|
|
16127
|
+
:space_sharing_settings)
|
|
15224
16128
|
SENSITIVE = []
|
|
15225
16129
|
include Aws::Structure
|
|
15226
16130
|
end
|
|
15227
16131
|
|
|
15228
16132
|
# @!attribute [rw] studio_lifecycle_config_name
|
|
15229
|
-
# The name of the Studio Lifecycle Configuration to
|
|
16133
|
+
# The name of the Amazon SageMaker Studio Lifecycle Configuration to
|
|
16134
|
+
# describe.
|
|
15230
16135
|
# @return [String]
|
|
15231
16136
|
#
|
|
15232
16137
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeStudioLifecycleConfigRequest AWS API Documentation
|
|
@@ -15242,20 +16147,23 @@ module Aws::SageMaker
|
|
|
15242
16147
|
# @return [String]
|
|
15243
16148
|
#
|
|
15244
16149
|
# @!attribute [rw] studio_lifecycle_config_name
|
|
15245
|
-
# The name of the Studio Lifecycle Configuration that
|
|
16150
|
+
# The name of the Amazon SageMaker Studio Lifecycle Configuration that
|
|
16151
|
+
# is described.
|
|
15246
16152
|
# @return [String]
|
|
15247
16153
|
#
|
|
15248
16154
|
# @!attribute [rw] creation_time
|
|
15249
|
-
# The creation time of the Studio Lifecycle
|
|
16155
|
+
# The creation time of the Amazon SageMaker Studio Lifecycle
|
|
16156
|
+
# Configuration.
|
|
15250
16157
|
# @return [Time]
|
|
15251
16158
|
#
|
|
15252
16159
|
# @!attribute [rw] last_modified_time
|
|
15253
|
-
# This value is equivalent to CreationTime because
|
|
15254
|
-
# Configurations are immutable.
|
|
16160
|
+
# This value is equivalent to CreationTime because Amazon SageMaker
|
|
16161
|
+
# Studio Lifecycle Configurations are immutable.
|
|
15255
16162
|
# @return [Time]
|
|
15256
16163
|
#
|
|
15257
16164
|
# @!attribute [rw] studio_lifecycle_config_content
|
|
15258
|
-
# The content of your Studio Lifecycle Configuration
|
|
16165
|
+
# The content of your Amazon SageMaker Studio Lifecycle Configuration
|
|
16166
|
+
# script.
|
|
15259
16167
|
# @return [String]
|
|
15260
16168
|
#
|
|
15261
16169
|
# @!attribute [rw] studio_lifecycle_config_app_type
|
|
@@ -15641,6 +16549,11 @@ module Aws::SageMaker
|
|
|
15641
16549
|
# The status of the warm pool associated with the training job.
|
|
15642
16550
|
# @return [Types::WarmPoolStatus]
|
|
15643
16551
|
#
|
|
16552
|
+
# @!attribute [rw] infra_check_config
|
|
16553
|
+
# Contains information about the infrastructure health check
|
|
16554
|
+
# configuration for the training job.
|
|
16555
|
+
# @return [Types::InfraCheckConfig]
|
|
16556
|
+
#
|
|
15644
16557
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingJobResponse AWS API Documentation
|
|
15645
16558
|
#
|
|
15646
16559
|
class DescribeTrainingJobResponse < Struct.new(
|
|
@@ -15684,7 +16597,8 @@ module Aws::SageMaker
|
|
|
15684
16597
|
:profiling_status,
|
|
15685
16598
|
:retry_strategy,
|
|
15686
16599
|
:environment,
|
|
15687
|
-
:warm_pool_status
|
|
16600
|
+
:warm_pool_status,
|
|
16601
|
+
:infra_check_config)
|
|
15688
16602
|
SENSITIVE = []
|
|
15689
16603
|
include Aws::Structure
|
|
15690
16604
|
end
|
|
@@ -16779,6 +17693,44 @@ module Aws::SageMaker
|
|
|
16779
17693
|
include Aws::Structure
|
|
16780
17694
|
end
|
|
16781
17695
|
|
|
17696
|
+
# A file system, created by you in Amazon EFS, that you assign to a user
|
|
17697
|
+
# profile or space for an Amazon SageMaker Domain. Permitted users can
|
|
17698
|
+
# access this file system in Amazon SageMaker Studio.
|
|
17699
|
+
#
|
|
17700
|
+
# @!attribute [rw] file_system_id
|
|
17701
|
+
# The ID of your Amazon EFS file system.
|
|
17702
|
+
# @return [String]
|
|
17703
|
+
#
|
|
17704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EFSFileSystem AWS API Documentation
|
|
17705
|
+
#
|
|
17706
|
+
class EFSFileSystem < Struct.new(
|
|
17707
|
+
:file_system_id)
|
|
17708
|
+
SENSITIVE = []
|
|
17709
|
+
include Aws::Structure
|
|
17710
|
+
end
|
|
17711
|
+
|
|
17712
|
+
# The settings for assigning a custom Amazon EFS file system to a user
|
|
17713
|
+
# profile or space for an Amazon SageMaker Domain.
|
|
17714
|
+
#
|
|
17715
|
+
# @!attribute [rw] file_system_id
|
|
17716
|
+
# The ID of your Amazon EFS file system.
|
|
17717
|
+
# @return [String]
|
|
17718
|
+
#
|
|
17719
|
+
# @!attribute [rw] file_system_path
|
|
17720
|
+
# The path to the file system directory that is accessible in Amazon
|
|
17721
|
+
# SageMaker Studio. Permitted users can access only this directory and
|
|
17722
|
+
# below.
|
|
17723
|
+
# @return [String]
|
|
17724
|
+
#
|
|
17725
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EFSFileSystemConfig AWS API Documentation
|
|
17726
|
+
#
|
|
17727
|
+
class EFSFileSystemConfig < Struct.new(
|
|
17728
|
+
:file_system_id,
|
|
17729
|
+
:file_system_path)
|
|
17730
|
+
SENSITIVE = []
|
|
17731
|
+
include Aws::Structure
|
|
17732
|
+
end
|
|
17733
|
+
|
|
16782
17734
|
# The configurations and outcomes of an Amazon EMR step execution.
|
|
16783
17735
|
#
|
|
16784
17736
|
# @!attribute [rw] cluster_id
|
|
@@ -16809,6 +17761,20 @@ module Aws::SageMaker
|
|
|
16809
17761
|
include Aws::Structure
|
|
16810
17762
|
end
|
|
16811
17763
|
|
|
17764
|
+
# A collection of EBS storage settings that applies to private spaces.
|
|
17765
|
+
#
|
|
17766
|
+
# @!attribute [rw] ebs_volume_size_in_gb
|
|
17767
|
+
# The size of an EBS storage volume for a private space.
|
|
17768
|
+
# @return [Integer]
|
|
17769
|
+
#
|
|
17770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EbsStorageSettings AWS API Documentation
|
|
17771
|
+
#
|
|
17772
|
+
class EbsStorageSettings < Struct.new(
|
|
17773
|
+
:ebs_volume_size_in_gb)
|
|
17774
|
+
SENSITIVE = []
|
|
17775
|
+
include Aws::Structure
|
|
17776
|
+
end
|
|
17777
|
+
|
|
16812
17778
|
# A directed edge connecting two lineage entities.
|
|
16813
17779
|
#
|
|
16814
17780
|
# @!attribute [rw] source_arn
|
|
@@ -21587,6 +22553,294 @@ module Aws::SageMaker
|
|
|
21587
22553
|
include Aws::Structure
|
|
21588
22554
|
end
|
|
21589
22555
|
|
|
22556
|
+
# Defines the compute resources to allocate to run a model that you
|
|
22557
|
+
# assign to an inference component. These resources include CPU cores,
|
|
22558
|
+
# accelerators, and memory.
|
|
22559
|
+
#
|
|
22560
|
+
# @!attribute [rw] number_of_cpu_cores_required
|
|
22561
|
+
# The number of CPU cores to allocate to run a model that you assign
|
|
22562
|
+
# to an inference component.
|
|
22563
|
+
# @return [Float]
|
|
22564
|
+
#
|
|
22565
|
+
# @!attribute [rw] number_of_accelerator_devices_required
|
|
22566
|
+
# The number of accelerators to allocate to run a model that you
|
|
22567
|
+
# assign to an inference component. Accelerators include GPUs and
|
|
22568
|
+
# Amazon Web Services Inferentia.
|
|
22569
|
+
# @return [Float]
|
|
22570
|
+
#
|
|
22571
|
+
# @!attribute [rw] min_memory_required_in_mb
|
|
22572
|
+
# The minimum MB of memory to allocate to run a model that you assign
|
|
22573
|
+
# to an inference component.
|
|
22574
|
+
# @return [Integer]
|
|
22575
|
+
#
|
|
22576
|
+
# @!attribute [rw] max_memory_required_in_mb
|
|
22577
|
+
# The maximum MB of memory to allocate to run a model that you assign
|
|
22578
|
+
# to an inference component.
|
|
22579
|
+
# @return [Integer]
|
|
22580
|
+
#
|
|
22581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentComputeResourceRequirements AWS API Documentation
|
|
22582
|
+
#
|
|
22583
|
+
class InferenceComponentComputeResourceRequirements < Struct.new(
|
|
22584
|
+
:number_of_cpu_cores_required,
|
|
22585
|
+
:number_of_accelerator_devices_required,
|
|
22586
|
+
:min_memory_required_in_mb,
|
|
22587
|
+
:max_memory_required_in_mb)
|
|
22588
|
+
SENSITIVE = []
|
|
22589
|
+
include Aws::Structure
|
|
22590
|
+
end
|
|
22591
|
+
|
|
22592
|
+
# Defines a container that provides the runtime environment for a model
|
|
22593
|
+
# that you deploy with an inference component.
|
|
22594
|
+
#
|
|
22595
|
+
# @!attribute [rw] image
|
|
22596
|
+
# The Amazon Elastic Container Registry (Amazon ECR) path where the
|
|
22597
|
+
# Docker image for the model is stored.
|
|
22598
|
+
# @return [String]
|
|
22599
|
+
#
|
|
22600
|
+
# @!attribute [rw] artifact_url
|
|
22601
|
+
# The Amazon S3 path where the model artifacts, which result from
|
|
22602
|
+
# model training, are stored. This path must point to a single gzip
|
|
22603
|
+
# compressed tar archive (.tar.gz suffix).
|
|
22604
|
+
# @return [String]
|
|
22605
|
+
#
|
|
22606
|
+
# @!attribute [rw] environment
|
|
22607
|
+
# The environment variables to set in the Docker container. Each key
|
|
22608
|
+
# and value in the Environment string-to-string map can have length of
|
|
22609
|
+
# up to 1024. We support up to 16 entries in the map.
|
|
22610
|
+
# @return [Hash<String,String>]
|
|
22611
|
+
#
|
|
22612
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentContainerSpecification AWS API Documentation
|
|
22613
|
+
#
|
|
22614
|
+
class InferenceComponentContainerSpecification < Struct.new(
|
|
22615
|
+
:image,
|
|
22616
|
+
:artifact_url,
|
|
22617
|
+
:environment)
|
|
22618
|
+
SENSITIVE = []
|
|
22619
|
+
include Aws::Structure
|
|
22620
|
+
end
|
|
22621
|
+
|
|
22622
|
+
# Details about the resources that are deployed with this inference
|
|
22623
|
+
# component.
|
|
22624
|
+
#
|
|
22625
|
+
# @!attribute [rw] deployed_image
|
|
22626
|
+
# Gets the Amazon EC2 Container Registry path of the docker image of
|
|
22627
|
+
# the model that is hosted in this [ProductionVariant][1].
|
|
22628
|
+
#
|
|
22629
|
+
# If you used the `registry/repository[:tag]` form to specify the
|
|
22630
|
+
# image path of the primary container when you created the model
|
|
22631
|
+
# hosted in this `ProductionVariant`, the path resolves to a path of
|
|
22632
|
+
# the form `registry/repository[@digest]`. A digest is a hash value
|
|
22633
|
+
# that identifies a specific version of an image. For information
|
|
22634
|
+
# about Amazon ECR paths, see [Pulling an Image][2] in the *Amazon ECR
|
|
22635
|
+
# User Guide*.
|
|
22636
|
+
#
|
|
22637
|
+
#
|
|
22638
|
+
#
|
|
22639
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ProductionVariant.html
|
|
22640
|
+
# [2]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/docker-pull-ecr-image.html
|
|
22641
|
+
# @return [Types::DeployedImage]
|
|
22642
|
+
#
|
|
22643
|
+
# @!attribute [rw] artifact_url
|
|
22644
|
+
# The Amazon S3 path where the model artifacts are stored.
|
|
22645
|
+
# @return [String]
|
|
22646
|
+
#
|
|
22647
|
+
# @!attribute [rw] environment
|
|
22648
|
+
# The environment variables to set in the Docker container.
|
|
22649
|
+
# @return [Hash<String,String>]
|
|
22650
|
+
#
|
|
22651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentContainerSpecificationSummary AWS API Documentation
|
|
22652
|
+
#
|
|
22653
|
+
class InferenceComponentContainerSpecificationSummary < Struct.new(
|
|
22654
|
+
:deployed_image,
|
|
22655
|
+
:artifact_url,
|
|
22656
|
+
:environment)
|
|
22657
|
+
SENSITIVE = []
|
|
22658
|
+
include Aws::Structure
|
|
22659
|
+
end
|
|
22660
|
+
|
|
22661
|
+
# Runtime settings for a model that is deployed with an inference
|
|
22662
|
+
# component.
|
|
22663
|
+
#
|
|
22664
|
+
# @!attribute [rw] copy_count
|
|
22665
|
+
# The number of runtime copies of the model container to deploy with
|
|
22666
|
+
# the inference component. Each copy can serve inference requests.
|
|
22667
|
+
# @return [Integer]
|
|
22668
|
+
#
|
|
22669
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentRuntimeConfig AWS API Documentation
|
|
22670
|
+
#
|
|
22671
|
+
class InferenceComponentRuntimeConfig < Struct.new(
|
|
22672
|
+
:copy_count)
|
|
22673
|
+
SENSITIVE = []
|
|
22674
|
+
include Aws::Structure
|
|
22675
|
+
end
|
|
22676
|
+
|
|
22677
|
+
# Details about the runtime settings for the model that is deployed with
|
|
22678
|
+
# the inference component.
|
|
22679
|
+
#
|
|
22680
|
+
# @!attribute [rw] desired_copy_count
|
|
22681
|
+
# The number of runtime copies of the model container that you
|
|
22682
|
+
# requested to deploy with the inference component.
|
|
22683
|
+
# @return [Integer]
|
|
22684
|
+
#
|
|
22685
|
+
# @!attribute [rw] current_copy_count
|
|
22686
|
+
# The number of runtime copies of the model container that are
|
|
22687
|
+
# currently deployed.
|
|
22688
|
+
# @return [Integer]
|
|
22689
|
+
#
|
|
22690
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentRuntimeConfigSummary AWS API Documentation
|
|
22691
|
+
#
|
|
22692
|
+
class InferenceComponentRuntimeConfigSummary < Struct.new(
|
|
22693
|
+
:desired_copy_count,
|
|
22694
|
+
:current_copy_count)
|
|
22695
|
+
SENSITIVE = []
|
|
22696
|
+
include Aws::Structure
|
|
22697
|
+
end
|
|
22698
|
+
|
|
22699
|
+
# Details about the resources to deploy with this inference component,
|
|
22700
|
+
# including the model, container, and compute resources.
|
|
22701
|
+
#
|
|
22702
|
+
# @!attribute [rw] model_name
|
|
22703
|
+
# The name of an existing SageMaker model object in your account that
|
|
22704
|
+
# you want to deploy with the inference component.
|
|
22705
|
+
# @return [String]
|
|
22706
|
+
#
|
|
22707
|
+
# @!attribute [rw] container
|
|
22708
|
+
# Defines a container that provides the runtime environment for a
|
|
22709
|
+
# model that you deploy with an inference component.
|
|
22710
|
+
# @return [Types::InferenceComponentContainerSpecification]
|
|
22711
|
+
#
|
|
22712
|
+
# @!attribute [rw] startup_parameters
|
|
22713
|
+
# Settings that take effect while the model container starts up.
|
|
22714
|
+
# @return [Types::InferenceComponentStartupParameters]
|
|
22715
|
+
#
|
|
22716
|
+
# @!attribute [rw] compute_resource_requirements
|
|
22717
|
+
# The compute resources allocated to run the model assigned to the
|
|
22718
|
+
# inference component.
|
|
22719
|
+
# @return [Types::InferenceComponentComputeResourceRequirements]
|
|
22720
|
+
#
|
|
22721
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentSpecification AWS API Documentation
|
|
22722
|
+
#
|
|
22723
|
+
class InferenceComponentSpecification < Struct.new(
|
|
22724
|
+
:model_name,
|
|
22725
|
+
:container,
|
|
22726
|
+
:startup_parameters,
|
|
22727
|
+
:compute_resource_requirements)
|
|
22728
|
+
SENSITIVE = []
|
|
22729
|
+
include Aws::Structure
|
|
22730
|
+
end
|
|
22731
|
+
|
|
22732
|
+
# Details about the resources that are deployed with this inference
|
|
22733
|
+
# component.
|
|
22734
|
+
#
|
|
22735
|
+
# @!attribute [rw] model_name
|
|
22736
|
+
# The name of the SageMaker model object that is deployed with the
|
|
22737
|
+
# inference component.
|
|
22738
|
+
# @return [String]
|
|
22739
|
+
#
|
|
22740
|
+
# @!attribute [rw] container
|
|
22741
|
+
# Details about the container that provides the runtime environment
|
|
22742
|
+
# for the model that is deployed with the inference component.
|
|
22743
|
+
# @return [Types::InferenceComponentContainerSpecificationSummary]
|
|
22744
|
+
#
|
|
22745
|
+
# @!attribute [rw] startup_parameters
|
|
22746
|
+
# Settings that take effect while the model container starts up.
|
|
22747
|
+
# @return [Types::InferenceComponentStartupParameters]
|
|
22748
|
+
#
|
|
22749
|
+
# @!attribute [rw] compute_resource_requirements
|
|
22750
|
+
# The compute resources allocated to run the model assigned to the
|
|
22751
|
+
# inference component.
|
|
22752
|
+
# @return [Types::InferenceComponentComputeResourceRequirements]
|
|
22753
|
+
#
|
|
22754
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentSpecificationSummary AWS API Documentation
|
|
22755
|
+
#
|
|
22756
|
+
class InferenceComponentSpecificationSummary < Struct.new(
|
|
22757
|
+
:model_name,
|
|
22758
|
+
:container,
|
|
22759
|
+
:startup_parameters,
|
|
22760
|
+
:compute_resource_requirements)
|
|
22761
|
+
SENSITIVE = []
|
|
22762
|
+
include Aws::Structure
|
|
22763
|
+
end
|
|
22764
|
+
|
|
22765
|
+
# Settings that take effect while the model container starts up.
|
|
22766
|
+
#
|
|
22767
|
+
# @!attribute [rw] model_data_download_timeout_in_seconds
|
|
22768
|
+
# The timeout value, in seconds, to download and extract the model
|
|
22769
|
+
# that you want to host from Amazon S3 to the individual inference
|
|
22770
|
+
# instance associated with this inference component.
|
|
22771
|
+
# @return [Integer]
|
|
22772
|
+
#
|
|
22773
|
+
# @!attribute [rw] container_startup_health_check_timeout_in_seconds
|
|
22774
|
+
# The timeout value, in seconds, for your inference container to pass
|
|
22775
|
+
# health check by Amazon S3 Hosting. For more information about health
|
|
22776
|
+
# check, see [How Your Container Should Respond to Health Check (Ping)
|
|
22777
|
+
# Requests][1].
|
|
22778
|
+
#
|
|
22779
|
+
#
|
|
22780
|
+
#
|
|
22781
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-inference-code.html#your-algorithms-inference-algo-ping-requests
|
|
22782
|
+
# @return [Integer]
|
|
22783
|
+
#
|
|
22784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentStartupParameters AWS API Documentation
|
|
22785
|
+
#
|
|
22786
|
+
class InferenceComponentStartupParameters < Struct.new(
|
|
22787
|
+
:model_data_download_timeout_in_seconds,
|
|
22788
|
+
:container_startup_health_check_timeout_in_seconds)
|
|
22789
|
+
SENSITIVE = []
|
|
22790
|
+
include Aws::Structure
|
|
22791
|
+
end
|
|
22792
|
+
|
|
22793
|
+
# A summary of the properties of an inference component.
|
|
22794
|
+
#
|
|
22795
|
+
# @!attribute [rw] creation_time
|
|
22796
|
+
# The time when the inference component was created.
|
|
22797
|
+
# @return [Time]
|
|
22798
|
+
#
|
|
22799
|
+
# @!attribute [rw] inference_component_arn
|
|
22800
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
|
22801
|
+
# @return [String]
|
|
22802
|
+
#
|
|
22803
|
+
# @!attribute [rw] inference_component_name
|
|
22804
|
+
# The name of the inference component.
|
|
22805
|
+
# @return [String]
|
|
22806
|
+
#
|
|
22807
|
+
# @!attribute [rw] endpoint_arn
|
|
22808
|
+
# The Amazon Resource Name (ARN) of the endpoint that hosts the
|
|
22809
|
+
# inference component.
|
|
22810
|
+
# @return [String]
|
|
22811
|
+
#
|
|
22812
|
+
# @!attribute [rw] endpoint_name
|
|
22813
|
+
# The name of the endpoint that hosts the inference component.
|
|
22814
|
+
# @return [String]
|
|
22815
|
+
#
|
|
22816
|
+
# @!attribute [rw] variant_name
|
|
22817
|
+
# The name of the production variant that hosts the inference
|
|
22818
|
+
# component.
|
|
22819
|
+
# @return [String]
|
|
22820
|
+
#
|
|
22821
|
+
# @!attribute [rw] inference_component_status
|
|
22822
|
+
# The status of the inference component.
|
|
22823
|
+
# @return [String]
|
|
22824
|
+
#
|
|
22825
|
+
# @!attribute [rw] last_modified_time
|
|
22826
|
+
# The time when the inference component was last updated.
|
|
22827
|
+
# @return [Time]
|
|
22828
|
+
#
|
|
22829
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentSummary AWS API Documentation
|
|
22830
|
+
#
|
|
22831
|
+
class InferenceComponentSummary < Struct.new(
|
|
22832
|
+
:creation_time,
|
|
22833
|
+
:inference_component_arn,
|
|
22834
|
+
:inference_component_name,
|
|
22835
|
+
:endpoint_arn,
|
|
22836
|
+
:endpoint_name,
|
|
22837
|
+
:variant_name,
|
|
22838
|
+
:inference_component_status,
|
|
22839
|
+
:last_modified_time)
|
|
22840
|
+
SENSITIVE = []
|
|
22841
|
+
include Aws::Structure
|
|
22842
|
+
end
|
|
22843
|
+
|
|
21590
22844
|
# Specifies details about how containers in a multi-container endpoint
|
|
21591
22845
|
# are run.
|
|
21592
22846
|
#
|
|
@@ -21943,6 +23197,22 @@ module Aws::SageMaker
|
|
|
21943
23197
|
include Aws::Structure
|
|
21944
23198
|
end
|
|
21945
23199
|
|
|
23200
|
+
# Configuration information for the infrastructure health check of a
|
|
23201
|
+
# training job. A SageMaker-provided health check tests the health of
|
|
23202
|
+
# instance hardware and cluster network connectivity.
|
|
23203
|
+
#
|
|
23204
|
+
# @!attribute [rw] enable_infra_check
|
|
23205
|
+
# Enables an infrastructure health check.
|
|
23206
|
+
# @return [Boolean]
|
|
23207
|
+
#
|
|
23208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InfraCheckConfig AWS API Documentation
|
|
23209
|
+
#
|
|
23210
|
+
class InfraCheckConfig < Struct.new(
|
|
23211
|
+
:enable_infra_check)
|
|
23212
|
+
SENSITIVE = []
|
|
23213
|
+
include Aws::Structure
|
|
23214
|
+
end
|
|
23215
|
+
|
|
21946
23216
|
# Contains information about the location of input model artifacts, the
|
|
21947
23217
|
# name and shape of the expected data inputs, and the framework in which
|
|
21948
23218
|
# the model was trained.
|
|
@@ -22297,6 +23567,55 @@ module Aws::SageMaker
|
|
|
22297
23567
|
include Aws::Structure
|
|
22298
23568
|
end
|
|
22299
23569
|
|
|
23570
|
+
# The configuration for the file system and kernels in a SageMaker image
|
|
23571
|
+
# running as a JupyterLab app.
|
|
23572
|
+
#
|
|
23573
|
+
# @!attribute [rw] container_config
|
|
23574
|
+
# The configuration used to run the application image container.
|
|
23575
|
+
# @return [Types::ContainerConfig]
|
|
23576
|
+
#
|
|
23577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterLabAppImageConfig AWS API Documentation
|
|
23578
|
+
#
|
|
23579
|
+
class JupyterLabAppImageConfig < Struct.new(
|
|
23580
|
+
:container_config)
|
|
23581
|
+
SENSITIVE = []
|
|
23582
|
+
include Aws::Structure
|
|
23583
|
+
end
|
|
23584
|
+
|
|
23585
|
+
# The settings for the JupyterLab application.
|
|
23586
|
+
#
|
|
23587
|
+
# @!attribute [rw] default_resource_spec
|
|
23588
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
|
23589
|
+
# version, and the instance type that the version runs on.
|
|
23590
|
+
# @return [Types::ResourceSpec]
|
|
23591
|
+
#
|
|
23592
|
+
# @!attribute [rw] custom_images
|
|
23593
|
+
# A list of custom SageMaker images that are configured to run as a
|
|
23594
|
+
# JupyterLab app.
|
|
23595
|
+
# @return [Array<Types::CustomImage>]
|
|
23596
|
+
#
|
|
23597
|
+
# @!attribute [rw] lifecycle_config_arns
|
|
23598
|
+
# The Amazon Resource Name (ARN) of the lifecycle configurations
|
|
23599
|
+
# attached to the user profile or domain. To remove a lifecycle
|
|
23600
|
+
# config, you must set `LifecycleConfigArns` to an empty list.
|
|
23601
|
+
# @return [Array<String>]
|
|
23602
|
+
#
|
|
23603
|
+
# @!attribute [rw] code_repositories
|
|
23604
|
+
# A list of Git repositories that SageMaker automatically displays to
|
|
23605
|
+
# users for cloning in the JupyterLab application.
|
|
23606
|
+
# @return [Array<Types::CodeRepository>]
|
|
23607
|
+
#
|
|
23608
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterLabAppSettings AWS API Documentation
|
|
23609
|
+
#
|
|
23610
|
+
class JupyterLabAppSettings < Struct.new(
|
|
23611
|
+
:default_resource_spec,
|
|
23612
|
+
:custom_images,
|
|
23613
|
+
:lifecycle_config_arns,
|
|
23614
|
+
:code_repositories)
|
|
23615
|
+
SENSITIVE = []
|
|
23616
|
+
include Aws::Structure
|
|
23617
|
+
end
|
|
23618
|
+
|
|
22300
23619
|
# The JupyterServer app settings.
|
|
22301
23620
|
#
|
|
22302
23621
|
# @!attribute [rw] default_resource_spec
|
|
@@ -22761,16 +24080,15 @@ module Aws::SageMaker
|
|
|
22761
24080
|
# @return [String]
|
|
22762
24081
|
#
|
|
22763
24082
|
# @!attribute [rw] vpc_config
|
|
22764
|
-
# Specifies
|
|
22765
|
-
#
|
|
22766
|
-
#
|
|
22767
|
-
#
|
|
22768
|
-
#
|
|
24083
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
|
24084
|
+
# jobs, hosted models, and compute resources have access to. You can
|
|
24085
|
+
# control access to and from your resources by configuring a VPC. For
|
|
24086
|
+
# more information, see [Give SageMaker Access to Resources in your
|
|
24087
|
+
# Amazon VPC][1].
|
|
22769
24088
|
#
|
|
22770
24089
|
#
|
|
22771
24090
|
#
|
|
22772
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
|
22773
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
|
24091
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
|
22774
24092
|
# @return [Types::VpcConfig]
|
|
22775
24093
|
#
|
|
22776
24094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/LabelingJobResourceConfig AWS API Documentation
|
|
@@ -23650,6 +24968,203 @@ module Aws::SageMaker
|
|
|
23650
24968
|
include Aws::Structure
|
|
23651
24969
|
end
|
|
23652
24970
|
|
|
24971
|
+
# @!attribute [rw] cluster_name
|
|
24972
|
+
# The string name or the Amazon Resource Name (ARN) of the SageMaker
|
|
24973
|
+
# HyperPod cluster in which you want to retrieve the list of nodes.
|
|
24974
|
+
# @return [String]
|
|
24975
|
+
#
|
|
24976
|
+
# @!attribute [rw] creation_time_after
|
|
24977
|
+
# A filter that returns nodes in a SageMaker HyperPod cluster created
|
|
24978
|
+
# after the specified time. Timestamps are formatted according to the
|
|
24979
|
+
# ISO 8601 standard.
|
|
24980
|
+
#
|
|
24981
|
+
# Acceptable formats include:
|
|
24982
|
+
#
|
|
24983
|
+
# * `YYYY-MM-DDThh:mm:ss.sssTZD` (UTC), for example,
|
|
24984
|
+
# `2014-10-01T20:30:00.000Z`
|
|
24985
|
+
#
|
|
24986
|
+
# * `YYYY-MM-DDThh:mm:ss.sssTZD` (with offset), for example,
|
|
24987
|
+
# `2014-10-01T12:30:00.000-08:00`
|
|
24988
|
+
#
|
|
24989
|
+
# * `YYYY-MM-DD`, for example, `2014-10-01`
|
|
24990
|
+
#
|
|
24991
|
+
# * Unix time in seconds, for example, `1412195400`. This is also
|
|
24992
|
+
# referred to as Unix Epoch time and represents the number of
|
|
24993
|
+
# seconds since midnight, January 1, 1970 UTC.
|
|
24994
|
+
#
|
|
24995
|
+
# For more information about the timestamp format, see [Timestamp][1]
|
|
24996
|
+
# in the *Amazon Web Services Command Line Interface User Guide*.
|
|
24997
|
+
#
|
|
24998
|
+
#
|
|
24999
|
+
#
|
|
25000
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
|
25001
|
+
# @return [Time]
|
|
25002
|
+
#
|
|
25003
|
+
# @!attribute [rw] creation_time_before
|
|
25004
|
+
# A filter that returns nodes in a SageMaker HyperPod cluster created
|
|
25005
|
+
# before the specified time. The acceptable formats are the same as
|
|
25006
|
+
# the timestamp formats for `CreationTimeAfter`. For more information
|
|
25007
|
+
# about the timestamp format, see [Timestamp][1] in the *Amazon Web
|
|
25008
|
+
# Services Command Line Interface User Guide*.
|
|
25009
|
+
#
|
|
25010
|
+
#
|
|
25011
|
+
#
|
|
25012
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
|
25013
|
+
# @return [Time]
|
|
25014
|
+
#
|
|
25015
|
+
# @!attribute [rw] instance_group_name_contains
|
|
25016
|
+
# A filter that returns the instance groups whose name contain a
|
|
25017
|
+
# specified string.
|
|
25018
|
+
# @return [String]
|
|
25019
|
+
#
|
|
25020
|
+
# @!attribute [rw] max_results
|
|
25021
|
+
# The maximum number of nodes to return in the response.
|
|
25022
|
+
# @return [Integer]
|
|
25023
|
+
#
|
|
25024
|
+
# @!attribute [rw] next_token
|
|
25025
|
+
# If the result of the previous `ListClusterNodes` request was
|
|
25026
|
+
# truncated, the response includes a `NextToken`. To retrieve the next
|
|
25027
|
+
# set of cluster nodes, use the token in the next request.
|
|
25028
|
+
# @return [String]
|
|
25029
|
+
#
|
|
25030
|
+
# @!attribute [rw] sort_by
|
|
25031
|
+
# The field by which to sort results. The default value is
|
|
25032
|
+
# `CREATION_TIME`.
|
|
25033
|
+
# @return [String]
|
|
25034
|
+
#
|
|
25035
|
+
# @!attribute [rw] sort_order
|
|
25036
|
+
# The sort order for results. The default value is `Ascending`.
|
|
25037
|
+
# @return [String]
|
|
25038
|
+
#
|
|
25039
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusterNodesRequest AWS API Documentation
|
|
25040
|
+
#
|
|
25041
|
+
class ListClusterNodesRequest < Struct.new(
|
|
25042
|
+
:cluster_name,
|
|
25043
|
+
:creation_time_after,
|
|
25044
|
+
:creation_time_before,
|
|
25045
|
+
:instance_group_name_contains,
|
|
25046
|
+
:max_results,
|
|
25047
|
+
:next_token,
|
|
25048
|
+
:sort_by,
|
|
25049
|
+
:sort_order)
|
|
25050
|
+
SENSITIVE = []
|
|
25051
|
+
include Aws::Structure
|
|
25052
|
+
end
|
|
25053
|
+
|
|
25054
|
+
# @!attribute [rw] next_token
|
|
25055
|
+
# The next token specified for listing instances in a SageMaker
|
|
25056
|
+
# HyperPod cluster.
|
|
25057
|
+
# @return [String]
|
|
25058
|
+
#
|
|
25059
|
+
# @!attribute [rw] cluster_node_summaries
|
|
25060
|
+
# The summaries of listed instances in a SageMaker HyperPod cluster
|
|
25061
|
+
# @return [Array<Types::ClusterNodeSummary>]
|
|
25062
|
+
#
|
|
25063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusterNodesResponse AWS API Documentation
|
|
25064
|
+
#
|
|
25065
|
+
class ListClusterNodesResponse < Struct.new(
|
|
25066
|
+
:next_token,
|
|
25067
|
+
:cluster_node_summaries)
|
|
25068
|
+
SENSITIVE = []
|
|
25069
|
+
include Aws::Structure
|
|
25070
|
+
end
|
|
25071
|
+
|
|
25072
|
+
# @!attribute [rw] creation_time_after
|
|
25073
|
+
# Set a start time for the time range during which you want to list
|
|
25074
|
+
# SageMaker HyperPod clusters. Timestamps are formatted according to
|
|
25075
|
+
# the ISO 8601 standard.
|
|
25076
|
+
#
|
|
25077
|
+
# Acceptable formats include:
|
|
25078
|
+
#
|
|
25079
|
+
# * `YYYY-MM-DDThh:mm:ss.sssTZD` (UTC), for example,
|
|
25080
|
+
# `2014-10-01T20:30:00.000Z`
|
|
25081
|
+
#
|
|
25082
|
+
# * `YYYY-MM-DDThh:mm:ss.sssTZD` (with offset), for example,
|
|
25083
|
+
# `2014-10-01T12:30:00.000-08:00`
|
|
25084
|
+
#
|
|
25085
|
+
# * `YYYY-MM-DD`, for example, `2014-10-01`
|
|
25086
|
+
#
|
|
25087
|
+
# * Unix time in seconds, for example, `1412195400`. This is also
|
|
25088
|
+
# referred to as Unix Epoch time and represents the number of
|
|
25089
|
+
# seconds since midnight, January 1, 1970 UTC.
|
|
25090
|
+
#
|
|
25091
|
+
# For more information about the timestamp format, see [Timestamp][1]
|
|
25092
|
+
# in the *Amazon Web Services Command Line Interface User Guide*.
|
|
25093
|
+
#
|
|
25094
|
+
#
|
|
25095
|
+
#
|
|
25096
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
|
25097
|
+
# @return [Time]
|
|
25098
|
+
#
|
|
25099
|
+
# @!attribute [rw] creation_time_before
|
|
25100
|
+
# Set an end time for the time range during which you want to list
|
|
25101
|
+
# SageMaker HyperPod clusters. A filter that returns nodes in a
|
|
25102
|
+
# SageMaker HyperPod cluster created before the specified time. The
|
|
25103
|
+
# acceptable formats are the same as the timestamp formats for
|
|
25104
|
+
# `CreationTimeAfter`. For more information about the timestamp
|
|
25105
|
+
# format, see [Timestamp][1] in the *Amazon Web Services Command Line
|
|
25106
|
+
# Interface User Guide*.
|
|
25107
|
+
#
|
|
25108
|
+
#
|
|
25109
|
+
#
|
|
25110
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
|
25111
|
+
# @return [Time]
|
|
25112
|
+
#
|
|
25113
|
+
# @!attribute [rw] max_results
|
|
25114
|
+
# Set the maximum number of SageMaker HyperPod clusters to list.
|
|
25115
|
+
# @return [Integer]
|
|
25116
|
+
#
|
|
25117
|
+
# @!attribute [rw] name_contains
|
|
25118
|
+
# Set the maximum number of instances to print in the list.
|
|
25119
|
+
# @return [String]
|
|
25120
|
+
#
|
|
25121
|
+
# @!attribute [rw] next_token
|
|
25122
|
+
# Set the next token to retrieve the list of SageMaker HyperPod
|
|
25123
|
+
# clusters.
|
|
25124
|
+
# @return [String]
|
|
25125
|
+
#
|
|
25126
|
+
# @!attribute [rw] sort_by
|
|
25127
|
+
# The field by which to sort results. The default value is
|
|
25128
|
+
# `CREATION_TIME`.
|
|
25129
|
+
# @return [String]
|
|
25130
|
+
#
|
|
25131
|
+
# @!attribute [rw] sort_order
|
|
25132
|
+
# The sort order for results. The default value is `Ascending`.
|
|
25133
|
+
# @return [String]
|
|
25134
|
+
#
|
|
25135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClustersRequest AWS API Documentation
|
|
25136
|
+
#
|
|
25137
|
+
class ListClustersRequest < Struct.new(
|
|
25138
|
+
:creation_time_after,
|
|
25139
|
+
:creation_time_before,
|
|
25140
|
+
:max_results,
|
|
25141
|
+
:name_contains,
|
|
25142
|
+
:next_token,
|
|
25143
|
+
:sort_by,
|
|
25144
|
+
:sort_order)
|
|
25145
|
+
SENSITIVE = []
|
|
25146
|
+
include Aws::Structure
|
|
25147
|
+
end
|
|
25148
|
+
|
|
25149
|
+
# @!attribute [rw] next_token
|
|
25150
|
+
# If the result of the previous `ListClusters` request was truncated,
|
|
25151
|
+
# the response includes a `NextToken`. To retrieve the next set of
|
|
25152
|
+
# clusters, use the token in the next request.
|
|
25153
|
+
# @return [String]
|
|
25154
|
+
#
|
|
25155
|
+
# @!attribute [rw] cluster_summaries
|
|
25156
|
+
# The summaries of listed SageMaker HyperPod clusters.
|
|
25157
|
+
# @return [Array<Types::ClusterSummary>]
|
|
25158
|
+
#
|
|
25159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClustersResponse AWS API Documentation
|
|
25160
|
+
#
|
|
25161
|
+
class ListClustersResponse < Struct.new(
|
|
25162
|
+
:next_token,
|
|
25163
|
+
:cluster_summaries)
|
|
25164
|
+
SENSITIVE = []
|
|
25165
|
+
include Aws::Structure
|
|
25166
|
+
end
|
|
25167
|
+
|
|
23653
25168
|
# @!attribute [rw] creation_time_after
|
|
23654
25169
|
# A filter that returns only Git repositories that were created after
|
|
23655
25170
|
# the specified time.
|
|
@@ -25174,6 +26689,106 @@ module Aws::SageMaker
|
|
|
25174
26689
|
include Aws::Structure
|
|
25175
26690
|
end
|
|
25176
26691
|
|
|
26692
|
+
# @!attribute [rw] sort_by
|
|
26693
|
+
# The field by which to sort the inference components in the response.
|
|
26694
|
+
# The default is `CreationTime`.
|
|
26695
|
+
# @return [String]
|
|
26696
|
+
#
|
|
26697
|
+
# @!attribute [rw] sort_order
|
|
26698
|
+
# The sort order for results. The default is `Descending`.
|
|
26699
|
+
# @return [String]
|
|
26700
|
+
#
|
|
26701
|
+
# @!attribute [rw] next_token
|
|
26702
|
+
# A token that you use to get the next set of results following a
|
|
26703
|
+
# truncated response. If the response to the previous request was
|
|
26704
|
+
# truncated, that response provides the value for this token.
|
|
26705
|
+
# @return [String]
|
|
26706
|
+
#
|
|
26707
|
+
# @!attribute [rw] max_results
|
|
26708
|
+
# The maximum number of inference components to return in the
|
|
26709
|
+
# response. This value defaults to 10.
|
|
26710
|
+
# @return [Integer]
|
|
26711
|
+
#
|
|
26712
|
+
# @!attribute [rw] name_contains
|
|
26713
|
+
# Filters the results to only those inference components with a name
|
|
26714
|
+
# that contains the specified string.
|
|
26715
|
+
# @return [String]
|
|
26716
|
+
#
|
|
26717
|
+
# @!attribute [rw] creation_time_before
|
|
26718
|
+
# Filters the results to only those inference components that were
|
|
26719
|
+
# created before the specified time.
|
|
26720
|
+
# @return [Time]
|
|
26721
|
+
#
|
|
26722
|
+
# @!attribute [rw] creation_time_after
|
|
26723
|
+
# Filters the results to only those inference components that were
|
|
26724
|
+
# created after the specified time.
|
|
26725
|
+
# @return [Time]
|
|
26726
|
+
#
|
|
26727
|
+
# @!attribute [rw] last_modified_time_before
|
|
26728
|
+
# Filters the results to only those inference components that were
|
|
26729
|
+
# updated before the specified time.
|
|
26730
|
+
# @return [Time]
|
|
26731
|
+
#
|
|
26732
|
+
# @!attribute [rw] last_modified_time_after
|
|
26733
|
+
# Filters the results to only those inference components that were
|
|
26734
|
+
# updated after the specified time.
|
|
26735
|
+
# @return [Time]
|
|
26736
|
+
#
|
|
26737
|
+
# @!attribute [rw] status_equals
|
|
26738
|
+
# Filters the results to only those inference components with the
|
|
26739
|
+
# specified status.
|
|
26740
|
+
# @return [String]
|
|
26741
|
+
#
|
|
26742
|
+
# @!attribute [rw] endpoint_name_equals
|
|
26743
|
+
# An endpoint name to filter the listed inference components. The
|
|
26744
|
+
# response includes only those inference components that are hosted at
|
|
26745
|
+
# the specified endpoint.
|
|
26746
|
+
# @return [String]
|
|
26747
|
+
#
|
|
26748
|
+
# @!attribute [rw] variant_name_equals
|
|
26749
|
+
# A production variant name to filter the listed inference components.
|
|
26750
|
+
# The response includes only those inference components that are
|
|
26751
|
+
# hosted at the specified variant.
|
|
26752
|
+
# @return [String]
|
|
26753
|
+
#
|
|
26754
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceComponentsInput AWS API Documentation
|
|
26755
|
+
#
|
|
26756
|
+
class ListInferenceComponentsInput < Struct.new(
|
|
26757
|
+
:sort_by,
|
|
26758
|
+
:sort_order,
|
|
26759
|
+
:next_token,
|
|
26760
|
+
:max_results,
|
|
26761
|
+
:name_contains,
|
|
26762
|
+
:creation_time_before,
|
|
26763
|
+
:creation_time_after,
|
|
26764
|
+
:last_modified_time_before,
|
|
26765
|
+
:last_modified_time_after,
|
|
26766
|
+
:status_equals,
|
|
26767
|
+
:endpoint_name_equals,
|
|
26768
|
+
:variant_name_equals)
|
|
26769
|
+
SENSITIVE = []
|
|
26770
|
+
include Aws::Structure
|
|
26771
|
+
end
|
|
26772
|
+
|
|
26773
|
+
# @!attribute [rw] inference_components
|
|
26774
|
+
# A list of inference components and their properties that matches any
|
|
26775
|
+
# of the filters you specified in the request.
|
|
26776
|
+
# @return [Array<Types::InferenceComponentSummary>]
|
|
26777
|
+
#
|
|
26778
|
+
# @!attribute [rw] next_token
|
|
26779
|
+
# The token to use in a subsequent request to get the next set of
|
|
26780
|
+
# results following a truncated response.
|
|
26781
|
+
# @return [String]
|
|
26782
|
+
#
|
|
26783
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceComponentsOutput AWS API Documentation
|
|
26784
|
+
#
|
|
26785
|
+
class ListInferenceComponentsOutput < Struct.new(
|
|
26786
|
+
:inference_components,
|
|
26787
|
+
:next_token)
|
|
26788
|
+
SENSITIVE = []
|
|
26789
|
+
include Aws::Structure
|
|
26790
|
+
end
|
|
26791
|
+
|
|
25177
26792
|
# @!attribute [rw] name_contains
|
|
25178
26793
|
# Selects inference experiments whose names contain this name.
|
|
25179
26794
|
# @return [String]
|
|
@@ -28412,16 +30027,15 @@ module Aws::SageMaker
|
|
|
28412
30027
|
# @return [String]
|
|
28413
30028
|
#
|
|
28414
30029
|
# @!attribute [rw] vpc_config
|
|
28415
|
-
# Specifies
|
|
28416
|
-
#
|
|
28417
|
-
#
|
|
28418
|
-
#
|
|
28419
|
-
#
|
|
30030
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
|
30031
|
+
# jobs, hosted models, and compute resources have access to. You can
|
|
30032
|
+
# control access to and from your resources by configuring a VPC. For
|
|
30033
|
+
# more information, see [Give SageMaker Access to Resources in your
|
|
30034
|
+
# Amazon VPC][1].
|
|
28420
30035
|
#
|
|
28421
30036
|
#
|
|
28422
30037
|
#
|
|
28423
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
|
28424
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
|
30038
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
|
28425
30039
|
# @return [Types::VpcConfig]
|
|
28426
30040
|
#
|
|
28427
30041
|
# @!attribute [rw] creation_time
|
|
@@ -30738,16 +32352,15 @@ module Aws::SageMaker
|
|
|
30738
32352
|
# @return [Boolean]
|
|
30739
32353
|
#
|
|
30740
32354
|
# @!attribute [rw] vpc_config
|
|
30741
|
-
# Specifies
|
|
30742
|
-
#
|
|
30743
|
-
#
|
|
30744
|
-
#
|
|
30745
|
-
#
|
|
32355
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
|
32356
|
+
# jobs, hosted models, and compute resources have access to. You can
|
|
32357
|
+
# control access to and from your resources by configuring a VPC. For
|
|
32358
|
+
# more information, see [Give SageMaker Access to Resources in your
|
|
32359
|
+
# Amazon VPC][1].
|
|
30746
32360
|
#
|
|
30747
32361
|
#
|
|
30748
32362
|
#
|
|
30749
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
|
30750
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
|
32363
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
|
30751
32364
|
# @return [Types::VpcConfig]
|
|
30752
32365
|
#
|
|
30753
32366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringNetworkConfig AWS API Documentation
|
|
@@ -31159,16 +32772,15 @@ module Aws::SageMaker
|
|
|
31159
32772
|
# @return [Boolean]
|
|
31160
32773
|
#
|
|
31161
32774
|
# @!attribute [rw] vpc_config
|
|
31162
|
-
# Specifies
|
|
31163
|
-
#
|
|
31164
|
-
#
|
|
31165
|
-
#
|
|
31166
|
-
#
|
|
32775
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
|
32776
|
+
# jobs, hosted models, and compute resources have access to. You can
|
|
32777
|
+
# control access to and from your resources by configuring a VPC. For
|
|
32778
|
+
# more information, see [Give SageMaker Access to Resources in your
|
|
32779
|
+
# Amazon VPC][1].
|
|
31167
32780
|
#
|
|
31168
32781
|
#
|
|
31169
32782
|
#
|
|
31170
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
|
31171
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
|
32783
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
|
31172
32784
|
# @return [Types::VpcConfig]
|
|
31173
32785
|
#
|
|
31174
32786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/NetworkConfig AWS API Documentation
|
|
@@ -32008,6 +33620,34 @@ module Aws::SageMaker
|
|
|
32008
33620
|
include Aws::Structure
|
|
32009
33621
|
end
|
|
32010
33622
|
|
|
33623
|
+
# The collection of ownership settings for a space.
|
|
33624
|
+
#
|
|
33625
|
+
# @!attribute [rw] owner_user_profile_name
|
|
33626
|
+
# The user profile who is the owner of the private space.
|
|
33627
|
+
# @return [String]
|
|
33628
|
+
#
|
|
33629
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OwnershipSettings AWS API Documentation
|
|
33630
|
+
#
|
|
33631
|
+
class OwnershipSettings < Struct.new(
|
|
33632
|
+
:owner_user_profile_name)
|
|
33633
|
+
SENSITIVE = []
|
|
33634
|
+
include Aws::Structure
|
|
33635
|
+
end
|
|
33636
|
+
|
|
33637
|
+
# Specifies summary information about the ownership settings.
|
|
33638
|
+
#
|
|
33639
|
+
# @!attribute [rw] owner_user_profile_name
|
|
33640
|
+
# The user profile who is the owner of the private space.
|
|
33641
|
+
# @return [String]
|
|
33642
|
+
#
|
|
33643
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OwnershipSettingsSummary AWS API Documentation
|
|
33644
|
+
#
|
|
33645
|
+
class OwnershipSettingsSummary < Struct.new(
|
|
33646
|
+
:owner_user_profile_name)
|
|
33647
|
+
SENSITIVE = []
|
|
33648
|
+
include Aws::Structure
|
|
33649
|
+
end
|
|
33650
|
+
|
|
32011
33651
|
# Configuration that controls the parallelism of the pipeline. By
|
|
32012
33652
|
# default, the parallelism configuration specified applies to all
|
|
32013
33653
|
# executions of the pipeline unless overridden.
|
|
@@ -32291,6 +33931,16 @@ module Aws::SageMaker
|
|
|
32291
33931
|
# specified in the endpoint configuration for the endpoint.
|
|
32292
33932
|
# @return [Types::ProductionVariantServerlessConfig]
|
|
32293
33933
|
#
|
|
33934
|
+
# @!attribute [rw] managed_instance_scaling
|
|
33935
|
+
# Settings that control the range in the number of instances that the
|
|
33936
|
+
# endpoint provisions as it scales up or down to accommodate traffic.
|
|
33937
|
+
# @return [Types::ProductionVariantManagedInstanceScaling]
|
|
33938
|
+
#
|
|
33939
|
+
# @!attribute [rw] routing_config
|
|
33940
|
+
# Settings that control how the endpoint routes incoming traffic to
|
|
33941
|
+
# the instances that the endpoint hosts.
|
|
33942
|
+
# @return [Types::ProductionVariantRoutingConfig]
|
|
33943
|
+
#
|
|
32294
33944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PendingProductionVariantSummary AWS API Documentation
|
|
32295
33945
|
#
|
|
32296
33946
|
class PendingProductionVariantSummary < Struct.new(
|
|
@@ -32304,7 +33954,9 @@ module Aws::SageMaker
|
|
|
32304
33954
|
:accelerator_type,
|
|
32305
33955
|
:variant_status,
|
|
32306
33956
|
:current_serverless_config,
|
|
32307
|
-
:desired_serverless_config
|
|
33957
|
+
:desired_serverless_config,
|
|
33958
|
+
:managed_instance_scaling,
|
|
33959
|
+
:routing_config)
|
|
32308
33960
|
SENSITIVE = []
|
|
32309
33961
|
include Aws::Structure
|
|
32310
33962
|
end
|
|
@@ -33464,6 +35116,16 @@ module Aws::SageMaker
|
|
|
33464
35116
|
# new endpoint configuration and calling `UpdateEndpoint`.
|
|
33465
35117
|
# @return [Boolean]
|
|
33466
35118
|
#
|
|
35119
|
+
# @!attribute [rw] managed_instance_scaling
|
|
35120
|
+
# Settings that control the range in the number of instances that the
|
|
35121
|
+
# endpoint provisions as it scales up or down to accommodate traffic.
|
|
35122
|
+
# @return [Types::ProductionVariantManagedInstanceScaling]
|
|
35123
|
+
#
|
|
35124
|
+
# @!attribute [rw] routing_config
|
|
35125
|
+
# Settings that control how the endpoint routes incoming traffic to
|
|
35126
|
+
# the instances that the endpoint hosts.
|
|
35127
|
+
# @return [Types::ProductionVariantRoutingConfig]
|
|
35128
|
+
#
|
|
33467
35129
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariant AWS API Documentation
|
|
33468
35130
|
#
|
|
33469
35131
|
class ProductionVariant < Struct.new(
|
|
@@ -33478,7 +35140,9 @@ module Aws::SageMaker
|
|
|
33478
35140
|
:volume_size_in_gb,
|
|
33479
35141
|
:model_data_download_timeout_in_seconds,
|
|
33480
35142
|
:container_startup_health_check_timeout_in_seconds,
|
|
33481
|
-
:enable_ssm_access
|
|
35143
|
+
:enable_ssm_access,
|
|
35144
|
+
:managed_instance_scaling,
|
|
35145
|
+
:routing_config)
|
|
33482
35146
|
SENSITIVE = []
|
|
33483
35147
|
include Aws::Structure
|
|
33484
35148
|
end
|
|
@@ -33544,6 +35208,54 @@ module Aws::SageMaker
|
|
|
33544
35208
|
include Aws::Structure
|
|
33545
35209
|
end
|
|
33546
35210
|
|
|
35211
|
+
# Settings that control the range in the number of instances that the
|
|
35212
|
+
# endpoint provisions as it scales up or down to accommodate traffic.
|
|
35213
|
+
#
|
|
35214
|
+
# @!attribute [rw] status
|
|
35215
|
+
# Indicates whether managed instance scaling is enabled.
|
|
35216
|
+
# @return [String]
|
|
35217
|
+
#
|
|
35218
|
+
# @!attribute [rw] min_instance_count
|
|
35219
|
+
# The minimum number of instances that the endpoint must retain when
|
|
35220
|
+
# it scales down to accommodate a decrease in traffic.
|
|
35221
|
+
# @return [Integer]
|
|
35222
|
+
#
|
|
35223
|
+
# @!attribute [rw] max_instance_count
|
|
35224
|
+
# The maximum number of instances that the endpoint can provision when
|
|
35225
|
+
# it scales up to accommodate an increase in traffic.
|
|
35226
|
+
# @return [Integer]
|
|
35227
|
+
#
|
|
35228
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantManagedInstanceScaling AWS API Documentation
|
|
35229
|
+
#
|
|
35230
|
+
class ProductionVariantManagedInstanceScaling < Struct.new(
|
|
35231
|
+
:status,
|
|
35232
|
+
:min_instance_count,
|
|
35233
|
+
:max_instance_count)
|
|
35234
|
+
SENSITIVE = []
|
|
35235
|
+
include Aws::Structure
|
|
35236
|
+
end
|
|
35237
|
+
|
|
35238
|
+
# Settings that control how the endpoint routes incoming traffic to the
|
|
35239
|
+
# instances that the endpoint hosts.
|
|
35240
|
+
#
|
|
35241
|
+
# @!attribute [rw] routing_strategy
|
|
35242
|
+
# Sets how the endpoint routes incoming traffic:
|
|
35243
|
+
#
|
|
35244
|
+
# * `LEAST_OUTSTANDING_REQUESTS`: The endpoint routes requests to the
|
|
35245
|
+
# specific instances that have more capacity to process them.
|
|
35246
|
+
#
|
|
35247
|
+
# * `RANDOM`: The endpoint routes each request to a randomly chosen
|
|
35248
|
+
# instance.
|
|
35249
|
+
# @return [String]
|
|
35250
|
+
#
|
|
35251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantRoutingConfig AWS API Documentation
|
|
35252
|
+
#
|
|
35253
|
+
class ProductionVariantRoutingConfig < Struct.new(
|
|
35254
|
+
:routing_strategy)
|
|
35255
|
+
SENSITIVE = []
|
|
35256
|
+
include Aws::Structure
|
|
35257
|
+
end
|
|
35258
|
+
|
|
33547
35259
|
# Specifies the serverless configuration for an endpoint variant.
|
|
33548
35260
|
#
|
|
33549
35261
|
# @!attribute [rw] memory_size_in_mb
|
|
@@ -33691,6 +35403,16 @@ module Aws::SageMaker
|
|
|
33691
35403
|
# The serverless configuration requested for the endpoint update.
|
|
33692
35404
|
# @return [Types::ProductionVariantServerlessConfig]
|
|
33693
35405
|
#
|
|
35406
|
+
# @!attribute [rw] managed_instance_scaling
|
|
35407
|
+
# Settings that control the range in the number of instances that the
|
|
35408
|
+
# endpoint provisions as it scales up or down to accommodate traffic.
|
|
35409
|
+
# @return [Types::ProductionVariantManagedInstanceScaling]
|
|
35410
|
+
#
|
|
35411
|
+
# @!attribute [rw] routing_config
|
|
35412
|
+
# Settings that control how the endpoint routes incoming traffic to
|
|
35413
|
+
# the instances that the endpoint hosts.
|
|
35414
|
+
# @return [Types::ProductionVariantRoutingConfig]
|
|
35415
|
+
#
|
|
33694
35416
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantSummary AWS API Documentation
|
|
33695
35417
|
#
|
|
33696
35418
|
class ProductionVariantSummary < Struct.new(
|
|
@@ -33702,7 +35424,9 @@ module Aws::SageMaker
|
|
|
33702
35424
|
:desired_instance_count,
|
|
33703
35425
|
:variant_status,
|
|
33704
35426
|
:current_serverless_config,
|
|
33705
|
-
:desired_serverless_config
|
|
35427
|
+
:desired_serverless_config,
|
|
35428
|
+
:managed_instance_scaling,
|
|
35429
|
+
:routing_config)
|
|
33706
35430
|
SENSITIVE = []
|
|
33707
35431
|
include Aws::Structure
|
|
33708
35432
|
end
|
|
@@ -35659,6 +37383,10 @@ module Aws::SageMaker
|
|
|
35659
37383
|
# The ARN of the image version created on the instance.
|
|
35660
37384
|
# @return [String]
|
|
35661
37385
|
#
|
|
37386
|
+
# @!attribute [rw] sage_maker_image_version_alias
|
|
37387
|
+
# The SageMakerImageVersionAlias.
|
|
37388
|
+
# @return [String]
|
|
37389
|
+
#
|
|
35662
37390
|
# @!attribute [rw] instance_type
|
|
35663
37391
|
# The instance type that the image version runs on.
|
|
35664
37392
|
#
|
|
@@ -35681,6 +37409,7 @@ module Aws::SageMaker
|
|
|
35681
37409
|
class ResourceSpec < Struct.new(
|
|
35682
37410
|
:sage_maker_image_arn,
|
|
35683
37411
|
:sage_maker_image_version_arn,
|
|
37412
|
+
:sage_maker_image_version_alias,
|
|
35684
37413
|
:instance_type,
|
|
35685
37414
|
:lifecycle_config_arn)
|
|
35686
37415
|
SENSITIVE = []
|
|
@@ -36879,7 +38608,7 @@ module Aws::SageMaker
|
|
|
36879
38608
|
include Aws::Structure
|
|
36880
38609
|
end
|
|
36881
38610
|
|
|
36882
|
-
# Specifies options for sharing SageMaker Studio notebooks. These
|
|
38611
|
+
# Specifies options for sharing Amazon SageMaker Studio notebooks. These
|
|
36883
38612
|
# settings are specified as part of `DefaultUserSettings` when the
|
|
36884
38613
|
# `CreateDomain` API is called, and as part of `UserSettings` when the
|
|
36885
38614
|
# `CreateUserProfile` API is called. When `SharingSettings` is not
|
|
@@ -37019,6 +38748,21 @@ module Aws::SageMaker
|
|
|
37019
38748
|
include Aws::Structure
|
|
37020
38749
|
end
|
|
37021
38750
|
|
|
38751
|
+
# The application settings for a Code Editor space.
|
|
38752
|
+
#
|
|
38753
|
+
# @!attribute [rw] default_resource_spec
|
|
38754
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
|
38755
|
+
# version, and the instance type that the version runs on.
|
|
38756
|
+
# @return [Types::ResourceSpec]
|
|
38757
|
+
#
|
|
38758
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceCodeEditorAppSettings AWS API Documentation
|
|
38759
|
+
#
|
|
38760
|
+
class SpaceCodeEditorAppSettings < Struct.new(
|
|
38761
|
+
:default_resource_spec)
|
|
38762
|
+
SENSITIVE = []
|
|
38763
|
+
include Aws::Structure
|
|
38764
|
+
end
|
|
38765
|
+
|
|
37022
38766
|
# The space's details.
|
|
37023
38767
|
#
|
|
37024
38768
|
# @!attribute [rw] domain_id
|
|
@@ -37041,6 +38785,22 @@ module Aws::SageMaker
|
|
|
37041
38785
|
# The last modified time.
|
|
37042
38786
|
# @return [Time]
|
|
37043
38787
|
#
|
|
38788
|
+
# @!attribute [rw] space_display_name
|
|
38789
|
+
# The name of the space that appears in the Studio UI.
|
|
38790
|
+
# @return [String]
|
|
38791
|
+
#
|
|
38792
|
+
# @!attribute [rw] space_settings_summary
|
|
38793
|
+
# Specifies summary information about the space settings.
|
|
38794
|
+
# @return [Types::SpaceSettingsSummary]
|
|
38795
|
+
#
|
|
38796
|
+
# @!attribute [rw] space_sharing_settings_summary
|
|
38797
|
+
# Specifies summary information about the space sharing settings.
|
|
38798
|
+
# @return [Types::SpaceSharingSettingsSummary]
|
|
38799
|
+
#
|
|
38800
|
+
# @!attribute [rw] ownership_settings_summary
|
|
38801
|
+
# Specifies summary information about the ownership settings.
|
|
38802
|
+
# @return [Types::OwnershipSettingsSummary]
|
|
38803
|
+
#
|
|
37044
38804
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceDetails AWS API Documentation
|
|
37045
38805
|
#
|
|
37046
38806
|
class SpaceDetails < Struct.new(
|
|
@@ -37048,7 +38808,32 @@ module Aws::SageMaker
|
|
|
37048
38808
|
:space_name,
|
|
37049
38809
|
:status,
|
|
37050
38810
|
:creation_time,
|
|
37051
|
-
:last_modified_time
|
|
38811
|
+
:last_modified_time,
|
|
38812
|
+
:space_display_name,
|
|
38813
|
+
:space_settings_summary,
|
|
38814
|
+
:space_sharing_settings_summary,
|
|
38815
|
+
:ownership_settings_summary)
|
|
38816
|
+
SENSITIVE = []
|
|
38817
|
+
include Aws::Structure
|
|
38818
|
+
end
|
|
38819
|
+
|
|
38820
|
+
# The settings for the JupyterLab application within a space.
|
|
38821
|
+
#
|
|
38822
|
+
# @!attribute [rw] default_resource_spec
|
|
38823
|
+
# Specifies the ARN's of a SageMaker image and SageMaker image
|
|
38824
|
+
# version, and the instance type that the version runs on.
|
|
38825
|
+
# @return [Types::ResourceSpec]
|
|
38826
|
+
#
|
|
38827
|
+
# @!attribute [rw] code_repositories
|
|
38828
|
+
# A list of Git repositories that SageMaker automatically displays to
|
|
38829
|
+
# users for cloning in the JupyterLab application.
|
|
38830
|
+
# @return [Array<Types::CodeRepository>]
|
|
38831
|
+
#
|
|
38832
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceJupyterLabAppSettings AWS API Documentation
|
|
38833
|
+
#
|
|
38834
|
+
class SpaceJupyterLabAppSettings < Struct.new(
|
|
38835
|
+
:default_resource_spec,
|
|
38836
|
+
:code_repositories)
|
|
37052
38837
|
SENSITIVE = []
|
|
37053
38838
|
include Aws::Structure
|
|
37054
38839
|
end
|
|
@@ -37063,11 +38848,99 @@ module Aws::SageMaker
|
|
|
37063
38848
|
# The KernelGateway app settings.
|
|
37064
38849
|
# @return [Types::KernelGatewayAppSettings]
|
|
37065
38850
|
#
|
|
38851
|
+
# @!attribute [rw] jupyter_lab_app_settings
|
|
38852
|
+
# The settings for the JupyterLab application.
|
|
38853
|
+
# @return [Types::SpaceJupyterLabAppSettings]
|
|
38854
|
+
#
|
|
38855
|
+
# @!attribute [rw] code_editor_app_settings
|
|
38856
|
+
# The Code Editor application settings.
|
|
38857
|
+
# @return [Types::SpaceCodeEditorAppSettings]
|
|
38858
|
+
#
|
|
38859
|
+
# @!attribute [rw] space_storage_settings
|
|
38860
|
+
# The storage settings for a private space.
|
|
38861
|
+
# @return [Types::SpaceStorageSettings]
|
|
38862
|
+
#
|
|
38863
|
+
# @!attribute [rw] app_type
|
|
38864
|
+
# The type of app created within the space.
|
|
38865
|
+
# @return [String]
|
|
38866
|
+
#
|
|
38867
|
+
# @!attribute [rw] custom_file_systems
|
|
38868
|
+
# A file system, created by you, that you assign to a space for an
|
|
38869
|
+
# Amazon SageMaker Domain. Permitted users can access this file system
|
|
38870
|
+
# in Amazon SageMaker Studio.
|
|
38871
|
+
# @return [Array<Types::CustomFileSystem>]
|
|
38872
|
+
#
|
|
37066
38873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSettings AWS API Documentation
|
|
37067
38874
|
#
|
|
37068
38875
|
class SpaceSettings < Struct.new(
|
|
37069
38876
|
:jupyter_server_app_settings,
|
|
37070
|
-
:kernel_gateway_app_settings
|
|
38877
|
+
:kernel_gateway_app_settings,
|
|
38878
|
+
:jupyter_lab_app_settings,
|
|
38879
|
+
:code_editor_app_settings,
|
|
38880
|
+
:space_storage_settings,
|
|
38881
|
+
:app_type,
|
|
38882
|
+
:custom_file_systems)
|
|
38883
|
+
SENSITIVE = []
|
|
38884
|
+
include Aws::Structure
|
|
38885
|
+
end
|
|
38886
|
+
|
|
38887
|
+
# Specifies summary information about the space settings.
|
|
38888
|
+
#
|
|
38889
|
+
# @!attribute [rw] app_type
|
|
38890
|
+
# The type of app created within the space.
|
|
38891
|
+
# @return [String]
|
|
38892
|
+
#
|
|
38893
|
+
# @!attribute [rw] space_storage_settings
|
|
38894
|
+
# The storage settings for a private space.
|
|
38895
|
+
# @return [Types::SpaceStorageSettings]
|
|
38896
|
+
#
|
|
38897
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSettingsSummary AWS API Documentation
|
|
38898
|
+
#
|
|
38899
|
+
class SpaceSettingsSummary < Struct.new(
|
|
38900
|
+
:app_type,
|
|
38901
|
+
:space_storage_settings)
|
|
38902
|
+
SENSITIVE = []
|
|
38903
|
+
include Aws::Structure
|
|
38904
|
+
end
|
|
38905
|
+
|
|
38906
|
+
# A collection of space sharing settings.
|
|
38907
|
+
#
|
|
38908
|
+
# @!attribute [rw] sharing_type
|
|
38909
|
+
# Specifies the sharing type of the space.
|
|
38910
|
+
# @return [String]
|
|
38911
|
+
#
|
|
38912
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSharingSettings AWS API Documentation
|
|
38913
|
+
#
|
|
38914
|
+
class SpaceSharingSettings < Struct.new(
|
|
38915
|
+
:sharing_type)
|
|
38916
|
+
SENSITIVE = []
|
|
38917
|
+
include Aws::Structure
|
|
38918
|
+
end
|
|
38919
|
+
|
|
38920
|
+
# Specifies summary information about the space sharing settings.
|
|
38921
|
+
#
|
|
38922
|
+
# @!attribute [rw] sharing_type
|
|
38923
|
+
# Specifies the sharing type of the space.
|
|
38924
|
+
# @return [String]
|
|
38925
|
+
#
|
|
38926
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSharingSettingsSummary AWS API Documentation
|
|
38927
|
+
#
|
|
38928
|
+
class SpaceSharingSettingsSummary < Struct.new(
|
|
38929
|
+
:sharing_type)
|
|
38930
|
+
SENSITIVE = []
|
|
38931
|
+
include Aws::Structure
|
|
38932
|
+
end
|
|
38933
|
+
|
|
38934
|
+
# The storage settings for a private space.
|
|
38935
|
+
#
|
|
38936
|
+
# @!attribute [rw] ebs_storage_settings
|
|
38937
|
+
# A collection of EBS storage settings for a private space.
|
|
38938
|
+
# @return [Types::EbsStorageSettings]
|
|
38939
|
+
#
|
|
38940
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceStorageSettings AWS API Documentation
|
|
38941
|
+
#
|
|
38942
|
+
class SpaceStorageSettings < Struct.new(
|
|
38943
|
+
:ebs_storage_settings)
|
|
37071
38944
|
SENSITIVE = []
|
|
37072
38945
|
include Aws::Structure
|
|
37073
38946
|
end
|
|
@@ -37538,23 +39411,24 @@ module Aws::SageMaker
|
|
|
37538
39411
|
include Aws::Structure
|
|
37539
39412
|
end
|
|
37540
39413
|
|
|
37541
|
-
# Details of the Studio Lifecycle Configuration.
|
|
39414
|
+
# Details of the Amazon SageMaker Studio Lifecycle Configuration.
|
|
37542
39415
|
#
|
|
37543
39416
|
# @!attribute [rw] studio_lifecycle_config_arn
|
|
37544
39417
|
# The Amazon Resource Name (ARN) of the Lifecycle Configuration.
|
|
37545
39418
|
# @return [String]
|
|
37546
39419
|
#
|
|
37547
39420
|
# @!attribute [rw] studio_lifecycle_config_name
|
|
37548
|
-
# The name of the Studio Lifecycle Configuration.
|
|
39421
|
+
# The name of the Amazon SageMaker Studio Lifecycle Configuration.
|
|
37549
39422
|
# @return [String]
|
|
37550
39423
|
#
|
|
37551
39424
|
# @!attribute [rw] creation_time
|
|
37552
|
-
# The creation time of the Studio Lifecycle
|
|
39425
|
+
# The creation time of the Amazon SageMaker Studio Lifecycle
|
|
39426
|
+
# Configuration.
|
|
37553
39427
|
# @return [Time]
|
|
37554
39428
|
#
|
|
37555
39429
|
# @!attribute [rw] last_modified_time
|
|
37556
|
-
# This value is equivalent to CreationTime because
|
|
37557
|
-
# Configurations are immutable.
|
|
39430
|
+
# This value is equivalent to CreationTime because Amazon SageMaker
|
|
39431
|
+
# Studio Lifecycle Configurations are immutable.
|
|
37558
39432
|
# @return [Time]
|
|
37559
39433
|
#
|
|
37560
39434
|
# @!attribute [rw] studio_lifecycle_config_app_type
|
|
@@ -37987,8 +39861,10 @@ module Aws::SageMaker
|
|
|
37987
39861
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/canvas.html
|
|
37988
39862
|
#
|
|
37989
39863
|
# @!attribute [rw] completion_criteria
|
|
37990
|
-
# How long a job is allowed to run
|
|
37991
|
-
#
|
|
39864
|
+
# How long a fine-tuning job is allowed to run. For
|
|
39865
|
+
# `TextGenerationJobConfig` problem types, the
|
|
39866
|
+
# `MaxRuntimePerTrainingJobInSeconds` attribute of
|
|
39867
|
+
# `AutoMLJobCompletionCriteria` defaults to 72h (259200s).
|
|
37992
39868
|
# @return [Types::AutoMLJobCompletionCriteria]
|
|
37993
39869
|
#
|
|
37994
39870
|
# @!attribute [rw] base_model_name
|
|
@@ -37996,18 +39872,53 @@ module Aws::SageMaker
|
|
|
37996
39872
|
# fine-tuning a variety of large language models. For information on
|
|
37997
39873
|
# the list of supported models, see [Text generation models supporting
|
|
37998
39874
|
# fine-tuning in Autopilot][1]. If no `BaseModelName` is provided, the
|
|
37999
|
-
# default model used is
|
|
39875
|
+
# default model used is **Falcon7BInstruct**.
|
|
38000
39876
|
#
|
|
38001
39877
|
#
|
|
38002
39878
|
#
|
|
38003
39879
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-models.html#autopilot-llms-finetuning-supported-llms
|
|
38004
39880
|
# @return [String]
|
|
38005
39881
|
#
|
|
39882
|
+
# @!attribute [rw] text_generation_hyper_parameters
|
|
39883
|
+
# The hyperparameters used to configure and optimize the learning
|
|
39884
|
+
# process of the base model. You can set any combination of the
|
|
39885
|
+
# following hyperparameters for all base models. For more information
|
|
39886
|
+
# on each supported hyperparameter, see [Optimize the learning process
|
|
39887
|
+
# of your text generation models with hyperparameters][1].
|
|
39888
|
+
#
|
|
39889
|
+
# * `"epochCount"`: The number of times the model goes through the
|
|
39890
|
+
# entire training dataset. Its value should be a string containing
|
|
39891
|
+
# an integer value within the range of "1" to "10".
|
|
39892
|
+
#
|
|
39893
|
+
# * `"batchSize"`: The number of data samples used in each iteration
|
|
39894
|
+
# of training. Its value should be a string containing an integer
|
|
39895
|
+
# value within the range of "1" to "64".
|
|
39896
|
+
#
|
|
39897
|
+
# * `"learningRate"`: The step size at which a model's parameters are
|
|
39898
|
+
# updated during training. Its value should be a string containing a
|
|
39899
|
+
# floating-point value within the range of "0" to "1".
|
|
39900
|
+
#
|
|
39901
|
+
# * `"learningRateWarmupSteps"`: The number of training steps during
|
|
39902
|
+
# which the learning rate gradually increases before reaching its
|
|
39903
|
+
# target or maximum value. Its value should be a string containing
|
|
39904
|
+
# an integer value within the range of "0" to "250".
|
|
39905
|
+
#
|
|
39906
|
+
# Here is an example where all four hyperparameters are configured.
|
|
39907
|
+
#
|
|
39908
|
+
# `\{ "epochCount":"5", "learningRate":"0.5", "batchSize": "32",
|
|
39909
|
+
# "learningRateWarmupSteps": "10" \}`
|
|
39910
|
+
#
|
|
39911
|
+
#
|
|
39912
|
+
#
|
|
39913
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-set-hyperparameters.html
|
|
39914
|
+
# @return [Hash<String,String>]
|
|
39915
|
+
#
|
|
38006
39916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TextGenerationJobConfig AWS API Documentation
|
|
38007
39917
|
#
|
|
38008
39918
|
class TextGenerationJobConfig < Struct.new(
|
|
38009
39919
|
:completion_criteria,
|
|
38010
|
-
:base_model_name
|
|
39920
|
+
:base_model_name,
|
|
39921
|
+
:text_generation_hyper_parameters)
|
|
38011
39922
|
SENSITIVE = []
|
|
38012
39923
|
include Aws::Structure
|
|
38013
39924
|
end
|
|
@@ -40435,11 +42346,16 @@ module Aws::SageMaker
|
|
|
40435
42346
|
# The new KernelGateway app to run on the image.
|
|
40436
42347
|
# @return [Types::KernelGatewayImageConfig]
|
|
40437
42348
|
#
|
|
42349
|
+
# @!attribute [rw] jupyter_lab_app_image_config
|
|
42350
|
+
# The JupyterLab app running on the image.
|
|
42351
|
+
# @return [Types::JupyterLabAppImageConfig]
|
|
42352
|
+
#
|
|
40438
42353
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateAppImageConfigRequest AWS API Documentation
|
|
40439
42354
|
#
|
|
40440
42355
|
class UpdateAppImageConfigRequest < Struct.new(
|
|
40441
42356
|
:app_image_config_name,
|
|
40442
|
-
:kernel_gateway_image_config
|
|
42357
|
+
:kernel_gateway_image_config,
|
|
42358
|
+
:jupyter_lab_app_image_config)
|
|
40443
42359
|
SENSITIVE = []
|
|
40444
42360
|
include Aws::Structure
|
|
40445
42361
|
end
|
|
@@ -40495,6 +42411,37 @@ module Aws::SageMaker
|
|
|
40495
42411
|
include Aws::Structure
|
|
40496
42412
|
end
|
|
40497
42413
|
|
|
42414
|
+
# @!attribute [rw] cluster_name
|
|
42415
|
+
# Specify the name of the SageMaker HyperPod cluster you want to
|
|
42416
|
+
# update.
|
|
42417
|
+
# @return [String]
|
|
42418
|
+
#
|
|
42419
|
+
# @!attribute [rw] instance_groups
|
|
42420
|
+
# Specify the instance groups to update.
|
|
42421
|
+
# @return [Array<Types::ClusterInstanceGroupSpecification>]
|
|
42422
|
+
#
|
|
42423
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterRequest AWS API Documentation
|
|
42424
|
+
#
|
|
42425
|
+
class UpdateClusterRequest < Struct.new(
|
|
42426
|
+
:cluster_name,
|
|
42427
|
+
:instance_groups)
|
|
42428
|
+
SENSITIVE = []
|
|
42429
|
+
include Aws::Structure
|
|
42430
|
+
end
|
|
42431
|
+
|
|
42432
|
+
# @!attribute [rw] cluster_arn
|
|
42433
|
+
# The Amazon Resource Name (ARN) of the updated SageMaker HyperPod
|
|
42434
|
+
# cluster.
|
|
42435
|
+
# @return [String]
|
|
42436
|
+
#
|
|
42437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterResponse AWS API Documentation
|
|
42438
|
+
#
|
|
42439
|
+
class UpdateClusterResponse < Struct.new(
|
|
42440
|
+
:cluster_arn)
|
|
42441
|
+
SENSITIVE = []
|
|
42442
|
+
include Aws::Structure
|
|
42443
|
+
end
|
|
42444
|
+
|
|
40498
42445
|
# @!attribute [rw] code_repository_name
|
|
40499
42446
|
# The name of the Git repository to update.
|
|
40500
42447
|
# @return [String]
|
|
@@ -40648,6 +42595,31 @@ module Aws::SageMaker
|
|
|
40648
42595
|
# value must be set to `Service`.
|
|
40649
42596
|
# @return [String]
|
|
40650
42597
|
#
|
|
42598
|
+
# @!attribute [rw] subnet_ids
|
|
42599
|
+
# The VPC subnets that Studio uses for communication.
|
|
42600
|
+
#
|
|
42601
|
+
# If removing subnets, ensure there are no apps in the `InService`,
|
|
42602
|
+
# `Pending`, or `Deleting` state.
|
|
42603
|
+
# @return [Array<String>]
|
|
42604
|
+
#
|
|
42605
|
+
# @!attribute [rw] app_network_access_type
|
|
42606
|
+
# Specifies the VPC used for non-EFS traffic.
|
|
42607
|
+
#
|
|
42608
|
+
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
|
42609
|
+
# Amazon SageMaker, which allows direct internet access.
|
|
42610
|
+
#
|
|
42611
|
+
# * `VpcOnly` - All Studio traffic is through the specified VPC and
|
|
42612
|
+
# subnets.
|
|
42613
|
+
#
|
|
42614
|
+
# This configuration can only be modified if there are no apps in the
|
|
42615
|
+
# `InService`, `Pending`, or `Deleting` state. The configuration
|
|
42616
|
+
# cannot be updated if
|
|
42617
|
+
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
|
42618
|
+
# is already set or
|
|
42619
|
+
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
|
42620
|
+
# is provided as part of the same request.
|
|
42621
|
+
# @return [String]
|
|
42622
|
+
#
|
|
40651
42623
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainRequest AWS API Documentation
|
|
40652
42624
|
#
|
|
40653
42625
|
class UpdateDomainRequest < Struct.new(
|
|
@@ -40655,7 +42627,9 @@ module Aws::SageMaker
|
|
|
40655
42627
|
:default_user_settings,
|
|
40656
42628
|
:domain_settings_for_update,
|
|
40657
42629
|
:default_space_settings,
|
|
40658
|
-
:app_security_group_management
|
|
42630
|
+
:app_security_group_management,
|
|
42631
|
+
:subnet_ids,
|
|
42632
|
+
:app_network_access_type)
|
|
40659
42633
|
SENSITIVE = []
|
|
40660
42634
|
include Aws::Structure
|
|
40661
42635
|
end
|
|
@@ -41072,6 +43046,72 @@ module Aws::SageMaker
|
|
|
41072
43046
|
include Aws::Structure
|
|
41073
43047
|
end
|
|
41074
43048
|
|
|
43049
|
+
# @!attribute [rw] inference_component_name
|
|
43050
|
+
# The name of the inference component.
|
|
43051
|
+
# @return [String]
|
|
43052
|
+
#
|
|
43053
|
+
# @!attribute [rw] specification
|
|
43054
|
+
# Details about the resources to deploy with this inference component,
|
|
43055
|
+
# including the model, container, and compute resources.
|
|
43056
|
+
# @return [Types::InferenceComponentSpecification]
|
|
43057
|
+
#
|
|
43058
|
+
# @!attribute [rw] runtime_config
|
|
43059
|
+
# Runtime settings for a model that is deployed with an inference
|
|
43060
|
+
# component.
|
|
43061
|
+
# @return [Types::InferenceComponentRuntimeConfig]
|
|
43062
|
+
#
|
|
43063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateInferenceComponentInput AWS API Documentation
|
|
43064
|
+
#
|
|
43065
|
+
class UpdateInferenceComponentInput < Struct.new(
|
|
43066
|
+
:inference_component_name,
|
|
43067
|
+
:specification,
|
|
43068
|
+
:runtime_config)
|
|
43069
|
+
SENSITIVE = []
|
|
43070
|
+
include Aws::Structure
|
|
43071
|
+
end
|
|
43072
|
+
|
|
43073
|
+
# @!attribute [rw] inference_component_arn
|
|
43074
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
|
43075
|
+
# @return [String]
|
|
43076
|
+
#
|
|
43077
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateInferenceComponentOutput AWS API Documentation
|
|
43078
|
+
#
|
|
43079
|
+
class UpdateInferenceComponentOutput < Struct.new(
|
|
43080
|
+
:inference_component_arn)
|
|
43081
|
+
SENSITIVE = []
|
|
43082
|
+
include Aws::Structure
|
|
43083
|
+
end
|
|
43084
|
+
|
|
43085
|
+
# @!attribute [rw] inference_component_name
|
|
43086
|
+
# The name of the inference component to update.
|
|
43087
|
+
# @return [String]
|
|
43088
|
+
#
|
|
43089
|
+
# @!attribute [rw] desired_runtime_config
|
|
43090
|
+
# Runtime settings for a model that is deployed with an inference
|
|
43091
|
+
# component.
|
|
43092
|
+
# @return [Types::InferenceComponentRuntimeConfig]
|
|
43093
|
+
#
|
|
43094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateInferenceComponentRuntimeConfigInput AWS API Documentation
|
|
43095
|
+
#
|
|
43096
|
+
class UpdateInferenceComponentRuntimeConfigInput < Struct.new(
|
|
43097
|
+
:inference_component_name,
|
|
43098
|
+
:desired_runtime_config)
|
|
43099
|
+
SENSITIVE = []
|
|
43100
|
+
include Aws::Structure
|
|
43101
|
+
end
|
|
43102
|
+
|
|
43103
|
+
# @!attribute [rw] inference_component_arn
|
|
43104
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
|
43105
|
+
# @return [String]
|
|
43106
|
+
#
|
|
43107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateInferenceComponentRuntimeConfigOutput AWS API Documentation
|
|
43108
|
+
#
|
|
43109
|
+
class UpdateInferenceComponentRuntimeConfigOutput < Struct.new(
|
|
43110
|
+
:inference_component_arn)
|
|
43111
|
+
SENSITIVE = []
|
|
43112
|
+
include Aws::Structure
|
|
43113
|
+
end
|
|
43114
|
+
|
|
41075
43115
|
# @!attribute [rw] name
|
|
41076
43116
|
# The name of the inference experiment to be updated.
|
|
41077
43117
|
# @return [String]
|
|
@@ -41667,12 +43707,18 @@ module Aws::SageMaker
|
|
|
41667
43707
|
# A collection of space settings.
|
|
41668
43708
|
# @return [Types::SpaceSettings]
|
|
41669
43709
|
#
|
|
43710
|
+
# @!attribute [rw] space_display_name
|
|
43711
|
+
# The name of the space that appears in the Amazon SageMaker Studio
|
|
43712
|
+
# UI.
|
|
43713
|
+
# @return [String]
|
|
43714
|
+
#
|
|
41670
43715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateSpaceRequest AWS API Documentation
|
|
41671
43716
|
#
|
|
41672
43717
|
class UpdateSpaceRequest < Struct.new(
|
|
41673
43718
|
:domain_id,
|
|
41674
43719
|
:space_name,
|
|
41675
|
-
:space_settings
|
|
43720
|
+
:space_settings,
|
|
43721
|
+
:space_display_name)
|
|
41676
43722
|
SENSITIVE = []
|
|
41677
43723
|
include Aws::Structure
|
|
41678
43724
|
end
|
|
@@ -42075,10 +44121,9 @@ module Aws::SageMaker
|
|
|
42075
44121
|
include Aws::Structure
|
|
42076
44122
|
end
|
|
42077
44123
|
|
|
42078
|
-
# A collection of settings that apply to users
|
|
42079
|
-
#
|
|
42080
|
-
#
|
|
42081
|
-
# called.
|
|
44124
|
+
# A collection of settings that apply to users in a domain. These
|
|
44125
|
+
# settings are specified when the `CreateUserProfile` API is called, and
|
|
44126
|
+
# as `DefaultUserSettings` when the `CreateDomain` API is called.
|
|
42082
44127
|
#
|
|
42083
44128
|
# `SecurityGroups` is aggregated when specified in both calls. For all
|
|
42084
44129
|
# other settings in `UserSettings`, the values specified in
|
|
@@ -42091,7 +44136,7 @@ module Aws::SageMaker
|
|
|
42091
44136
|
#
|
|
42092
44137
|
# @!attribute [rw] security_groups
|
|
42093
44138
|
# The security groups for the Amazon Virtual Private Cloud (VPC) that
|
|
42094
|
-
#
|
|
44139
|
+
# the domain uses for communication.
|
|
42095
44140
|
#
|
|
42096
44141
|
# Optional when the `CreateDomain.AppNetworkAccessType` parameter is
|
|
42097
44142
|
# set to `PublicInternetOnly`.
|
|
@@ -42101,12 +44146,12 @@ module Aws::SageMaker
|
|
|
42101
44146
|
# `DefaultUserSettings` for the domain.
|
|
42102
44147
|
#
|
|
42103
44148
|
# Amazon SageMaker adds a security group to allow NFS traffic from
|
|
42104
|
-
# SageMaker Studio. Therefore, the number of security groups
|
|
42105
|
-
# can specify is one less than the maximum number shown.
|
|
44149
|
+
# Amazon SageMaker Studio. Therefore, the number of security groups
|
|
44150
|
+
# that you can specify is one less than the maximum number shown.
|
|
42106
44151
|
# @return [Array<String>]
|
|
42107
44152
|
#
|
|
42108
44153
|
# @!attribute [rw] sharing_settings
|
|
42109
|
-
# Specifies options for sharing SageMaker Studio notebooks.
|
|
44154
|
+
# Specifies options for sharing Amazon SageMaker Studio notebooks.
|
|
42110
44155
|
# @return [Types::SharingSettings]
|
|
42111
44156
|
#
|
|
42112
44157
|
# @!attribute [rw] jupyter_server_app_settings
|
|
@@ -42134,6 +44179,46 @@ module Aws::SageMaker
|
|
|
42134
44179
|
# The Canvas app settings.
|
|
42135
44180
|
# @return [Types::CanvasAppSettings]
|
|
42136
44181
|
#
|
|
44182
|
+
# @!attribute [rw] jupyter_lab_app_settings
|
|
44183
|
+
# The settings for the JupyterLab application.
|
|
44184
|
+
# @return [Types::JupyterLabAppSettings]
|
|
44185
|
+
#
|
|
44186
|
+
# @!attribute [rw] code_editor_app_settings
|
|
44187
|
+
# The Code Editor application settings.
|
|
44188
|
+
# @return [Types::CodeEditorAppSettings]
|
|
44189
|
+
#
|
|
44190
|
+
# @!attribute [rw] space_storage_settings
|
|
44191
|
+
# The storage settings for a private space.
|
|
44192
|
+
# @return [Types::DefaultSpaceStorageSettings]
|
|
44193
|
+
#
|
|
44194
|
+
# @!attribute [rw] default_landing_uri
|
|
44195
|
+
# The default experience that the user is directed to when accessing
|
|
44196
|
+
# the domain. The supported values are:
|
|
44197
|
+
#
|
|
44198
|
+
# * `studio::`: Indicates that Studio is the default experience. This
|
|
44199
|
+
# value can only be passed if `StudioWebPortal` is set to `ENABLED`.
|
|
44200
|
+
#
|
|
44201
|
+
# * `app:JupyterServer:`: Indicates that Studio Classic is the default
|
|
44202
|
+
# experience.
|
|
44203
|
+
# @return [String]
|
|
44204
|
+
#
|
|
44205
|
+
# @!attribute [rw] studio_web_portal
|
|
44206
|
+
# Whether the user can access Studio. If this value is set to
|
|
44207
|
+
# `DISABLED`, the user cannot access Studio, even if that is the
|
|
44208
|
+
# default experience for the domain.
|
|
44209
|
+
# @return [String]
|
|
44210
|
+
#
|
|
44211
|
+
# @!attribute [rw] custom_posix_user_config
|
|
44212
|
+
# Details about the POSIX identity that is used for file system
|
|
44213
|
+
# operations.
|
|
44214
|
+
# @return [Types::CustomPosixUserConfig]
|
|
44215
|
+
#
|
|
44216
|
+
# @!attribute [rw] custom_file_system_configs
|
|
44217
|
+
# The settings for assigning a custom file system to a user profile.
|
|
44218
|
+
# Permitted users can access this file system in Amazon SageMaker
|
|
44219
|
+
# Studio.
|
|
44220
|
+
# @return [Array<Types::CustomFileSystemConfig>]
|
|
44221
|
+
#
|
|
42137
44222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
|
|
42138
44223
|
#
|
|
42139
44224
|
class UserSettings < Struct.new(
|
|
@@ -42145,7 +44230,14 @@ module Aws::SageMaker
|
|
|
42145
44230
|
:tensor_board_app_settings,
|
|
42146
44231
|
:r_studio_server_pro_app_settings,
|
|
42147
44232
|
:r_session_app_settings,
|
|
42148
|
-
:canvas_app_settings
|
|
44233
|
+
:canvas_app_settings,
|
|
44234
|
+
:jupyter_lab_app_settings,
|
|
44235
|
+
:code_editor_app_settings,
|
|
44236
|
+
:space_storage_settings,
|
|
44237
|
+
:default_landing_uri,
|
|
44238
|
+
:studio_web_portal,
|
|
44239
|
+
:custom_posix_user_config,
|
|
44240
|
+
:custom_file_system_configs)
|
|
42149
44241
|
SENSITIVE = []
|
|
42150
44242
|
include Aws::Structure
|
|
42151
44243
|
end
|
|
@@ -42228,19 +44320,18 @@ module Aws::SageMaker
|
|
|
42228
44320
|
include Aws::Structure
|
|
42229
44321
|
end
|
|
42230
44322
|
|
|
42231
|
-
# Specifies
|
|
42232
|
-
#
|
|
42233
|
-
#
|
|
42234
|
-
#
|
|
42235
|
-
#
|
|
44323
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
|
44324
|
+
# jobs, hosted models, and compute resources have access to. You can
|
|
44325
|
+
# control access to and from your resources by configuring a VPC. For
|
|
44326
|
+
# more information, see [Give SageMaker Access to Resources in your
|
|
44327
|
+
# Amazon VPC][1].
|
|
42236
44328
|
#
|
|
42237
44329
|
#
|
|
42238
44330
|
#
|
|
42239
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
|
42240
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
|
44331
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
|
42241
44332
|
#
|
|
42242
44333
|
# @!attribute [rw] security_group_ids
|
|
42243
|
-
# The VPC security group IDs, in the form sg-xxxxxxxx
|
|
44334
|
+
# The VPC security group IDs, in the form `sg-xxxxxxxx`. Specify the
|
|
42244
44335
|
# security groups for the VPC that is specified in the `Subnets`
|
|
42245
44336
|
# field.
|
|
42246
44337
|
# @return [Array<String>]
|