aws-sdk-sagemaker 1.222.0 → 1.223.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +1083 -65
- data/lib/aws-sdk-sagemaker/client_api.rb +493 -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 +1651 -85
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -2188,10 +2188,14 @@ module Aws::SageMaker
|
|
2188
2188
|
# For job V2s (jobs created by calling `CreateAutoMLJobV2`), this
|
2189
2189
|
# field controls the runtime of the job candidate.
|
2190
2190
|
#
|
2191
|
+
# For [TextGenerationJobConfig][3] problem types, the maximum time
|
2192
|
+
# defaults to 72 hours (259200 seconds).
|
2193
|
+
#
|
2191
2194
|
#
|
2192
2195
|
#
|
2193
2196
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_StoppingCondition.html
|
2194
2197
|
# [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateHyperParameterTuningJob.html
|
2198
|
+
# [3]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TextClassificationJobConfig.html
|
2195
2199
|
# @return [Integer]
|
2196
2200
|
#
|
2197
2201
|
# @!attribute [rw] max_auto_ml_job_runtime_in_seconds
|
@@ -3909,6 +3913,262 @@ module Aws::SageMaker
|
|
3909
3913
|
include Aws::Structure
|
3910
3914
|
end
|
3911
3915
|
|
3916
|
+
# Details of an instance group in a SageMaker HyperPod cluster.
|
3917
|
+
#
|
3918
|
+
# @!attribute [rw] current_count
|
3919
|
+
# The number of instances that are currently in the instance group of
|
3920
|
+
# a SageMaker HyperPod cluster.
|
3921
|
+
# @return [Integer]
|
3922
|
+
#
|
3923
|
+
# @!attribute [rw] target_count
|
3924
|
+
# The number of instances you specified to add to the instance group
|
3925
|
+
# of a SageMaker HyperPod cluster.
|
3926
|
+
# @return [Integer]
|
3927
|
+
#
|
3928
|
+
# @!attribute [rw] instance_group_name
|
3929
|
+
# The name of the instance group of a SageMaker HyperPod cluster.
|
3930
|
+
# @return [String]
|
3931
|
+
#
|
3932
|
+
# @!attribute [rw] instance_type
|
3933
|
+
# The instance type of the instance group of a SageMaker HyperPod
|
3934
|
+
# cluster.
|
3935
|
+
# @return [String]
|
3936
|
+
#
|
3937
|
+
# @!attribute [rw] life_cycle_config
|
3938
|
+
# Details of LifeCycle configuration for the instance group.
|
3939
|
+
# @return [Types::ClusterLifeCycleConfig]
|
3940
|
+
#
|
3941
|
+
# @!attribute [rw] execution_role
|
3942
|
+
# The execution role for the instance group to assume.
|
3943
|
+
# @return [String]
|
3944
|
+
#
|
3945
|
+
# @!attribute [rw] threads_per_core
|
3946
|
+
# The number you specified to `TreadsPerCore` in `CreateCluster` for
|
3947
|
+
# enabling or disabling multithreading. For instance types that
|
3948
|
+
# support multithreading, you can specify 1 for disabling
|
3949
|
+
# multithreading and 2 for enabling multithreading. For more
|
3950
|
+
# information, see the reference table of [CPU cores and threads per
|
3951
|
+
# CPU core per instance type][1] in the *Amazon Elastic Compute Cloud
|
3952
|
+
# User Guide*.
|
3953
|
+
#
|
3954
|
+
#
|
3955
|
+
#
|
3956
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html
|
3957
|
+
# @return [Integer]
|
3958
|
+
#
|
3959
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupDetails AWS API Documentation
|
3960
|
+
#
|
3961
|
+
class ClusterInstanceGroupDetails < Struct.new(
|
3962
|
+
:current_count,
|
3963
|
+
:target_count,
|
3964
|
+
:instance_group_name,
|
3965
|
+
:instance_type,
|
3966
|
+
:life_cycle_config,
|
3967
|
+
:execution_role,
|
3968
|
+
:threads_per_core)
|
3969
|
+
SENSITIVE = []
|
3970
|
+
include Aws::Structure
|
3971
|
+
end
|
3972
|
+
|
3973
|
+
# The specifications of an instance group that you need to define.
|
3974
|
+
#
|
3975
|
+
# @!attribute [rw] instance_count
|
3976
|
+
# Specifies the number of instances to add to the instance group of a
|
3977
|
+
# SageMaker HyperPod cluster.
|
3978
|
+
# @return [Integer]
|
3979
|
+
#
|
3980
|
+
# @!attribute [rw] instance_group_name
|
3981
|
+
# Specifies the name of the instance group.
|
3982
|
+
# @return [String]
|
3983
|
+
#
|
3984
|
+
# @!attribute [rw] instance_type
|
3985
|
+
# Specifies the instance type of the instance group.
|
3986
|
+
# @return [String]
|
3987
|
+
#
|
3988
|
+
# @!attribute [rw] life_cycle_config
|
3989
|
+
# Specifies the LifeCycle configuration for the instance group.
|
3990
|
+
# @return [Types::ClusterLifeCycleConfig]
|
3991
|
+
#
|
3992
|
+
# @!attribute [rw] execution_role
|
3993
|
+
# Specifies an IAM execution role to be assumed by the instance group.
|
3994
|
+
# @return [String]
|
3995
|
+
#
|
3996
|
+
# @!attribute [rw] threads_per_core
|
3997
|
+
# Specifies the value for **Threads per core**. For instance types
|
3998
|
+
# that support multithreading, you can specify `1` for disabling
|
3999
|
+
# multithreading and `2` for enabling multithreading. For instance
|
4000
|
+
# types that doesn't support multithreading, specify `1`. For more
|
4001
|
+
# information, see the reference table of [CPU cores and threads per
|
4002
|
+
# CPU core per instance type][1] in the *Amazon Elastic Compute Cloud
|
4003
|
+
# User Guide*.
|
4004
|
+
#
|
4005
|
+
#
|
4006
|
+
#
|
4007
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html
|
4008
|
+
# @return [Integer]
|
4009
|
+
#
|
4010
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupSpecification AWS API Documentation
|
4011
|
+
#
|
4012
|
+
class ClusterInstanceGroupSpecification < Struct.new(
|
4013
|
+
:instance_count,
|
4014
|
+
:instance_group_name,
|
4015
|
+
:instance_type,
|
4016
|
+
:life_cycle_config,
|
4017
|
+
:execution_role,
|
4018
|
+
:threads_per_core)
|
4019
|
+
SENSITIVE = []
|
4020
|
+
include Aws::Structure
|
4021
|
+
end
|
4022
|
+
|
4023
|
+
# Details of an instance in a SageMaker HyperPod cluster.
|
4024
|
+
#
|
4025
|
+
# @!attribute [rw] status
|
4026
|
+
# The status of an instance in a SageMaker HyperPod cluster.
|
4027
|
+
# @return [String]
|
4028
|
+
#
|
4029
|
+
# @!attribute [rw] message
|
4030
|
+
# The message from an instance in a SageMaker HyperPod cluster.
|
4031
|
+
# @return [String]
|
4032
|
+
#
|
4033
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceStatusDetails AWS API Documentation
|
4034
|
+
#
|
4035
|
+
class ClusterInstanceStatusDetails < Struct.new(
|
4036
|
+
:status,
|
4037
|
+
:message)
|
4038
|
+
SENSITIVE = []
|
4039
|
+
include Aws::Structure
|
4040
|
+
end
|
4041
|
+
|
4042
|
+
# The LifeCycle configuration for a SageMaker HyperPod cluster.
|
4043
|
+
#
|
4044
|
+
# @!attribute [rw] source_s3_uri
|
4045
|
+
# An Amazon S3 bucket path where your LifeCycle scripts are stored.
|
4046
|
+
# @return [String]
|
4047
|
+
#
|
4048
|
+
# @!attribute [rw] on_create
|
4049
|
+
# The directory of the LifeCycle script under `SourceS3Uri`. This
|
4050
|
+
# LifeCycle script runs during cluster creation.
|
4051
|
+
# @return [String]
|
4052
|
+
#
|
4053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterLifeCycleConfig AWS API Documentation
|
4054
|
+
#
|
4055
|
+
class ClusterLifeCycleConfig < Struct.new(
|
4056
|
+
:source_s3_uri,
|
4057
|
+
:on_create)
|
4058
|
+
SENSITIVE = []
|
4059
|
+
include Aws::Structure
|
4060
|
+
end
|
4061
|
+
|
4062
|
+
# Details of an instance (also called a *node* interchangeably) in a
|
4063
|
+
# SageMaker HyperPod cluster.
|
4064
|
+
#
|
4065
|
+
# @!attribute [rw] instance_group_name
|
4066
|
+
# The instance group name in which the instance is.
|
4067
|
+
# @return [String]
|
4068
|
+
#
|
4069
|
+
# @!attribute [rw] instance_id
|
4070
|
+
# The ID of the instance.
|
4071
|
+
# @return [String]
|
4072
|
+
#
|
4073
|
+
# @!attribute [rw] instance_status
|
4074
|
+
# The status of the instance.
|
4075
|
+
# @return [Types::ClusterInstanceStatusDetails]
|
4076
|
+
#
|
4077
|
+
# @!attribute [rw] instance_type
|
4078
|
+
# The type of the instance.
|
4079
|
+
# @return [String]
|
4080
|
+
#
|
4081
|
+
# @!attribute [rw] launch_time
|
4082
|
+
# The time when the instance is launched.
|
4083
|
+
# @return [Time]
|
4084
|
+
#
|
4085
|
+
# @!attribute [rw] life_cycle_config
|
4086
|
+
# The LifeCycle configuration applied to the instance.
|
4087
|
+
# @return [Types::ClusterLifeCycleConfig]
|
4088
|
+
#
|
4089
|
+
# @!attribute [rw] threads_per_core
|
4090
|
+
# The number of threads per CPU core you specified under
|
4091
|
+
# `CreateCluster`.
|
4092
|
+
# @return [Integer]
|
4093
|
+
#
|
4094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNodeDetails AWS API Documentation
|
4095
|
+
#
|
4096
|
+
class ClusterNodeDetails < Struct.new(
|
4097
|
+
:instance_group_name,
|
4098
|
+
:instance_id,
|
4099
|
+
:instance_status,
|
4100
|
+
:instance_type,
|
4101
|
+
:launch_time,
|
4102
|
+
:life_cycle_config,
|
4103
|
+
:threads_per_core)
|
4104
|
+
SENSITIVE = []
|
4105
|
+
include Aws::Structure
|
4106
|
+
end
|
4107
|
+
|
4108
|
+
# Lists a summary of the properties of an instance (also called a *node*
|
4109
|
+
# interchangeably) of a SageMaker HyperPod cluster.
|
4110
|
+
#
|
4111
|
+
# @!attribute [rw] instance_group_name
|
4112
|
+
# The name of the instance group in which the instance is.
|
4113
|
+
# @return [String]
|
4114
|
+
#
|
4115
|
+
# @!attribute [rw] instance_id
|
4116
|
+
# The ID of the instance.
|
4117
|
+
# @return [String]
|
4118
|
+
#
|
4119
|
+
# @!attribute [rw] instance_type
|
4120
|
+
# The type of the instance.
|
4121
|
+
# @return [String]
|
4122
|
+
#
|
4123
|
+
# @!attribute [rw] launch_time
|
4124
|
+
# The time when the instance is launched.
|
4125
|
+
# @return [Time]
|
4126
|
+
#
|
4127
|
+
# @!attribute [rw] instance_status
|
4128
|
+
# The status of the instance.
|
4129
|
+
# @return [Types::ClusterInstanceStatusDetails]
|
4130
|
+
#
|
4131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNodeSummary AWS API Documentation
|
4132
|
+
#
|
4133
|
+
class ClusterNodeSummary < Struct.new(
|
4134
|
+
:instance_group_name,
|
4135
|
+
:instance_id,
|
4136
|
+
:instance_type,
|
4137
|
+
:launch_time,
|
4138
|
+
:instance_status)
|
4139
|
+
SENSITIVE = []
|
4140
|
+
include Aws::Structure
|
4141
|
+
end
|
4142
|
+
|
4143
|
+
# Lists a summary of the properties of a SageMaker HyperPod cluster.
|
4144
|
+
#
|
4145
|
+
# @!attribute [rw] cluster_arn
|
4146
|
+
# The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster.
|
4147
|
+
# @return [String]
|
4148
|
+
#
|
4149
|
+
# @!attribute [rw] cluster_name
|
4150
|
+
# The name of the SageMaker HyperPod cluster.
|
4151
|
+
# @return [String]
|
4152
|
+
#
|
4153
|
+
# @!attribute [rw] creation_time
|
4154
|
+
# The time when the SageMaker HyperPod cluster is created.
|
4155
|
+
# @return [Time]
|
4156
|
+
#
|
4157
|
+
# @!attribute [rw] cluster_status
|
4158
|
+
# The status of the SageMaker HyperPod cluster.
|
4159
|
+
# @return [String]
|
4160
|
+
#
|
4161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterSummary AWS API Documentation
|
4162
|
+
#
|
4163
|
+
class ClusterSummary < Struct.new(
|
4164
|
+
:cluster_arn,
|
4165
|
+
:cluster_name,
|
4166
|
+
:creation_time,
|
4167
|
+
:cluster_status)
|
4168
|
+
SENSITIVE = []
|
4169
|
+
include Aws::Structure
|
4170
|
+
end
|
4171
|
+
|
3912
4172
|
# A Git repository that SageMaker automatically displays to users for
|
3913
4173
|
# cloning in the JupyterServer application.
|
3914
4174
|
#
|
@@ -5029,6 +5289,62 @@ module Aws::SageMaker
|
|
5029
5289
|
include Aws::Structure
|
5030
5290
|
end
|
5031
5291
|
|
5292
|
+
# @!attribute [rw] cluster_name
|
5293
|
+
# The name for the new SageMaker HyperPod cluster.
|
5294
|
+
# @return [String]
|
5295
|
+
#
|
5296
|
+
# @!attribute [rw] instance_groups
|
5297
|
+
# The instance groups to be created in the SageMaker HyperPod cluster.
|
5298
|
+
# @return [Array<Types::ClusterInstanceGroupSpecification>]
|
5299
|
+
#
|
5300
|
+
# @!attribute [rw] vpc_config
|
5301
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
5302
|
+
# jobs, hosted models, and compute resources have access to. You can
|
5303
|
+
# control access to and from your resources by configuring a VPC. For
|
5304
|
+
# more information, see [Give SageMaker Access to Resources in your
|
5305
|
+
# Amazon VPC][1].
|
5306
|
+
#
|
5307
|
+
#
|
5308
|
+
#
|
5309
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
5310
|
+
# @return [Types::VpcConfig]
|
5311
|
+
#
|
5312
|
+
# @!attribute [rw] tags
|
5313
|
+
# Custom tags for managing the SageMaker HyperPod cluster as an Amazon
|
5314
|
+
# Web Services resource. You can add tags to your cluster in the same
|
5315
|
+
# way you add them in other Amazon Web Services services that support
|
5316
|
+
# tagging. To learn more about tagging Amazon Web Services resources
|
5317
|
+
# in general, see [Tagging Amazon Web Services Resources User
|
5318
|
+
# Guide][1].
|
5319
|
+
#
|
5320
|
+
#
|
5321
|
+
#
|
5322
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html
|
5323
|
+
# @return [Array<Types::Tag>]
|
5324
|
+
#
|
5325
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateClusterRequest AWS API Documentation
|
5326
|
+
#
|
5327
|
+
class CreateClusterRequest < Struct.new(
|
5328
|
+
:cluster_name,
|
5329
|
+
:instance_groups,
|
5330
|
+
:vpc_config,
|
5331
|
+
:tags)
|
5332
|
+
SENSITIVE = []
|
5333
|
+
include Aws::Structure
|
5334
|
+
end
|
5335
|
+
|
5336
|
+
# @!attribute [rw] cluster_arn
|
5337
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
5338
|
+
# @return [String]
|
5339
|
+
#
|
5340
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateClusterResponse AWS API Documentation
|
5341
|
+
#
|
5342
|
+
class CreateClusterResponse < Struct.new(
|
5343
|
+
:cluster_arn)
|
5344
|
+
SENSITIVE = []
|
5345
|
+
include Aws::Structure
|
5346
|
+
end
|
5347
|
+
|
5032
5348
|
# @!attribute [rw] code_repository_name
|
5033
5349
|
# The name of the Git repository. The name must have 1 to 63
|
5034
5350
|
# characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
|
@@ -5376,12 +5692,12 @@ module Aws::SageMaker
|
|
5376
5692
|
# @return [Types::UserSettings]
|
5377
5693
|
#
|
5378
5694
|
# @!attribute [rw] subnet_ids
|
5379
|
-
# The VPC subnets that
|
5695
|
+
# The VPC subnets that the domain uses for communication.
|
5380
5696
|
# @return [Array<String>]
|
5381
5697
|
#
|
5382
5698
|
# @!attribute [rw] vpc_id
|
5383
|
-
# The ID of the Amazon Virtual Private Cloud (VPC) that
|
5384
|
-
# for communication.
|
5699
|
+
# The ID of the Amazon Virtual Private Cloud (VPC) that the domain
|
5700
|
+
# uses for communication.
|
5385
5701
|
# @return [String]
|
5386
5702
|
#
|
5387
5703
|
# @!attribute [rw] tags
|
@@ -5400,8 +5716,7 @@ module Aws::SageMaker
|
|
5400
5716
|
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
5401
5717
|
# Amazon SageMaker, which allows direct internet access
|
5402
5718
|
#
|
5403
|
-
# * `VpcOnly` - All
|
5404
|
-
# subnets
|
5719
|
+
# * `VpcOnly` - All traffic is through the specified VPC and subnets
|
5405
5720
|
# @return [String]
|
5406
5721
|
#
|
5407
5722
|
# @!attribute [rw] home_efs_file_system_kms_key_id
|
@@ -5680,6 +5995,39 @@ module Aws::SageMaker
|
|
5680
5995
|
# `ProductionVariants` and one variant for `ShadowProductionVariants`.
|
5681
5996
|
# @return [Array<Types::ProductionVariant>]
|
5682
5997
|
#
|
5998
|
+
# @!attribute [rw] execution_role_arn
|
5999
|
+
# The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker
|
6000
|
+
# can assume to perform actions on your behalf. For more information,
|
6001
|
+
# see [SageMaker Roles][1].
|
6002
|
+
#
|
6003
|
+
# <note markdown="1"> To be able to pass this role to Amazon SageMaker, the caller of this
|
6004
|
+
# action must have the `iam:PassRole` permission.
|
6005
|
+
#
|
6006
|
+
# </note>
|
6007
|
+
#
|
6008
|
+
#
|
6009
|
+
#
|
6010
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-roles.html
|
6011
|
+
# @return [String]
|
6012
|
+
#
|
6013
|
+
# @!attribute [rw] vpc_config
|
6014
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
6015
|
+
# jobs, hosted models, and compute resources have access to. You can
|
6016
|
+
# control access to and from your resources by configuring a VPC. For
|
6017
|
+
# more information, see [Give SageMaker Access to Resources in your
|
6018
|
+
# Amazon VPC][1].
|
6019
|
+
#
|
6020
|
+
#
|
6021
|
+
#
|
6022
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
6023
|
+
# @return [Types::VpcConfig]
|
6024
|
+
#
|
6025
|
+
# @!attribute [rw] enable_network_isolation
|
6026
|
+
# Sets whether all model containers deployed to the endpoint are
|
6027
|
+
# isolated. If they are, no inbound or outbound network calls can be
|
6028
|
+
# made to or from the model containers.
|
6029
|
+
# @return [Boolean]
|
6030
|
+
#
|
5683
6031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEndpointConfigInput AWS API Documentation
|
5684
6032
|
#
|
5685
6033
|
class CreateEndpointConfigInput < Struct.new(
|
@@ -5690,7 +6038,10 @@ module Aws::SageMaker
|
|
5690
6038
|
:kms_key_id,
|
5691
6039
|
:async_inference_config,
|
5692
6040
|
:explainer_config,
|
5693
|
-
:shadow_production_variants
|
6041
|
+
:shadow_production_variants,
|
6042
|
+
:execution_role_arn,
|
6043
|
+
:vpc_config,
|
6044
|
+
:enable_network_isolation)
|
5694
6045
|
SENSITIVE = []
|
5695
6046
|
include Aws::Structure
|
5696
6047
|
end
|
@@ -6404,6 +6755,65 @@ module Aws::SageMaker
|
|
6404
6755
|
include Aws::Structure
|
6405
6756
|
end
|
6406
6757
|
|
6758
|
+
# @!attribute [rw] inference_component_name
|
6759
|
+
# A unique name to assign to the inference component.
|
6760
|
+
# @return [String]
|
6761
|
+
#
|
6762
|
+
# @!attribute [rw] endpoint_name
|
6763
|
+
# The name of an existing endpoint where you host the inference
|
6764
|
+
# component.
|
6765
|
+
# @return [String]
|
6766
|
+
#
|
6767
|
+
# @!attribute [rw] variant_name
|
6768
|
+
# The name of an existing production variant where you host the
|
6769
|
+
# inference component.
|
6770
|
+
# @return [String]
|
6771
|
+
#
|
6772
|
+
# @!attribute [rw] specification
|
6773
|
+
# Details about the resources to deploy with this inference component,
|
6774
|
+
# including the model, container, and compute resources.
|
6775
|
+
# @return [Types::InferenceComponentSpecification]
|
6776
|
+
#
|
6777
|
+
# @!attribute [rw] runtime_config
|
6778
|
+
# Runtime settings for a model that is deployed with an inference
|
6779
|
+
# component.
|
6780
|
+
# @return [Types::InferenceComponentRuntimeConfig]
|
6781
|
+
#
|
6782
|
+
# @!attribute [rw] tags
|
6783
|
+
# A list of key-value pairs associated with the model. For more
|
6784
|
+
# information, see [Tagging Amazon Web Services resources][1] in the
|
6785
|
+
# *Amazon Web Services General Reference*.
|
6786
|
+
#
|
6787
|
+
#
|
6788
|
+
#
|
6789
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
6790
|
+
# @return [Array<Types::Tag>]
|
6791
|
+
#
|
6792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceComponentInput AWS API Documentation
|
6793
|
+
#
|
6794
|
+
class CreateInferenceComponentInput < Struct.new(
|
6795
|
+
:inference_component_name,
|
6796
|
+
:endpoint_name,
|
6797
|
+
:variant_name,
|
6798
|
+
:specification,
|
6799
|
+
:runtime_config,
|
6800
|
+
:tags)
|
6801
|
+
SENSITIVE = []
|
6802
|
+
include Aws::Structure
|
6803
|
+
end
|
6804
|
+
|
6805
|
+
# @!attribute [rw] inference_component_arn
|
6806
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
6807
|
+
# @return [String]
|
6808
|
+
#
|
6809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateInferenceComponentOutput AWS API Documentation
|
6810
|
+
#
|
6811
|
+
class CreateInferenceComponentOutput < Struct.new(
|
6812
|
+
:inference_component_arn)
|
6813
|
+
SENSITIVE = []
|
6814
|
+
include Aws::Structure
|
6815
|
+
end
|
6816
|
+
|
6407
6817
|
# @!attribute [rw] name
|
6408
6818
|
# The name for the inference experiment.
|
6409
6819
|
# @return [String]
|
@@ -7875,6 +8285,28 @@ module Aws::SageMaker
|
|
7875
8285
|
# The name of the space.
|
7876
8286
|
# @return [String]
|
7877
8287
|
#
|
8288
|
+
# @!attribute [rw] landing_uri
|
8289
|
+
# The landing page that the user is directed to when accessing the
|
8290
|
+
# presigned URL. Using this value, users can access Studio or Studio
|
8291
|
+
# Classic, even if it is not the default experience for the domain.
|
8292
|
+
# The supported values are:
|
8293
|
+
#
|
8294
|
+
# * `studio::relative/path`: Directs users to the relative path in
|
8295
|
+
# Studio.
|
8296
|
+
#
|
8297
|
+
# * `app:JupyterServer:relative/path`: Directs users to the relative
|
8298
|
+
# path in the Studio Classic application.
|
8299
|
+
#
|
8300
|
+
# * `app:JupyterLab:relative/path`: Directs users to the relative path
|
8301
|
+
# in the JupyterLab application.
|
8302
|
+
#
|
8303
|
+
# * `app:RStudioServerPro:relative/path`: Directs users to the
|
8304
|
+
# relative path in the RStudio application.
|
8305
|
+
#
|
8306
|
+
# * `app:Canvas:relative/path`: Directs users to the relative path in
|
8307
|
+
# the Canvas application.
|
8308
|
+
# @return [String]
|
8309
|
+
#
|
7878
8310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePresignedDomainUrlRequest AWS API Documentation
|
7879
8311
|
#
|
7880
8312
|
class CreatePresignedDomainUrlRequest < Struct.new(
|
@@ -7882,7 +8314,8 @@ module Aws::SageMaker
|
|
7882
8314
|
:user_profile_name,
|
7883
8315
|
:session_expiration_duration_in_seconds,
|
7884
8316
|
:expires_in_seconds,
|
7885
|
-
:space_name
|
8317
|
+
:space_name,
|
8318
|
+
:landing_uri)
|
7886
8319
|
SENSITIVE = []
|
7887
8320
|
include Aws::Structure
|
7888
8321
|
end
|
@@ -8132,12 +8565,13 @@ module Aws::SageMaker
|
|
8132
8565
|
end
|
8133
8566
|
|
8134
8567
|
# @!attribute [rw] studio_lifecycle_config_name
|
8135
|
-
# The name of the Studio Lifecycle Configuration to
|
8568
|
+
# The name of the Amazon SageMaker Studio Lifecycle Configuration to
|
8569
|
+
# create.
|
8136
8570
|
# @return [String]
|
8137
8571
|
#
|
8138
8572
|
# @!attribute [rw] studio_lifecycle_config_content
|
8139
|
-
# The content of your Studio Lifecycle Configuration
|
8140
|
-
# content must be base64 encoded.
|
8573
|
+
# The content of your Amazon SageMaker Studio Lifecycle Configuration
|
8574
|
+
# script. This content must be base64 encoded.
|
8141
8575
|
# @return [String]
|
8142
8576
|
#
|
8143
8577
|
# @!attribute [rw] studio_lifecycle_config_app_type
|
@@ -8410,6 +8844,11 @@ module Aws::SageMaker
|
|
8410
8844
|
# `InternalServerError`.
|
8411
8845
|
# @return [Types::RetryStrategy]
|
8412
8846
|
#
|
8847
|
+
# @!attribute [rw] infra_check_config
|
8848
|
+
# Contains information about the infrastructure health check
|
8849
|
+
# configuration for the training job.
|
8850
|
+
# @return [Types::InfraCheckConfig]
|
8851
|
+
#
|
8413
8852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateTrainingJobRequest AWS API Documentation
|
8414
8853
|
#
|
8415
8854
|
class CreateTrainingJobRequest < Struct.new(
|
@@ -8434,7 +8873,8 @@ module Aws::SageMaker
|
|
8434
8873
|
:profiler_config,
|
8435
8874
|
:profiler_rule_configurations,
|
8436
8875
|
:environment,
|
8437
|
-
:retry_strategy
|
8876
|
+
:retry_strategy,
|
8877
|
+
:infra_check_config)
|
8438
8878
|
SENSITIVE = []
|
8439
8879
|
include Aws::Structure
|
8440
8880
|
end
|
@@ -9694,6 +10134,32 @@ module Aws::SageMaker
|
|
9694
10134
|
include Aws::Structure
|
9695
10135
|
end
|
9696
10136
|
|
10137
|
+
# @!attribute [rw] cluster_name
|
10138
|
+
# The string name or the Amazon Resource Name (ARN) of the SageMaker
|
10139
|
+
# HyperPod cluster to delete.
|
10140
|
+
# @return [String]
|
10141
|
+
#
|
10142
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteClusterRequest AWS API Documentation
|
10143
|
+
#
|
10144
|
+
class DeleteClusterRequest < Struct.new(
|
10145
|
+
:cluster_name)
|
10146
|
+
SENSITIVE = []
|
10147
|
+
include Aws::Structure
|
10148
|
+
end
|
10149
|
+
|
10150
|
+
# @!attribute [rw] cluster_arn
|
10151
|
+
# The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster to
|
10152
|
+
# delete.
|
10153
|
+
# @return [String]
|
10154
|
+
#
|
10155
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteClusterResponse AWS API Documentation
|
10156
|
+
#
|
10157
|
+
class DeleteClusterResponse < Struct.new(
|
10158
|
+
:cluster_arn)
|
10159
|
+
SENSITIVE = []
|
10160
|
+
include Aws::Structure
|
10161
|
+
end
|
10162
|
+
|
9697
10163
|
# @!attribute [rw] code_repository_name
|
9698
10164
|
# The name of the Git repository to delete.
|
9699
10165
|
# @return [String]
|
@@ -9980,6 +10446,18 @@ module Aws::SageMaker
|
|
9980
10446
|
#
|
9981
10447
|
class DeleteImageVersionResponse < Aws::EmptyStructure; end
|
9982
10448
|
|
10449
|
+
# @!attribute [rw] inference_component_name
|
10450
|
+
# The name of the inference component to delete.
|
10451
|
+
# @return [String]
|
10452
|
+
#
|
10453
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteInferenceComponentInput AWS API Documentation
|
10454
|
+
#
|
10455
|
+
class DeleteInferenceComponentInput < Struct.new(
|
10456
|
+
:inference_component_name)
|
10457
|
+
SENSITIVE = []
|
10458
|
+
include Aws::Structure
|
10459
|
+
end
|
10460
|
+
|
9983
10461
|
# @!attribute [rw] name
|
9984
10462
|
# The name of the inference experiment you want to delete.
|
9985
10463
|
# @return [String]
|
@@ -10204,7 +10682,8 @@ module Aws::SageMaker
|
|
10204
10682
|
end
|
10205
10683
|
|
10206
10684
|
# @!attribute [rw] studio_lifecycle_config_name
|
10207
|
-
# The name of the Studio Lifecycle Configuration to
|
10685
|
+
# The name of the Amazon SageMaker Studio Lifecycle Configuration to
|
10686
|
+
# delete.
|
10208
10687
|
# @return [String]
|
10209
10688
|
#
|
10210
10689
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteStudioLifecycleConfigRequest AWS API Documentation
|
@@ -11203,6 +11682,99 @@ module Aws::SageMaker
|
|
11203
11682
|
include Aws::Structure
|
11204
11683
|
end
|
11205
11684
|
|
11685
|
+
# @!attribute [rw] cluster_name
|
11686
|
+
# The string name or the Amazon Resource Name (ARN) of the SageMaker
|
11687
|
+
# HyperPod cluster in which the instance is.
|
11688
|
+
# @return [String]
|
11689
|
+
#
|
11690
|
+
# @!attribute [rw] node_id
|
11691
|
+
# The ID of the instance.
|
11692
|
+
# @return [String]
|
11693
|
+
#
|
11694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNodeRequest AWS API Documentation
|
11695
|
+
#
|
11696
|
+
class DescribeClusterNodeRequest < Struct.new(
|
11697
|
+
:cluster_name,
|
11698
|
+
:node_id)
|
11699
|
+
SENSITIVE = []
|
11700
|
+
include Aws::Structure
|
11701
|
+
end
|
11702
|
+
|
11703
|
+
# @!attribute [rw] node_details
|
11704
|
+
# The details of the instance.
|
11705
|
+
# @return [Types::ClusterNodeDetails]
|
11706
|
+
#
|
11707
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNodeResponse AWS API Documentation
|
11708
|
+
#
|
11709
|
+
class DescribeClusterNodeResponse < Struct.new(
|
11710
|
+
:node_details)
|
11711
|
+
SENSITIVE = []
|
11712
|
+
include Aws::Structure
|
11713
|
+
end
|
11714
|
+
|
11715
|
+
# @!attribute [rw] cluster_name
|
11716
|
+
# The string name or the Amazon Resource Name (ARN) of the SageMaker
|
11717
|
+
# HyperPod cluster.
|
11718
|
+
# @return [String]
|
11719
|
+
#
|
11720
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterRequest AWS API Documentation
|
11721
|
+
#
|
11722
|
+
class DescribeClusterRequest < Struct.new(
|
11723
|
+
:cluster_name)
|
11724
|
+
SENSITIVE = []
|
11725
|
+
include Aws::Structure
|
11726
|
+
end
|
11727
|
+
|
11728
|
+
# @!attribute [rw] cluster_arn
|
11729
|
+
# The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster.
|
11730
|
+
# @return [String]
|
11731
|
+
#
|
11732
|
+
# @!attribute [rw] cluster_name
|
11733
|
+
# The name of the SageMaker HyperPod cluster.
|
11734
|
+
# @return [String]
|
11735
|
+
#
|
11736
|
+
# @!attribute [rw] cluster_status
|
11737
|
+
# The status of the SageMaker HyperPod cluster.
|
11738
|
+
# @return [String]
|
11739
|
+
#
|
11740
|
+
# @!attribute [rw] creation_time
|
11741
|
+
# The time when the SageMaker Cluster is created.
|
11742
|
+
# @return [Time]
|
11743
|
+
#
|
11744
|
+
# @!attribute [rw] failure_message
|
11745
|
+
# The failure message of the SageMaker HyperPod cluster.
|
11746
|
+
# @return [String]
|
11747
|
+
#
|
11748
|
+
# @!attribute [rw] instance_groups
|
11749
|
+
# The instance groups of the SageMaker HyperPod cluster.
|
11750
|
+
# @return [Array<Types::ClusterInstanceGroupDetails>]
|
11751
|
+
#
|
11752
|
+
# @!attribute [rw] vpc_config
|
11753
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
11754
|
+
# jobs, hosted models, and compute resources have access to. You can
|
11755
|
+
# control access to and from your resources by configuring a VPC. For
|
11756
|
+
# more information, see [Give SageMaker Access to Resources in your
|
11757
|
+
# Amazon VPC][1].
|
11758
|
+
#
|
11759
|
+
#
|
11760
|
+
#
|
11761
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
11762
|
+
# @return [Types::VpcConfig]
|
11763
|
+
#
|
11764
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterResponse AWS API Documentation
|
11765
|
+
#
|
11766
|
+
class DescribeClusterResponse < Struct.new(
|
11767
|
+
:cluster_arn,
|
11768
|
+
:cluster_name,
|
11769
|
+
:cluster_status,
|
11770
|
+
:creation_time,
|
11771
|
+
:failure_message,
|
11772
|
+
:instance_groups,
|
11773
|
+
:vpc_config)
|
11774
|
+
SENSITIVE = []
|
11775
|
+
include Aws::Structure
|
11776
|
+
end
|
11777
|
+
|
11206
11778
|
# @!attribute [rw] code_repository_name
|
11207
11779
|
# The name of the Git repository to describe.
|
11208
11780
|
# @return [String]
|
@@ -11765,8 +12337,7 @@ module Aws::SageMaker
|
|
11765
12337
|
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
11766
12338
|
# Amazon SageMaker, which allows direct internet access
|
11767
12339
|
#
|
11768
|
-
# * `VpcOnly` - All
|
11769
|
-
# subnets
|
12340
|
+
# * `VpcOnly` - All traffic is through the specified VPC and subnets
|
11770
12341
|
# @return [String]
|
11771
12342
|
#
|
11772
12343
|
# @!attribute [rw] home_efs_file_system_kms_key_id
|
@@ -11774,7 +12345,7 @@ module Aws::SageMaker
|
|
11774
12345
|
# @return [String]
|
11775
12346
|
#
|
11776
12347
|
# @!attribute [rw] subnet_ids
|
11777
|
-
# The VPC subnets that
|
12348
|
+
# The VPC subnets that the domain uses for communication.
|
11778
12349
|
# @return [Array<String>]
|
11779
12350
|
#
|
11780
12351
|
# @!attribute [rw] url
|
@@ -11782,8 +12353,8 @@ module Aws::SageMaker
|
|
11782
12353
|
# @return [String]
|
11783
12354
|
#
|
11784
12355
|
# @!attribute [rw] vpc_id
|
11785
|
-
# The ID of the Amazon Virtual Private Cloud (VPC) that
|
11786
|
-
# for communication.
|
12356
|
+
# The ID of the Amazon Virtual Private Cloud (VPC) that the domain
|
12357
|
+
# uses for communication.
|
11787
12358
|
# @return [String]
|
11788
12359
|
#
|
11789
12360
|
# @!attribute [rw] kms_key_id
|
@@ -12083,6 +12654,29 @@ module Aws::SageMaker
|
|
12083
12654
|
# replicated from the model specified on `ProductionVariants`.
|
12084
12655
|
# @return [Array<Types::ProductionVariant>]
|
12085
12656
|
#
|
12657
|
+
# @!attribute [rw] execution_role_arn
|
12658
|
+
# The Amazon Resource Name (ARN) of the IAM role that you assigned to
|
12659
|
+
# the endpoint configuration.
|
12660
|
+
# @return [String]
|
12661
|
+
#
|
12662
|
+
# @!attribute [rw] vpc_config
|
12663
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
12664
|
+
# jobs, hosted models, and compute resources have access to. You can
|
12665
|
+
# control access to and from your resources by configuring a VPC. For
|
12666
|
+
# more information, see [Give SageMaker Access to Resources in your
|
12667
|
+
# Amazon VPC][1].
|
12668
|
+
#
|
12669
|
+
#
|
12670
|
+
#
|
12671
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
12672
|
+
# @return [Types::VpcConfig]
|
12673
|
+
#
|
12674
|
+
# @!attribute [rw] enable_network_isolation
|
12675
|
+
# Indicates whether all model containers deployed to the endpoint are
|
12676
|
+
# isolated. If they are, no inbound or outbound network calls can be
|
12677
|
+
# made to or from the model containers.
|
12678
|
+
# @return [Boolean]
|
12679
|
+
#
|
12086
12680
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointConfigOutput AWS API Documentation
|
12087
12681
|
#
|
12088
12682
|
class DescribeEndpointConfigOutput < Struct.new(
|
@@ -12094,7 +12688,10 @@ module Aws::SageMaker
|
|
12094
12688
|
:creation_time,
|
12095
12689
|
:async_inference_config,
|
12096
12690
|
:explainer_config,
|
12097
|
-
:shadow_production_variants
|
12691
|
+
:shadow_production_variants,
|
12692
|
+
:execution_role_arn,
|
12693
|
+
:vpc_config,
|
12694
|
+
:enable_network_isolation)
|
12098
12695
|
SENSITIVE = []
|
12099
12696
|
include Aws::Structure
|
12100
12697
|
end
|
@@ -13204,6 +13801,85 @@ module Aws::SageMaker
|
|
13204
13801
|
include Aws::Structure
|
13205
13802
|
end
|
13206
13803
|
|
13804
|
+
# @!attribute [rw] inference_component_name
|
13805
|
+
# The name of the inference component.
|
13806
|
+
# @return [String]
|
13807
|
+
#
|
13808
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceComponentInput AWS API Documentation
|
13809
|
+
#
|
13810
|
+
class DescribeInferenceComponentInput < Struct.new(
|
13811
|
+
:inference_component_name)
|
13812
|
+
SENSITIVE = []
|
13813
|
+
include Aws::Structure
|
13814
|
+
end
|
13815
|
+
|
13816
|
+
# @!attribute [rw] inference_component_name
|
13817
|
+
# The name of the inference component.
|
13818
|
+
# @return [String]
|
13819
|
+
#
|
13820
|
+
# @!attribute [rw] inference_component_arn
|
13821
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
13822
|
+
# @return [String]
|
13823
|
+
#
|
13824
|
+
# @!attribute [rw] endpoint_name
|
13825
|
+
# The name of the endpoint that hosts the inference component.
|
13826
|
+
# @return [String]
|
13827
|
+
#
|
13828
|
+
# @!attribute [rw] endpoint_arn
|
13829
|
+
# The Amazon Resource Name (ARN) of the endpoint that hosts the
|
13830
|
+
# inference component.
|
13831
|
+
# @return [String]
|
13832
|
+
#
|
13833
|
+
# @!attribute [rw] variant_name
|
13834
|
+
# The name of the production variant that hosts the inference
|
13835
|
+
# component.
|
13836
|
+
# @return [String]
|
13837
|
+
#
|
13838
|
+
# @!attribute [rw] failure_reason
|
13839
|
+
# If the inference component status is `Failed`, the reason for the
|
13840
|
+
# failure.
|
13841
|
+
# @return [String]
|
13842
|
+
#
|
13843
|
+
# @!attribute [rw] specification
|
13844
|
+
# Details about the resources that are deployed with this inference
|
13845
|
+
# component.
|
13846
|
+
# @return [Types::InferenceComponentSpecificationSummary]
|
13847
|
+
#
|
13848
|
+
# @!attribute [rw] runtime_config
|
13849
|
+
# Details about the runtime settings for the model that is deployed
|
13850
|
+
# with the inference component.
|
13851
|
+
# @return [Types::InferenceComponentRuntimeConfigSummary]
|
13852
|
+
#
|
13853
|
+
# @!attribute [rw] creation_time
|
13854
|
+
# The time when the inference component was created.
|
13855
|
+
# @return [Time]
|
13856
|
+
#
|
13857
|
+
# @!attribute [rw] last_modified_time
|
13858
|
+
# The time when the inference component was last updated.
|
13859
|
+
# @return [Time]
|
13860
|
+
#
|
13861
|
+
# @!attribute [rw] inference_component_status
|
13862
|
+
# The status of the inference component.
|
13863
|
+
# @return [String]
|
13864
|
+
#
|
13865
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeInferenceComponentOutput AWS API Documentation
|
13866
|
+
#
|
13867
|
+
class DescribeInferenceComponentOutput < Struct.new(
|
13868
|
+
:inference_component_name,
|
13869
|
+
:inference_component_arn,
|
13870
|
+
:endpoint_name,
|
13871
|
+
:endpoint_arn,
|
13872
|
+
:variant_name,
|
13873
|
+
:failure_reason,
|
13874
|
+
:specification,
|
13875
|
+
:runtime_config,
|
13876
|
+
:creation_time,
|
13877
|
+
:last_modified_time,
|
13878
|
+
:inference_component_status)
|
13879
|
+
SENSITIVE = []
|
13880
|
+
include Aws::Structure
|
13881
|
+
end
|
13882
|
+
|
13207
13883
|
# @!attribute [rw] name
|
13208
13884
|
# The name of the inference experiment to describe.
|
13209
13885
|
# @return [String]
|
@@ -15209,6 +15885,20 @@ module Aws::SageMaker
|
|
15209
15885
|
# A collection of space settings.
|
15210
15886
|
# @return [Types::SpaceSettings]
|
15211
15887
|
#
|
15888
|
+
# @!attribute [rw] url
|
15889
|
+
# Returns the URL of the space. If the space is created with Amazon
|
15890
|
+
# Web Services IAM Identity Center (Successor to Amazon Web Services
|
15891
|
+
# Single Sign-On) authentication, users can navigate to the URL after
|
15892
|
+
# appending the respective redirect parameter for the application type
|
15893
|
+
# to be federated through Amazon Web Services IAM Identity Center.
|
15894
|
+
#
|
15895
|
+
# The following application types are supported:
|
15896
|
+
#
|
15897
|
+
# * Studio Classic: `&redirect=JupyterServer`
|
15898
|
+
#
|
15899
|
+
# * JupyterLab: `&redirect=JupyterLab`
|
15900
|
+
# @return [String]
|
15901
|
+
#
|
15212
15902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeSpaceResponse AWS API Documentation
|
15213
15903
|
#
|
15214
15904
|
class DescribeSpaceResponse < Struct.new(
|
@@ -15220,13 +15910,15 @@ module Aws::SageMaker
|
|
15220
15910
|
:last_modified_time,
|
15221
15911
|
:creation_time,
|
15222
15912
|
:failure_reason,
|
15223
|
-
:space_settings
|
15913
|
+
:space_settings,
|
15914
|
+
:url)
|
15224
15915
|
SENSITIVE = []
|
15225
15916
|
include Aws::Structure
|
15226
15917
|
end
|
15227
15918
|
|
15228
15919
|
# @!attribute [rw] studio_lifecycle_config_name
|
15229
|
-
# The name of the Studio Lifecycle Configuration to
|
15920
|
+
# The name of the Amazon SageMaker Studio Lifecycle Configuration to
|
15921
|
+
# describe.
|
15230
15922
|
# @return [String]
|
15231
15923
|
#
|
15232
15924
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeStudioLifecycleConfigRequest AWS API Documentation
|
@@ -15242,20 +15934,23 @@ module Aws::SageMaker
|
|
15242
15934
|
# @return [String]
|
15243
15935
|
#
|
15244
15936
|
# @!attribute [rw] studio_lifecycle_config_name
|
15245
|
-
# The name of the Studio Lifecycle Configuration that
|
15937
|
+
# The name of the Amazon SageMaker Studio Lifecycle Configuration that
|
15938
|
+
# is described.
|
15246
15939
|
# @return [String]
|
15247
15940
|
#
|
15248
15941
|
# @!attribute [rw] creation_time
|
15249
|
-
# The creation time of the Studio Lifecycle
|
15942
|
+
# The creation time of the Amazon SageMaker Studio Lifecycle
|
15943
|
+
# Configuration.
|
15250
15944
|
# @return [Time]
|
15251
15945
|
#
|
15252
15946
|
# @!attribute [rw] last_modified_time
|
15253
|
-
# This value is equivalent to CreationTime because
|
15254
|
-
# Configurations are immutable.
|
15947
|
+
# This value is equivalent to CreationTime because Amazon SageMaker
|
15948
|
+
# Studio Lifecycle Configurations are immutable.
|
15255
15949
|
# @return [Time]
|
15256
15950
|
#
|
15257
15951
|
# @!attribute [rw] studio_lifecycle_config_content
|
15258
|
-
# The content of your Studio Lifecycle Configuration
|
15952
|
+
# The content of your Amazon SageMaker Studio Lifecycle Configuration
|
15953
|
+
# script.
|
15259
15954
|
# @return [String]
|
15260
15955
|
#
|
15261
15956
|
# @!attribute [rw] studio_lifecycle_config_app_type
|
@@ -15641,6 +16336,11 @@ module Aws::SageMaker
|
|
15641
16336
|
# The status of the warm pool associated with the training job.
|
15642
16337
|
# @return [Types::WarmPoolStatus]
|
15643
16338
|
#
|
16339
|
+
# @!attribute [rw] infra_check_config
|
16340
|
+
# Contains information about the infrastructure health check
|
16341
|
+
# configuration for the training job.
|
16342
|
+
# @return [Types::InfraCheckConfig]
|
16343
|
+
#
|
15644
16344
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeTrainingJobResponse AWS API Documentation
|
15645
16345
|
#
|
15646
16346
|
class DescribeTrainingJobResponse < Struct.new(
|
@@ -15684,7 +16384,8 @@ module Aws::SageMaker
|
|
15684
16384
|
:profiling_status,
|
15685
16385
|
:retry_strategy,
|
15686
16386
|
:environment,
|
15687
|
-
:warm_pool_status
|
16387
|
+
:warm_pool_status,
|
16388
|
+
:infra_check_config)
|
15688
16389
|
SENSITIVE = []
|
15689
16390
|
include Aws::Structure
|
15690
16391
|
end
|
@@ -21587,6 +22288,294 @@ module Aws::SageMaker
|
|
21587
22288
|
include Aws::Structure
|
21588
22289
|
end
|
21589
22290
|
|
22291
|
+
# Defines the compute resources to allocate to run a model that you
|
22292
|
+
# assign to an inference component. These resources include CPU cores,
|
22293
|
+
# accelerators, and memory.
|
22294
|
+
#
|
22295
|
+
# @!attribute [rw] number_of_cpu_cores_required
|
22296
|
+
# The number of CPU cores to allocate to run a model that you assign
|
22297
|
+
# to an inference component.
|
22298
|
+
# @return [Float]
|
22299
|
+
#
|
22300
|
+
# @!attribute [rw] number_of_accelerator_devices_required
|
22301
|
+
# The number of accelerators to allocate to run a model that you
|
22302
|
+
# assign to an inference component. Accelerators include GPUs and
|
22303
|
+
# Amazon Web Services Inferentia.
|
22304
|
+
# @return [Float]
|
22305
|
+
#
|
22306
|
+
# @!attribute [rw] min_memory_required_in_mb
|
22307
|
+
# The minimum MB of memory to allocate to run a model that you assign
|
22308
|
+
# to an inference component.
|
22309
|
+
# @return [Integer]
|
22310
|
+
#
|
22311
|
+
# @!attribute [rw] max_memory_required_in_mb
|
22312
|
+
# The maximum MB of memory to allocate to run a model that you assign
|
22313
|
+
# to an inference component.
|
22314
|
+
# @return [Integer]
|
22315
|
+
#
|
22316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentComputeResourceRequirements AWS API Documentation
|
22317
|
+
#
|
22318
|
+
class InferenceComponentComputeResourceRequirements < Struct.new(
|
22319
|
+
:number_of_cpu_cores_required,
|
22320
|
+
:number_of_accelerator_devices_required,
|
22321
|
+
:min_memory_required_in_mb,
|
22322
|
+
:max_memory_required_in_mb)
|
22323
|
+
SENSITIVE = []
|
22324
|
+
include Aws::Structure
|
22325
|
+
end
|
22326
|
+
|
22327
|
+
# Defines a container that provides the runtime environment for a model
|
22328
|
+
# that you deploy with an inference component.
|
22329
|
+
#
|
22330
|
+
# @!attribute [rw] image
|
22331
|
+
# The Amazon Elastic Container Registry (Amazon ECR) path where the
|
22332
|
+
# Docker image for the model is stored.
|
22333
|
+
# @return [String]
|
22334
|
+
#
|
22335
|
+
# @!attribute [rw] artifact_url
|
22336
|
+
# The Amazon S3 path where the model artifacts, which result from
|
22337
|
+
# model training, are stored. This path must point to a single gzip
|
22338
|
+
# compressed tar archive (.tar.gz suffix).
|
22339
|
+
# @return [String]
|
22340
|
+
#
|
22341
|
+
# @!attribute [rw] environment
|
22342
|
+
# The environment variables to set in the Docker container. Each key
|
22343
|
+
# and value in the Environment string-to-string map can have length of
|
22344
|
+
# up to 1024. We support up to 16 entries in the map.
|
22345
|
+
# @return [Hash<String,String>]
|
22346
|
+
#
|
22347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentContainerSpecification AWS API Documentation
|
22348
|
+
#
|
22349
|
+
class InferenceComponentContainerSpecification < Struct.new(
|
22350
|
+
:image,
|
22351
|
+
:artifact_url,
|
22352
|
+
:environment)
|
22353
|
+
SENSITIVE = []
|
22354
|
+
include Aws::Structure
|
22355
|
+
end
|
22356
|
+
|
22357
|
+
# Details about the resources that are deployed with this inference
|
22358
|
+
# component.
|
22359
|
+
#
|
22360
|
+
# @!attribute [rw] deployed_image
|
22361
|
+
# Gets the Amazon EC2 Container Registry path of the docker image of
|
22362
|
+
# the model that is hosted in this [ProductionVariant][1].
|
22363
|
+
#
|
22364
|
+
# If you used the `registry/repository[:tag]` form to specify the
|
22365
|
+
# image path of the primary container when you created the model
|
22366
|
+
# hosted in this `ProductionVariant`, the path resolves to a path of
|
22367
|
+
# the form `registry/repository[@digest]`. A digest is a hash value
|
22368
|
+
# that identifies a specific version of an image. For information
|
22369
|
+
# about Amazon ECR paths, see [Pulling an Image][2] in the *Amazon ECR
|
22370
|
+
# User Guide*.
|
22371
|
+
#
|
22372
|
+
#
|
22373
|
+
#
|
22374
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ProductionVariant.html
|
22375
|
+
# [2]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/docker-pull-ecr-image.html
|
22376
|
+
# @return [Types::DeployedImage]
|
22377
|
+
#
|
22378
|
+
# @!attribute [rw] artifact_url
|
22379
|
+
# The Amazon S3 path where the model artifacts are stored.
|
22380
|
+
# @return [String]
|
22381
|
+
#
|
22382
|
+
# @!attribute [rw] environment
|
22383
|
+
# The environment variables to set in the Docker container.
|
22384
|
+
# @return [Hash<String,String>]
|
22385
|
+
#
|
22386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentContainerSpecificationSummary AWS API Documentation
|
22387
|
+
#
|
22388
|
+
class InferenceComponentContainerSpecificationSummary < Struct.new(
|
22389
|
+
:deployed_image,
|
22390
|
+
:artifact_url,
|
22391
|
+
:environment)
|
22392
|
+
SENSITIVE = []
|
22393
|
+
include Aws::Structure
|
22394
|
+
end
|
22395
|
+
|
22396
|
+
# Runtime settings for a model that is deployed with an inference
|
22397
|
+
# component.
|
22398
|
+
#
|
22399
|
+
# @!attribute [rw] copy_count
|
22400
|
+
# The number of runtime copies of the model container to deploy with
|
22401
|
+
# the inference component. Each copy can serve inference requests.
|
22402
|
+
# @return [Integer]
|
22403
|
+
#
|
22404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentRuntimeConfig AWS API Documentation
|
22405
|
+
#
|
22406
|
+
class InferenceComponentRuntimeConfig < Struct.new(
|
22407
|
+
:copy_count)
|
22408
|
+
SENSITIVE = []
|
22409
|
+
include Aws::Structure
|
22410
|
+
end
|
22411
|
+
|
22412
|
+
# Details about the runtime settings for the model that is deployed with
|
22413
|
+
# the inference component.
|
22414
|
+
#
|
22415
|
+
# @!attribute [rw] desired_copy_count
|
22416
|
+
# The number of runtime copies of the model container that you
|
22417
|
+
# requested to deploy with the inference component.
|
22418
|
+
# @return [Integer]
|
22419
|
+
#
|
22420
|
+
# @!attribute [rw] current_copy_count
|
22421
|
+
# The number of runtime copies of the model container that are
|
22422
|
+
# currently deployed.
|
22423
|
+
# @return [Integer]
|
22424
|
+
#
|
22425
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentRuntimeConfigSummary AWS API Documentation
|
22426
|
+
#
|
22427
|
+
class InferenceComponentRuntimeConfigSummary < Struct.new(
|
22428
|
+
:desired_copy_count,
|
22429
|
+
:current_copy_count)
|
22430
|
+
SENSITIVE = []
|
22431
|
+
include Aws::Structure
|
22432
|
+
end
|
22433
|
+
|
22434
|
+
# Details about the resources to deploy with this inference component,
|
22435
|
+
# including the model, container, and compute resources.
|
22436
|
+
#
|
22437
|
+
# @!attribute [rw] model_name
|
22438
|
+
# The name of an existing SageMaker model object in your account that
|
22439
|
+
# you want to deploy with the inference component.
|
22440
|
+
# @return [String]
|
22441
|
+
#
|
22442
|
+
# @!attribute [rw] container
|
22443
|
+
# Defines a container that provides the runtime environment for a
|
22444
|
+
# model that you deploy with an inference component.
|
22445
|
+
# @return [Types::InferenceComponentContainerSpecification]
|
22446
|
+
#
|
22447
|
+
# @!attribute [rw] startup_parameters
|
22448
|
+
# Settings that take effect while the model container starts up.
|
22449
|
+
# @return [Types::InferenceComponentStartupParameters]
|
22450
|
+
#
|
22451
|
+
# @!attribute [rw] compute_resource_requirements
|
22452
|
+
# The compute resources allocated to run the model assigned to the
|
22453
|
+
# inference component.
|
22454
|
+
# @return [Types::InferenceComponentComputeResourceRequirements]
|
22455
|
+
#
|
22456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentSpecification AWS API Documentation
|
22457
|
+
#
|
22458
|
+
class InferenceComponentSpecification < Struct.new(
|
22459
|
+
:model_name,
|
22460
|
+
:container,
|
22461
|
+
:startup_parameters,
|
22462
|
+
:compute_resource_requirements)
|
22463
|
+
SENSITIVE = []
|
22464
|
+
include Aws::Structure
|
22465
|
+
end
|
22466
|
+
|
22467
|
+
# Details about the resources that are deployed with this inference
|
22468
|
+
# component.
|
22469
|
+
#
|
22470
|
+
# @!attribute [rw] model_name
|
22471
|
+
# The name of the SageMaker model object that is deployed with the
|
22472
|
+
# inference component.
|
22473
|
+
# @return [String]
|
22474
|
+
#
|
22475
|
+
# @!attribute [rw] container
|
22476
|
+
# Details about the container that provides the runtime environment
|
22477
|
+
# for the model that is deployed with the inference component.
|
22478
|
+
# @return [Types::InferenceComponentContainerSpecificationSummary]
|
22479
|
+
#
|
22480
|
+
# @!attribute [rw] startup_parameters
|
22481
|
+
# Settings that take effect while the model container starts up.
|
22482
|
+
# @return [Types::InferenceComponentStartupParameters]
|
22483
|
+
#
|
22484
|
+
# @!attribute [rw] compute_resource_requirements
|
22485
|
+
# The compute resources allocated to run the model assigned to the
|
22486
|
+
# inference component.
|
22487
|
+
# @return [Types::InferenceComponentComputeResourceRequirements]
|
22488
|
+
#
|
22489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentSpecificationSummary AWS API Documentation
|
22490
|
+
#
|
22491
|
+
class InferenceComponentSpecificationSummary < Struct.new(
|
22492
|
+
:model_name,
|
22493
|
+
:container,
|
22494
|
+
:startup_parameters,
|
22495
|
+
:compute_resource_requirements)
|
22496
|
+
SENSITIVE = []
|
22497
|
+
include Aws::Structure
|
22498
|
+
end
|
22499
|
+
|
22500
|
+
# Settings that take effect while the model container starts up.
|
22501
|
+
#
|
22502
|
+
# @!attribute [rw] model_data_download_timeout_in_seconds
|
22503
|
+
# The timeout value, in seconds, to download and extract the model
|
22504
|
+
# that you want to host from Amazon S3 to the individual inference
|
22505
|
+
# instance associated with this inference component.
|
22506
|
+
# @return [Integer]
|
22507
|
+
#
|
22508
|
+
# @!attribute [rw] container_startup_health_check_timeout_in_seconds
|
22509
|
+
# The timeout value, in seconds, for your inference container to pass
|
22510
|
+
# health check by Amazon S3 Hosting. For more information about health
|
22511
|
+
# check, see [How Your Container Should Respond to Health Check (Ping)
|
22512
|
+
# Requests][1].
|
22513
|
+
#
|
22514
|
+
#
|
22515
|
+
#
|
22516
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-inference-code.html#your-algorithms-inference-algo-ping-requests
|
22517
|
+
# @return [Integer]
|
22518
|
+
#
|
22519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentStartupParameters AWS API Documentation
|
22520
|
+
#
|
22521
|
+
class InferenceComponentStartupParameters < Struct.new(
|
22522
|
+
:model_data_download_timeout_in_seconds,
|
22523
|
+
:container_startup_health_check_timeout_in_seconds)
|
22524
|
+
SENSITIVE = []
|
22525
|
+
include Aws::Structure
|
22526
|
+
end
|
22527
|
+
|
22528
|
+
# A summary of the properties of an inference component.
|
22529
|
+
#
|
22530
|
+
# @!attribute [rw] creation_time
|
22531
|
+
# The time when the inference component was created.
|
22532
|
+
# @return [Time]
|
22533
|
+
#
|
22534
|
+
# @!attribute [rw] inference_component_arn
|
22535
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
22536
|
+
# @return [String]
|
22537
|
+
#
|
22538
|
+
# @!attribute [rw] inference_component_name
|
22539
|
+
# The name of the inference component.
|
22540
|
+
# @return [String]
|
22541
|
+
#
|
22542
|
+
# @!attribute [rw] endpoint_arn
|
22543
|
+
# The Amazon Resource Name (ARN) of the endpoint that hosts the
|
22544
|
+
# inference component.
|
22545
|
+
# @return [String]
|
22546
|
+
#
|
22547
|
+
# @!attribute [rw] endpoint_name
|
22548
|
+
# The name of the endpoint that hosts the inference component.
|
22549
|
+
# @return [String]
|
22550
|
+
#
|
22551
|
+
# @!attribute [rw] variant_name
|
22552
|
+
# The name of the production variant that hosts the inference
|
22553
|
+
# component.
|
22554
|
+
# @return [String]
|
22555
|
+
#
|
22556
|
+
# @!attribute [rw] inference_component_status
|
22557
|
+
# The status of the inference component.
|
22558
|
+
# @return [String]
|
22559
|
+
#
|
22560
|
+
# @!attribute [rw] last_modified_time
|
22561
|
+
# The time when the inference component was last updated.
|
22562
|
+
# @return [Time]
|
22563
|
+
#
|
22564
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceComponentSummary AWS API Documentation
|
22565
|
+
#
|
22566
|
+
class InferenceComponentSummary < Struct.new(
|
22567
|
+
:creation_time,
|
22568
|
+
:inference_component_arn,
|
22569
|
+
:inference_component_name,
|
22570
|
+
:endpoint_arn,
|
22571
|
+
:endpoint_name,
|
22572
|
+
:variant_name,
|
22573
|
+
:inference_component_status,
|
22574
|
+
:last_modified_time)
|
22575
|
+
SENSITIVE = []
|
22576
|
+
include Aws::Structure
|
22577
|
+
end
|
22578
|
+
|
21590
22579
|
# Specifies details about how containers in a multi-container endpoint
|
21591
22580
|
# are run.
|
21592
22581
|
#
|
@@ -21943,6 +22932,22 @@ module Aws::SageMaker
|
|
21943
22932
|
include Aws::Structure
|
21944
22933
|
end
|
21945
22934
|
|
22935
|
+
# Configuration information for the infrastructure health check of a
|
22936
|
+
# training job. A SageMaker-provided health check tests the health of
|
22937
|
+
# instance hardware and cluster network connectivity.
|
22938
|
+
#
|
22939
|
+
# @!attribute [rw] enable_infra_check
|
22940
|
+
# Enables an infrastructure health check.
|
22941
|
+
# @return [Boolean]
|
22942
|
+
#
|
22943
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InfraCheckConfig AWS API Documentation
|
22944
|
+
#
|
22945
|
+
class InfraCheckConfig < Struct.new(
|
22946
|
+
:enable_infra_check)
|
22947
|
+
SENSITIVE = []
|
22948
|
+
include Aws::Structure
|
22949
|
+
end
|
22950
|
+
|
21946
22951
|
# Contains information about the location of input model artifacts, the
|
21947
22952
|
# name and shape of the expected data inputs, and the framework in which
|
21948
22953
|
# the model was trained.
|
@@ -22761,16 +23766,15 @@ module Aws::SageMaker
|
|
22761
23766
|
# @return [String]
|
22762
23767
|
#
|
22763
23768
|
# @!attribute [rw] vpc_config
|
22764
|
-
# Specifies
|
22765
|
-
#
|
22766
|
-
#
|
22767
|
-
#
|
22768
|
-
#
|
23769
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
23770
|
+
# jobs, hosted models, and compute resources have access to. You can
|
23771
|
+
# control access to and from your resources by configuring a VPC. For
|
23772
|
+
# more information, see [Give SageMaker Access to Resources in your
|
23773
|
+
# Amazon VPC][1].
|
22769
23774
|
#
|
22770
23775
|
#
|
22771
23776
|
#
|
22772
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
22773
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
23777
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
22774
23778
|
# @return [Types::VpcConfig]
|
22775
23779
|
#
|
22776
23780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/LabelingJobResourceConfig AWS API Documentation
|
@@ -23650,6 +24654,203 @@ module Aws::SageMaker
|
|
23650
24654
|
include Aws::Structure
|
23651
24655
|
end
|
23652
24656
|
|
24657
|
+
# @!attribute [rw] cluster_name
|
24658
|
+
# The string name or the Amazon Resource Name (ARN) of the SageMaker
|
24659
|
+
# HyperPod cluster in which you want to retrieve the list of nodes.
|
24660
|
+
# @return [String]
|
24661
|
+
#
|
24662
|
+
# @!attribute [rw] creation_time_after
|
24663
|
+
# A filter that returns nodes in a SageMaker HyperPod cluster created
|
24664
|
+
# after the specified time. Timestamps are formatted according to the
|
24665
|
+
# ISO 8601 standard.
|
24666
|
+
#
|
24667
|
+
# Acceptable formats include:
|
24668
|
+
#
|
24669
|
+
# * `YYYY-MM-DDThh:mm:ss.sssTZD` (UTC), for example,
|
24670
|
+
# `2014-10-01T20:30:00.000Z`
|
24671
|
+
#
|
24672
|
+
# * `YYYY-MM-DDThh:mm:ss.sssTZD` (with offset), for example,
|
24673
|
+
# `2014-10-01T12:30:00.000-08:00`
|
24674
|
+
#
|
24675
|
+
# * `YYYY-MM-DD`, for example, `2014-10-01`
|
24676
|
+
#
|
24677
|
+
# * Unix time in seconds, for example, `1412195400`. This is also
|
24678
|
+
# referred to as Unix Epoch time and represents the number of
|
24679
|
+
# seconds since midnight, January 1, 1970 UTC.
|
24680
|
+
#
|
24681
|
+
# For more information about the timestamp format, see [Timestamp][1]
|
24682
|
+
# in the *Amazon Web Services Command Line Interface User Guide*.
|
24683
|
+
#
|
24684
|
+
#
|
24685
|
+
#
|
24686
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
24687
|
+
# @return [Time]
|
24688
|
+
#
|
24689
|
+
# @!attribute [rw] creation_time_before
|
24690
|
+
# A filter that returns nodes in a SageMaker HyperPod cluster created
|
24691
|
+
# before the specified time. The acceptable formats are the same as
|
24692
|
+
# the timestamp formats for `CreationTimeAfter`. For more information
|
24693
|
+
# about the timestamp format, see [Timestamp][1] in the *Amazon Web
|
24694
|
+
# Services Command Line Interface User Guide*.
|
24695
|
+
#
|
24696
|
+
#
|
24697
|
+
#
|
24698
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
24699
|
+
# @return [Time]
|
24700
|
+
#
|
24701
|
+
# @!attribute [rw] instance_group_name_contains
|
24702
|
+
# A filter that returns the instance groups whose name contain a
|
24703
|
+
# specified string.
|
24704
|
+
# @return [String]
|
24705
|
+
#
|
24706
|
+
# @!attribute [rw] max_results
|
24707
|
+
# The maximum number of nodes to return in the response.
|
24708
|
+
# @return [Integer]
|
24709
|
+
#
|
24710
|
+
# @!attribute [rw] next_token
|
24711
|
+
# If the result of the previous `ListClusterNodes` request was
|
24712
|
+
# truncated, the response includes a `NextToken`. To retrieve the next
|
24713
|
+
# set of cluster nodes, use the token in the next request.
|
24714
|
+
# @return [String]
|
24715
|
+
#
|
24716
|
+
# @!attribute [rw] sort_by
|
24717
|
+
# The field by which to sort results. The default value is
|
24718
|
+
# `CREATION_TIME`.
|
24719
|
+
# @return [String]
|
24720
|
+
#
|
24721
|
+
# @!attribute [rw] sort_order
|
24722
|
+
# The sort order for results. The default value is `Ascending`.
|
24723
|
+
# @return [String]
|
24724
|
+
#
|
24725
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusterNodesRequest AWS API Documentation
|
24726
|
+
#
|
24727
|
+
class ListClusterNodesRequest < Struct.new(
|
24728
|
+
:cluster_name,
|
24729
|
+
:creation_time_after,
|
24730
|
+
:creation_time_before,
|
24731
|
+
:instance_group_name_contains,
|
24732
|
+
:max_results,
|
24733
|
+
:next_token,
|
24734
|
+
:sort_by,
|
24735
|
+
:sort_order)
|
24736
|
+
SENSITIVE = []
|
24737
|
+
include Aws::Structure
|
24738
|
+
end
|
24739
|
+
|
24740
|
+
# @!attribute [rw] next_token
|
24741
|
+
# The next token specified for listing instances in a SageMaker
|
24742
|
+
# HyperPod cluster.
|
24743
|
+
# @return [String]
|
24744
|
+
#
|
24745
|
+
# @!attribute [rw] cluster_node_summaries
|
24746
|
+
# The summaries of listed instances in a SageMaker HyperPod cluster
|
24747
|
+
# @return [Array<Types::ClusterNodeSummary>]
|
24748
|
+
#
|
24749
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClusterNodesResponse AWS API Documentation
|
24750
|
+
#
|
24751
|
+
class ListClusterNodesResponse < Struct.new(
|
24752
|
+
:next_token,
|
24753
|
+
:cluster_node_summaries)
|
24754
|
+
SENSITIVE = []
|
24755
|
+
include Aws::Structure
|
24756
|
+
end
|
24757
|
+
|
24758
|
+
# @!attribute [rw] creation_time_after
|
24759
|
+
# Set a start time for the time range during which you want to list
|
24760
|
+
# SageMaker HyperPod clusters. Timestamps are formatted according to
|
24761
|
+
# the ISO 8601 standard.
|
24762
|
+
#
|
24763
|
+
# Acceptable formats include:
|
24764
|
+
#
|
24765
|
+
# * `YYYY-MM-DDThh:mm:ss.sssTZD` (UTC), for example,
|
24766
|
+
# `2014-10-01T20:30:00.000Z`
|
24767
|
+
#
|
24768
|
+
# * `YYYY-MM-DDThh:mm:ss.sssTZD` (with offset), for example,
|
24769
|
+
# `2014-10-01T12:30:00.000-08:00`
|
24770
|
+
#
|
24771
|
+
# * `YYYY-MM-DD`, for example, `2014-10-01`
|
24772
|
+
#
|
24773
|
+
# * Unix time in seconds, for example, `1412195400`. This is also
|
24774
|
+
# referred to as Unix Epoch time and represents the number of
|
24775
|
+
# seconds since midnight, January 1, 1970 UTC.
|
24776
|
+
#
|
24777
|
+
# For more information about the timestamp format, see [Timestamp][1]
|
24778
|
+
# in the *Amazon Web Services Command Line Interface User Guide*.
|
24779
|
+
#
|
24780
|
+
#
|
24781
|
+
#
|
24782
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
24783
|
+
# @return [Time]
|
24784
|
+
#
|
24785
|
+
# @!attribute [rw] creation_time_before
|
24786
|
+
# Set an end time for the time range during which you want to list
|
24787
|
+
# SageMaker HyperPod clusters. A filter that returns nodes in a
|
24788
|
+
# SageMaker HyperPod cluster created before the specified time. The
|
24789
|
+
# acceptable formats are the same as the timestamp formats for
|
24790
|
+
# `CreationTimeAfter`. For more information about the timestamp
|
24791
|
+
# format, see [Timestamp][1] in the *Amazon Web Services Command Line
|
24792
|
+
# Interface User Guide*.
|
24793
|
+
#
|
24794
|
+
#
|
24795
|
+
#
|
24796
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
24797
|
+
# @return [Time]
|
24798
|
+
#
|
24799
|
+
# @!attribute [rw] max_results
|
24800
|
+
# Set the maximum number of SageMaker HyperPod clusters to list.
|
24801
|
+
# @return [Integer]
|
24802
|
+
#
|
24803
|
+
# @!attribute [rw] name_contains
|
24804
|
+
# Set the maximum number of instances to print in the list.
|
24805
|
+
# @return [String]
|
24806
|
+
#
|
24807
|
+
# @!attribute [rw] next_token
|
24808
|
+
# Set the next token to retrieve the list of SageMaker HyperPod
|
24809
|
+
# clusters.
|
24810
|
+
# @return [String]
|
24811
|
+
#
|
24812
|
+
# @!attribute [rw] sort_by
|
24813
|
+
# The field by which to sort results. The default value is
|
24814
|
+
# `CREATION_TIME`.
|
24815
|
+
# @return [String]
|
24816
|
+
#
|
24817
|
+
# @!attribute [rw] sort_order
|
24818
|
+
# The sort order for results. The default value is `Ascending`.
|
24819
|
+
# @return [String]
|
24820
|
+
#
|
24821
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClustersRequest AWS API Documentation
|
24822
|
+
#
|
24823
|
+
class ListClustersRequest < Struct.new(
|
24824
|
+
:creation_time_after,
|
24825
|
+
:creation_time_before,
|
24826
|
+
:max_results,
|
24827
|
+
:name_contains,
|
24828
|
+
:next_token,
|
24829
|
+
:sort_by,
|
24830
|
+
:sort_order)
|
24831
|
+
SENSITIVE = []
|
24832
|
+
include Aws::Structure
|
24833
|
+
end
|
24834
|
+
|
24835
|
+
# @!attribute [rw] next_token
|
24836
|
+
# If the result of the previous `ListClusters` request was truncated,
|
24837
|
+
# the response includes a `NextToken`. To retrieve the next set of
|
24838
|
+
# clusters, use the token in the next request.
|
24839
|
+
# @return [String]
|
24840
|
+
#
|
24841
|
+
# @!attribute [rw] cluster_summaries
|
24842
|
+
# The summaries of listed SageMaker HyperPod clusters.
|
24843
|
+
# @return [Array<Types::ClusterSummary>]
|
24844
|
+
#
|
24845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListClustersResponse AWS API Documentation
|
24846
|
+
#
|
24847
|
+
class ListClustersResponse < Struct.new(
|
24848
|
+
:next_token,
|
24849
|
+
:cluster_summaries)
|
24850
|
+
SENSITIVE = []
|
24851
|
+
include Aws::Structure
|
24852
|
+
end
|
24853
|
+
|
23653
24854
|
# @!attribute [rw] creation_time_after
|
23654
24855
|
# A filter that returns only Git repositories that were created after
|
23655
24856
|
# the specified time.
|
@@ -25174,6 +26375,106 @@ module Aws::SageMaker
|
|
25174
26375
|
include Aws::Structure
|
25175
26376
|
end
|
25176
26377
|
|
26378
|
+
# @!attribute [rw] sort_by
|
26379
|
+
# The field by which to sort the inference components in the response.
|
26380
|
+
# The default is `CreationTime`.
|
26381
|
+
# @return [String]
|
26382
|
+
#
|
26383
|
+
# @!attribute [rw] sort_order
|
26384
|
+
# The sort order for results. The default is `Descending`.
|
26385
|
+
# @return [String]
|
26386
|
+
#
|
26387
|
+
# @!attribute [rw] next_token
|
26388
|
+
# A token that you use to get the next set of results following a
|
26389
|
+
# truncated response. If the response to the previous request was
|
26390
|
+
# truncated, that response provides the value for this token.
|
26391
|
+
# @return [String]
|
26392
|
+
#
|
26393
|
+
# @!attribute [rw] max_results
|
26394
|
+
# The maximum number of inference components to return in the
|
26395
|
+
# response. This value defaults to 10.
|
26396
|
+
# @return [Integer]
|
26397
|
+
#
|
26398
|
+
# @!attribute [rw] name_contains
|
26399
|
+
# Filters the results to only those inference components with a name
|
26400
|
+
# that contains the specified string.
|
26401
|
+
# @return [String]
|
26402
|
+
#
|
26403
|
+
# @!attribute [rw] creation_time_before
|
26404
|
+
# Filters the results to only those inference components that were
|
26405
|
+
# created before the specified time.
|
26406
|
+
# @return [Time]
|
26407
|
+
#
|
26408
|
+
# @!attribute [rw] creation_time_after
|
26409
|
+
# Filters the results to only those inference components that were
|
26410
|
+
# created after the specified time.
|
26411
|
+
# @return [Time]
|
26412
|
+
#
|
26413
|
+
# @!attribute [rw] last_modified_time_before
|
26414
|
+
# Filters the results to only those inference components that were
|
26415
|
+
# updated before the specified time.
|
26416
|
+
# @return [Time]
|
26417
|
+
#
|
26418
|
+
# @!attribute [rw] last_modified_time_after
|
26419
|
+
# Filters the results to only those inference components that were
|
26420
|
+
# updated after the specified time.
|
26421
|
+
# @return [Time]
|
26422
|
+
#
|
26423
|
+
# @!attribute [rw] status_equals
|
26424
|
+
# Filters the results to only those inference components with the
|
26425
|
+
# specified status.
|
26426
|
+
# @return [String]
|
26427
|
+
#
|
26428
|
+
# @!attribute [rw] endpoint_name_equals
|
26429
|
+
# An endpoint name to filter the listed inference components. The
|
26430
|
+
# response includes only those inference components that are hosted at
|
26431
|
+
# the specified endpoint.
|
26432
|
+
# @return [String]
|
26433
|
+
#
|
26434
|
+
# @!attribute [rw] variant_name_equals
|
26435
|
+
# A production variant name to filter the listed inference components.
|
26436
|
+
# The response includes only those inference components that are
|
26437
|
+
# hosted at the specified variant.
|
26438
|
+
# @return [String]
|
26439
|
+
#
|
26440
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceComponentsInput AWS API Documentation
|
26441
|
+
#
|
26442
|
+
class ListInferenceComponentsInput < Struct.new(
|
26443
|
+
:sort_by,
|
26444
|
+
:sort_order,
|
26445
|
+
:next_token,
|
26446
|
+
:max_results,
|
26447
|
+
:name_contains,
|
26448
|
+
:creation_time_before,
|
26449
|
+
:creation_time_after,
|
26450
|
+
:last_modified_time_before,
|
26451
|
+
:last_modified_time_after,
|
26452
|
+
:status_equals,
|
26453
|
+
:endpoint_name_equals,
|
26454
|
+
:variant_name_equals)
|
26455
|
+
SENSITIVE = []
|
26456
|
+
include Aws::Structure
|
26457
|
+
end
|
26458
|
+
|
26459
|
+
# @!attribute [rw] inference_components
|
26460
|
+
# A list of inference components and their properties that matches any
|
26461
|
+
# of the filters you specified in the request.
|
26462
|
+
# @return [Array<Types::InferenceComponentSummary>]
|
26463
|
+
#
|
26464
|
+
# @!attribute [rw] next_token
|
26465
|
+
# The token to use in a subsequent request to get the next set of
|
26466
|
+
# results following a truncated response.
|
26467
|
+
# @return [String]
|
26468
|
+
#
|
26469
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceComponentsOutput AWS API Documentation
|
26470
|
+
#
|
26471
|
+
class ListInferenceComponentsOutput < Struct.new(
|
26472
|
+
:inference_components,
|
26473
|
+
:next_token)
|
26474
|
+
SENSITIVE = []
|
26475
|
+
include Aws::Structure
|
26476
|
+
end
|
26477
|
+
|
25177
26478
|
# @!attribute [rw] name_contains
|
25178
26479
|
# Selects inference experiments whose names contain this name.
|
25179
26480
|
# @return [String]
|
@@ -28412,16 +29713,15 @@ module Aws::SageMaker
|
|
28412
29713
|
# @return [String]
|
28413
29714
|
#
|
28414
29715
|
# @!attribute [rw] vpc_config
|
28415
|
-
# Specifies
|
28416
|
-
#
|
28417
|
-
#
|
28418
|
-
#
|
28419
|
-
#
|
29716
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
29717
|
+
# jobs, hosted models, and compute resources have access to. You can
|
29718
|
+
# control access to and from your resources by configuring a VPC. For
|
29719
|
+
# more information, see [Give SageMaker Access to Resources in your
|
29720
|
+
# Amazon VPC][1].
|
28420
29721
|
#
|
28421
29722
|
#
|
28422
29723
|
#
|
28423
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
28424
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
29724
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
28425
29725
|
# @return [Types::VpcConfig]
|
28426
29726
|
#
|
28427
29727
|
# @!attribute [rw] creation_time
|
@@ -30738,16 +32038,15 @@ module Aws::SageMaker
|
|
30738
32038
|
# @return [Boolean]
|
30739
32039
|
#
|
30740
32040
|
# @!attribute [rw] vpc_config
|
30741
|
-
# Specifies
|
30742
|
-
#
|
30743
|
-
#
|
30744
|
-
#
|
30745
|
-
#
|
32041
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
32042
|
+
# jobs, hosted models, and compute resources have access to. You can
|
32043
|
+
# control access to and from your resources by configuring a VPC. For
|
32044
|
+
# more information, see [Give SageMaker Access to Resources in your
|
32045
|
+
# Amazon VPC][1].
|
30746
32046
|
#
|
30747
32047
|
#
|
30748
32048
|
#
|
30749
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
30750
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
32049
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
30751
32050
|
# @return [Types::VpcConfig]
|
30752
32051
|
#
|
30753
32052
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringNetworkConfig AWS API Documentation
|
@@ -31159,16 +32458,15 @@ module Aws::SageMaker
|
|
31159
32458
|
# @return [Boolean]
|
31160
32459
|
#
|
31161
32460
|
# @!attribute [rw] vpc_config
|
31162
|
-
# Specifies
|
31163
|
-
#
|
31164
|
-
#
|
31165
|
-
#
|
31166
|
-
#
|
32461
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
32462
|
+
# jobs, hosted models, and compute resources have access to. You can
|
32463
|
+
# control access to and from your resources by configuring a VPC. For
|
32464
|
+
# more information, see [Give SageMaker Access to Resources in your
|
32465
|
+
# Amazon VPC][1].
|
31167
32466
|
#
|
31168
32467
|
#
|
31169
32468
|
#
|
31170
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
31171
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
32469
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
31172
32470
|
# @return [Types::VpcConfig]
|
31173
32471
|
#
|
31174
32472
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/NetworkConfig AWS API Documentation
|
@@ -32291,6 +33589,16 @@ module Aws::SageMaker
|
|
32291
33589
|
# specified in the endpoint configuration for the endpoint.
|
32292
33590
|
# @return [Types::ProductionVariantServerlessConfig]
|
32293
33591
|
#
|
33592
|
+
# @!attribute [rw] managed_instance_scaling
|
33593
|
+
# Settings that control the range in the number of instances that the
|
33594
|
+
# endpoint provisions as it scales up or down to accommodate traffic.
|
33595
|
+
# @return [Types::ProductionVariantManagedInstanceScaling]
|
33596
|
+
#
|
33597
|
+
# @!attribute [rw] routing_config
|
33598
|
+
# Settings that control how the endpoint routes incoming traffic to
|
33599
|
+
# the instances that the endpoint hosts.
|
33600
|
+
# @return [Types::ProductionVariantRoutingConfig]
|
33601
|
+
#
|
32294
33602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PendingProductionVariantSummary AWS API Documentation
|
32295
33603
|
#
|
32296
33604
|
class PendingProductionVariantSummary < Struct.new(
|
@@ -32304,7 +33612,9 @@ module Aws::SageMaker
|
|
32304
33612
|
:accelerator_type,
|
32305
33613
|
:variant_status,
|
32306
33614
|
:current_serverless_config,
|
32307
|
-
:desired_serverless_config
|
33615
|
+
:desired_serverless_config,
|
33616
|
+
:managed_instance_scaling,
|
33617
|
+
:routing_config)
|
32308
33618
|
SENSITIVE = []
|
32309
33619
|
include Aws::Structure
|
32310
33620
|
end
|
@@ -33464,6 +34774,16 @@ module Aws::SageMaker
|
|
33464
34774
|
# new endpoint configuration and calling `UpdateEndpoint`.
|
33465
34775
|
# @return [Boolean]
|
33466
34776
|
#
|
34777
|
+
# @!attribute [rw] managed_instance_scaling
|
34778
|
+
# Settings that control the range in the number of instances that the
|
34779
|
+
# endpoint provisions as it scales up or down to accommodate traffic.
|
34780
|
+
# @return [Types::ProductionVariantManagedInstanceScaling]
|
34781
|
+
#
|
34782
|
+
# @!attribute [rw] routing_config
|
34783
|
+
# Settings that control how the endpoint routes incoming traffic to
|
34784
|
+
# the instances that the endpoint hosts.
|
34785
|
+
# @return [Types::ProductionVariantRoutingConfig]
|
34786
|
+
#
|
33467
34787
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariant AWS API Documentation
|
33468
34788
|
#
|
33469
34789
|
class ProductionVariant < Struct.new(
|
@@ -33478,7 +34798,9 @@ module Aws::SageMaker
|
|
33478
34798
|
:volume_size_in_gb,
|
33479
34799
|
:model_data_download_timeout_in_seconds,
|
33480
34800
|
:container_startup_health_check_timeout_in_seconds,
|
33481
|
-
:enable_ssm_access
|
34801
|
+
:enable_ssm_access,
|
34802
|
+
:managed_instance_scaling,
|
34803
|
+
:routing_config)
|
33482
34804
|
SENSITIVE = []
|
33483
34805
|
include Aws::Structure
|
33484
34806
|
end
|
@@ -33544,6 +34866,54 @@ module Aws::SageMaker
|
|
33544
34866
|
include Aws::Structure
|
33545
34867
|
end
|
33546
34868
|
|
34869
|
+
# Settings that control the range in the number of instances that the
|
34870
|
+
# endpoint provisions as it scales up or down to accommodate traffic.
|
34871
|
+
#
|
34872
|
+
# @!attribute [rw] status
|
34873
|
+
# Indicates whether managed instance scaling is enabled.
|
34874
|
+
# @return [String]
|
34875
|
+
#
|
34876
|
+
# @!attribute [rw] min_instance_count
|
34877
|
+
# The minimum number of instances that the endpoint must retain when
|
34878
|
+
# it scales down to accommodate a decrease in traffic.
|
34879
|
+
# @return [Integer]
|
34880
|
+
#
|
34881
|
+
# @!attribute [rw] max_instance_count
|
34882
|
+
# The maximum number of instances that the endpoint can provision when
|
34883
|
+
# it scales up to accommodate an increase in traffic.
|
34884
|
+
# @return [Integer]
|
34885
|
+
#
|
34886
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantManagedInstanceScaling AWS API Documentation
|
34887
|
+
#
|
34888
|
+
class ProductionVariantManagedInstanceScaling < Struct.new(
|
34889
|
+
:status,
|
34890
|
+
:min_instance_count,
|
34891
|
+
:max_instance_count)
|
34892
|
+
SENSITIVE = []
|
34893
|
+
include Aws::Structure
|
34894
|
+
end
|
34895
|
+
|
34896
|
+
# Settings that control how the endpoint routes incoming traffic to the
|
34897
|
+
# instances that the endpoint hosts.
|
34898
|
+
#
|
34899
|
+
# @!attribute [rw] routing_strategy
|
34900
|
+
# Sets how the endpoint routes incoming traffic:
|
34901
|
+
#
|
34902
|
+
# * `LEAST_OUTSTANDING_REQUESTS`: The endpoint routes requests to the
|
34903
|
+
# specific instances that have more capacity to process them.
|
34904
|
+
#
|
34905
|
+
# * `RANDOM`: The endpoint routes each request to a randomly chosen
|
34906
|
+
# instance.
|
34907
|
+
# @return [String]
|
34908
|
+
#
|
34909
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantRoutingConfig AWS API Documentation
|
34910
|
+
#
|
34911
|
+
class ProductionVariantRoutingConfig < Struct.new(
|
34912
|
+
:routing_strategy)
|
34913
|
+
SENSITIVE = []
|
34914
|
+
include Aws::Structure
|
34915
|
+
end
|
34916
|
+
|
33547
34917
|
# Specifies the serverless configuration for an endpoint variant.
|
33548
34918
|
#
|
33549
34919
|
# @!attribute [rw] memory_size_in_mb
|
@@ -33691,6 +35061,16 @@ module Aws::SageMaker
|
|
33691
35061
|
# The serverless configuration requested for the endpoint update.
|
33692
35062
|
# @return [Types::ProductionVariantServerlessConfig]
|
33693
35063
|
#
|
35064
|
+
# @!attribute [rw] managed_instance_scaling
|
35065
|
+
# Settings that control the range in the number of instances that the
|
35066
|
+
# endpoint provisions as it scales up or down to accommodate traffic.
|
35067
|
+
# @return [Types::ProductionVariantManagedInstanceScaling]
|
35068
|
+
#
|
35069
|
+
# @!attribute [rw] routing_config
|
35070
|
+
# Settings that control how the endpoint routes incoming traffic to
|
35071
|
+
# the instances that the endpoint hosts.
|
35072
|
+
# @return [Types::ProductionVariantRoutingConfig]
|
35073
|
+
#
|
33694
35074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantSummary AWS API Documentation
|
33695
35075
|
#
|
33696
35076
|
class ProductionVariantSummary < Struct.new(
|
@@ -33702,7 +35082,9 @@ module Aws::SageMaker
|
|
33702
35082
|
:desired_instance_count,
|
33703
35083
|
:variant_status,
|
33704
35084
|
:current_serverless_config,
|
33705
|
-
:desired_serverless_config
|
35085
|
+
:desired_serverless_config,
|
35086
|
+
:managed_instance_scaling,
|
35087
|
+
:routing_config)
|
33706
35088
|
SENSITIVE = []
|
33707
35089
|
include Aws::Structure
|
33708
35090
|
end
|
@@ -35659,6 +37041,10 @@ module Aws::SageMaker
|
|
35659
37041
|
# The ARN of the image version created on the instance.
|
35660
37042
|
# @return [String]
|
35661
37043
|
#
|
37044
|
+
# @!attribute [rw] sage_maker_image_version_alias
|
37045
|
+
# The SageMakerImageVersionAlias.
|
37046
|
+
# @return [String]
|
37047
|
+
#
|
35662
37048
|
# @!attribute [rw] instance_type
|
35663
37049
|
# The instance type that the image version runs on.
|
35664
37050
|
#
|
@@ -35681,6 +37067,7 @@ module Aws::SageMaker
|
|
35681
37067
|
class ResourceSpec < Struct.new(
|
35682
37068
|
:sage_maker_image_arn,
|
35683
37069
|
:sage_maker_image_version_arn,
|
37070
|
+
:sage_maker_image_version_alias,
|
35684
37071
|
:instance_type,
|
35685
37072
|
:lifecycle_config_arn)
|
35686
37073
|
SENSITIVE = []
|
@@ -36879,7 +38266,7 @@ module Aws::SageMaker
|
|
36879
38266
|
include Aws::Structure
|
36880
38267
|
end
|
36881
38268
|
|
36882
|
-
# Specifies options for sharing SageMaker Studio notebooks. These
|
38269
|
+
# Specifies options for sharing Amazon SageMaker Studio notebooks. These
|
36883
38270
|
# settings are specified as part of `DefaultUserSettings` when the
|
36884
38271
|
# `CreateDomain` API is called, and as part of `UserSettings` when the
|
36885
38272
|
# `CreateUserProfile` API is called. When `SharingSettings` is not
|
@@ -37538,23 +38925,24 @@ module Aws::SageMaker
|
|
37538
38925
|
include Aws::Structure
|
37539
38926
|
end
|
37540
38927
|
|
37541
|
-
# Details of the Studio Lifecycle Configuration.
|
38928
|
+
# Details of the Amazon SageMaker Studio Lifecycle Configuration.
|
37542
38929
|
#
|
37543
38930
|
# @!attribute [rw] studio_lifecycle_config_arn
|
37544
38931
|
# The Amazon Resource Name (ARN) of the Lifecycle Configuration.
|
37545
38932
|
# @return [String]
|
37546
38933
|
#
|
37547
38934
|
# @!attribute [rw] studio_lifecycle_config_name
|
37548
|
-
# The name of the Studio Lifecycle Configuration.
|
38935
|
+
# The name of the Amazon SageMaker Studio Lifecycle Configuration.
|
37549
38936
|
# @return [String]
|
37550
38937
|
#
|
37551
38938
|
# @!attribute [rw] creation_time
|
37552
|
-
# The creation time of the Studio Lifecycle
|
38939
|
+
# The creation time of the Amazon SageMaker Studio Lifecycle
|
38940
|
+
# Configuration.
|
37553
38941
|
# @return [Time]
|
37554
38942
|
#
|
37555
38943
|
# @!attribute [rw] last_modified_time
|
37556
|
-
# This value is equivalent to CreationTime because
|
37557
|
-
# Configurations are immutable.
|
38944
|
+
# This value is equivalent to CreationTime because Amazon SageMaker
|
38945
|
+
# Studio Lifecycle Configurations are immutable.
|
37558
38946
|
# @return [Time]
|
37559
38947
|
#
|
37560
38948
|
# @!attribute [rw] studio_lifecycle_config_app_type
|
@@ -37987,8 +39375,10 @@ module Aws::SageMaker
|
|
37987
39375
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/canvas.html
|
37988
39376
|
#
|
37989
39377
|
# @!attribute [rw] completion_criteria
|
37990
|
-
# How long a job is allowed to run
|
37991
|
-
#
|
39378
|
+
# How long a fine-tuning job is allowed to run. For
|
39379
|
+
# `TextGenerationJobConfig` problem types, the
|
39380
|
+
# `MaxRuntimePerTrainingJobInSeconds` attribute of
|
39381
|
+
# `AutoMLJobCompletionCriteria` defaults to 72h (259200s).
|
37992
39382
|
# @return [Types::AutoMLJobCompletionCriteria]
|
37993
39383
|
#
|
37994
39384
|
# @!attribute [rw] base_model_name
|
@@ -37996,18 +39386,53 @@ module Aws::SageMaker
|
|
37996
39386
|
# fine-tuning a variety of large language models. For information on
|
37997
39387
|
# the list of supported models, see [Text generation models supporting
|
37998
39388
|
# fine-tuning in Autopilot][1]. If no `BaseModelName` is provided, the
|
37999
|
-
# default model used is
|
39389
|
+
# default model used is **Falcon7BInstruct**.
|
38000
39390
|
#
|
38001
39391
|
#
|
38002
39392
|
#
|
38003
39393
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-models.html#autopilot-llms-finetuning-supported-llms
|
38004
39394
|
# @return [String]
|
38005
39395
|
#
|
39396
|
+
# @!attribute [rw] text_generation_hyper_parameters
|
39397
|
+
# The hyperparameters used to configure and optimize the learning
|
39398
|
+
# process of the base model. You can set any combination of the
|
39399
|
+
# following hyperparameters for all base models. For more information
|
39400
|
+
# on each supported hyperparameter, see [Optimize the learning process
|
39401
|
+
# of your text generation models with hyperparameters][1].
|
39402
|
+
#
|
39403
|
+
# * `"epochCount"`: The number of times the model goes through the
|
39404
|
+
# entire training dataset. Its value should be a string containing
|
39405
|
+
# an integer value within the range of "1" to "10".
|
39406
|
+
#
|
39407
|
+
# * `"batchSize"`: The number of data samples used in each iteration
|
39408
|
+
# of training. Its value should be a string containing an integer
|
39409
|
+
# value within the range of "1" to "64".
|
39410
|
+
#
|
39411
|
+
# * `"learningRate"`: The step size at which a model's parameters are
|
39412
|
+
# updated during training. Its value should be a string containing a
|
39413
|
+
# floating-point value within the range of "0" to "1".
|
39414
|
+
#
|
39415
|
+
# * `"learningRateWarmupSteps"`: The number of training steps during
|
39416
|
+
# which the learning rate gradually increases before reaching its
|
39417
|
+
# target or maximum value. Its value should be a string containing
|
39418
|
+
# an integer value within the range of "0" to "250".
|
39419
|
+
#
|
39420
|
+
# Here is an example where all four hyperparameters are configured.
|
39421
|
+
#
|
39422
|
+
# `\{ "epochCount":"5", "learningRate":"0.5", "batchSize": "32",
|
39423
|
+
# "learningRateWarmupSteps": "10" \}`
|
39424
|
+
#
|
39425
|
+
#
|
39426
|
+
#
|
39427
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-llms-finetuning-set-hyperparameters.html
|
39428
|
+
# @return [Hash<String,String>]
|
39429
|
+
#
|
38006
39430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TextGenerationJobConfig AWS API Documentation
|
38007
39431
|
#
|
38008
39432
|
class TextGenerationJobConfig < Struct.new(
|
38009
39433
|
:completion_criteria,
|
38010
|
-
:base_model_name
|
39434
|
+
:base_model_name,
|
39435
|
+
:text_generation_hyper_parameters)
|
38011
39436
|
SENSITIVE = []
|
38012
39437
|
include Aws::Structure
|
38013
39438
|
end
|
@@ -40495,6 +41920,37 @@ module Aws::SageMaker
|
|
40495
41920
|
include Aws::Structure
|
40496
41921
|
end
|
40497
41922
|
|
41923
|
+
# @!attribute [rw] cluster_name
|
41924
|
+
# Specify the name of the SageMaker HyperPod cluster you want to
|
41925
|
+
# update.
|
41926
|
+
# @return [String]
|
41927
|
+
#
|
41928
|
+
# @!attribute [rw] instance_groups
|
41929
|
+
# Specify the instance groups to update.
|
41930
|
+
# @return [Array<Types::ClusterInstanceGroupSpecification>]
|
41931
|
+
#
|
41932
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterRequest AWS API Documentation
|
41933
|
+
#
|
41934
|
+
class UpdateClusterRequest < Struct.new(
|
41935
|
+
:cluster_name,
|
41936
|
+
:instance_groups)
|
41937
|
+
SENSITIVE = []
|
41938
|
+
include Aws::Structure
|
41939
|
+
end
|
41940
|
+
|
41941
|
+
# @!attribute [rw] cluster_arn
|
41942
|
+
# The Amazon Resource Name (ARN) of the updated SageMaker HyperPod
|
41943
|
+
# cluster.
|
41944
|
+
# @return [String]
|
41945
|
+
#
|
41946
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterResponse AWS API Documentation
|
41947
|
+
#
|
41948
|
+
class UpdateClusterResponse < Struct.new(
|
41949
|
+
:cluster_arn)
|
41950
|
+
SENSITIVE = []
|
41951
|
+
include Aws::Structure
|
41952
|
+
end
|
41953
|
+
|
40498
41954
|
# @!attribute [rw] code_repository_name
|
40499
41955
|
# The name of the Git repository to update.
|
40500
41956
|
# @return [String]
|
@@ -40648,6 +42104,31 @@ module Aws::SageMaker
|
|
40648
42104
|
# value must be set to `Service`.
|
40649
42105
|
# @return [String]
|
40650
42106
|
#
|
42107
|
+
# @!attribute [rw] subnet_ids
|
42108
|
+
# The VPC subnets that Studio uses for communication.
|
42109
|
+
#
|
42110
|
+
# If removing subnets, ensure there are no apps in the `InService`,
|
42111
|
+
# `Pending`, or `Deleting` state.
|
42112
|
+
# @return [Array<String>]
|
42113
|
+
#
|
42114
|
+
# @!attribute [rw] app_network_access_type
|
42115
|
+
# Specifies the VPC used for non-EFS traffic.
|
42116
|
+
#
|
42117
|
+
# * `PublicInternetOnly` - Non-EFS traffic is through a VPC managed by
|
42118
|
+
# Amazon SageMaker, which allows direct internet access.
|
42119
|
+
#
|
42120
|
+
# * `VpcOnly` - All Studio traffic is through the specified VPC and
|
42121
|
+
# subnets.
|
42122
|
+
#
|
42123
|
+
# This configuration can only be modified if there are no apps in the
|
42124
|
+
# `InService`, `Pending`, or `Deleting` state. The configuration
|
42125
|
+
# cannot be updated if
|
42126
|
+
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
42127
|
+
# is already set or
|
42128
|
+
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
42129
|
+
# is provided as part of the same request.
|
42130
|
+
# @return [String]
|
42131
|
+
#
|
40651
42132
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainRequest AWS API Documentation
|
40652
42133
|
#
|
40653
42134
|
class UpdateDomainRequest < Struct.new(
|
@@ -40655,7 +42136,9 @@ module Aws::SageMaker
|
|
40655
42136
|
:default_user_settings,
|
40656
42137
|
:domain_settings_for_update,
|
40657
42138
|
:default_space_settings,
|
40658
|
-
:app_security_group_management
|
42139
|
+
:app_security_group_management,
|
42140
|
+
:subnet_ids,
|
42141
|
+
:app_network_access_type)
|
40659
42142
|
SENSITIVE = []
|
40660
42143
|
include Aws::Structure
|
40661
42144
|
end
|
@@ -41072,6 +42555,72 @@ module Aws::SageMaker
|
|
41072
42555
|
include Aws::Structure
|
41073
42556
|
end
|
41074
42557
|
|
42558
|
+
# @!attribute [rw] inference_component_name
|
42559
|
+
# The name of the inference component.
|
42560
|
+
# @return [String]
|
42561
|
+
#
|
42562
|
+
# @!attribute [rw] specification
|
42563
|
+
# Details about the resources to deploy with this inference component,
|
42564
|
+
# including the model, container, and compute resources.
|
42565
|
+
# @return [Types::InferenceComponentSpecification]
|
42566
|
+
#
|
42567
|
+
# @!attribute [rw] runtime_config
|
42568
|
+
# Runtime settings for a model that is deployed with an inference
|
42569
|
+
# component.
|
42570
|
+
# @return [Types::InferenceComponentRuntimeConfig]
|
42571
|
+
#
|
42572
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateInferenceComponentInput AWS API Documentation
|
42573
|
+
#
|
42574
|
+
class UpdateInferenceComponentInput < Struct.new(
|
42575
|
+
:inference_component_name,
|
42576
|
+
:specification,
|
42577
|
+
:runtime_config)
|
42578
|
+
SENSITIVE = []
|
42579
|
+
include Aws::Structure
|
42580
|
+
end
|
42581
|
+
|
42582
|
+
# @!attribute [rw] inference_component_arn
|
42583
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
42584
|
+
# @return [String]
|
42585
|
+
#
|
42586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateInferenceComponentOutput AWS API Documentation
|
42587
|
+
#
|
42588
|
+
class UpdateInferenceComponentOutput < Struct.new(
|
42589
|
+
:inference_component_arn)
|
42590
|
+
SENSITIVE = []
|
42591
|
+
include Aws::Structure
|
42592
|
+
end
|
42593
|
+
|
42594
|
+
# @!attribute [rw] inference_component_name
|
42595
|
+
# The name of the inference component to update.
|
42596
|
+
# @return [String]
|
42597
|
+
#
|
42598
|
+
# @!attribute [rw] desired_runtime_config
|
42599
|
+
# Runtime settings for a model that is deployed with an inference
|
42600
|
+
# component.
|
42601
|
+
# @return [Types::InferenceComponentRuntimeConfig]
|
42602
|
+
#
|
42603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateInferenceComponentRuntimeConfigInput AWS API Documentation
|
42604
|
+
#
|
42605
|
+
class UpdateInferenceComponentRuntimeConfigInput < Struct.new(
|
42606
|
+
:inference_component_name,
|
42607
|
+
:desired_runtime_config)
|
42608
|
+
SENSITIVE = []
|
42609
|
+
include Aws::Structure
|
42610
|
+
end
|
42611
|
+
|
42612
|
+
# @!attribute [rw] inference_component_arn
|
42613
|
+
# The Amazon Resource Name (ARN) of the inference component.
|
42614
|
+
# @return [String]
|
42615
|
+
#
|
42616
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateInferenceComponentRuntimeConfigOutput AWS API Documentation
|
42617
|
+
#
|
42618
|
+
class UpdateInferenceComponentRuntimeConfigOutput < Struct.new(
|
42619
|
+
:inference_component_arn)
|
42620
|
+
SENSITIVE = []
|
42621
|
+
include Aws::Structure
|
42622
|
+
end
|
42623
|
+
|
41075
42624
|
# @!attribute [rw] name
|
41076
42625
|
# The name of the inference experiment to be updated.
|
41077
42626
|
# @return [String]
|
@@ -42075,10 +43624,9 @@ module Aws::SageMaker
|
|
42075
43624
|
include Aws::Structure
|
42076
43625
|
end
|
42077
43626
|
|
42078
|
-
# A collection of settings that apply to users
|
42079
|
-
#
|
42080
|
-
#
|
42081
|
-
# called.
|
43627
|
+
# A collection of settings that apply to users in a domain. These
|
43628
|
+
# settings are specified when the `CreateUserProfile` API is called, and
|
43629
|
+
# as `DefaultUserSettings` when the `CreateDomain` API is called.
|
42082
43630
|
#
|
42083
43631
|
# `SecurityGroups` is aggregated when specified in both calls. For all
|
42084
43632
|
# other settings in `UserSettings`, the values specified in
|
@@ -42091,7 +43639,7 @@ module Aws::SageMaker
|
|
42091
43639
|
#
|
42092
43640
|
# @!attribute [rw] security_groups
|
42093
43641
|
# The security groups for the Amazon Virtual Private Cloud (VPC) that
|
42094
|
-
#
|
43642
|
+
# the domain uses for communication.
|
42095
43643
|
#
|
42096
43644
|
# Optional when the `CreateDomain.AppNetworkAccessType` parameter is
|
42097
43645
|
# set to `PublicInternetOnly`.
|
@@ -42101,12 +43649,12 @@ module Aws::SageMaker
|
|
42101
43649
|
# `DefaultUserSettings` for the domain.
|
42102
43650
|
#
|
42103
43651
|
# 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.
|
43652
|
+
# Amazon SageMaker Studio. Therefore, the number of security groups
|
43653
|
+
# that you can specify is one less than the maximum number shown.
|
42106
43654
|
# @return [Array<String>]
|
42107
43655
|
#
|
42108
43656
|
# @!attribute [rw] sharing_settings
|
42109
|
-
# Specifies options for sharing SageMaker Studio notebooks.
|
43657
|
+
# Specifies options for sharing Amazon SageMaker Studio notebooks.
|
42110
43658
|
# @return [Types::SharingSettings]
|
42111
43659
|
#
|
42112
43660
|
# @!attribute [rw] jupyter_server_app_settings
|
@@ -42134,6 +43682,23 @@ module Aws::SageMaker
|
|
42134
43682
|
# The Canvas app settings.
|
42135
43683
|
# @return [Types::CanvasAppSettings]
|
42136
43684
|
#
|
43685
|
+
# @!attribute [rw] default_landing_uri
|
43686
|
+
# The default experience that the user is directed to when accessing
|
43687
|
+
# the domain. The supported values are:
|
43688
|
+
#
|
43689
|
+
# * `studio::`: Indicates that Studio is the default experience. This
|
43690
|
+
# value can only be passed if `StudioWebPortal` is set to `ENABLED`.
|
43691
|
+
#
|
43692
|
+
# * `app:JupyterServer:`: Indicates that Studio Classic is the default
|
43693
|
+
# experience.
|
43694
|
+
# @return [String]
|
43695
|
+
#
|
43696
|
+
# @!attribute [rw] studio_web_portal
|
43697
|
+
# Whether the user can access Studio. If this value is set to
|
43698
|
+
# `DISABLED`, the user cannot access Studio, even if that is the
|
43699
|
+
# default experience for the domain.
|
43700
|
+
# @return [String]
|
43701
|
+
#
|
42137
43702
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
|
42138
43703
|
#
|
42139
43704
|
class UserSettings < Struct.new(
|
@@ -42145,7 +43710,9 @@ module Aws::SageMaker
|
|
42145
43710
|
:tensor_board_app_settings,
|
42146
43711
|
:r_studio_server_pro_app_settings,
|
42147
43712
|
:r_session_app_settings,
|
42148
|
-
:canvas_app_settings
|
43713
|
+
:canvas_app_settings,
|
43714
|
+
:default_landing_uri,
|
43715
|
+
:studio_web_portal)
|
42149
43716
|
SENSITIVE = []
|
42150
43717
|
include Aws::Structure
|
42151
43718
|
end
|
@@ -42228,19 +43795,18 @@ module Aws::SageMaker
|
|
42228
43795
|
include Aws::Structure
|
42229
43796
|
end
|
42230
43797
|
|
42231
|
-
# Specifies
|
42232
|
-
#
|
42233
|
-
#
|
42234
|
-
#
|
42235
|
-
#
|
43798
|
+
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
43799
|
+
# jobs, hosted models, and compute resources have access to. You can
|
43800
|
+
# control access to and from your resources by configuring a VPC. For
|
43801
|
+
# more information, see [Give SageMaker Access to Resources in your
|
43802
|
+
# Amazon VPC][1].
|
42236
43803
|
#
|
42237
43804
|
#
|
42238
43805
|
#
|
42239
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/
|
42240
|
-
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-vpc.html
|
43806
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
|
42241
43807
|
#
|
42242
43808
|
# @!attribute [rw] security_group_ids
|
42243
|
-
# The VPC security group IDs, in the form sg-xxxxxxxx
|
43809
|
+
# The VPC security group IDs, in the form `sg-xxxxxxxx`. Specify the
|
42244
43810
|
# security groups for the VPC that is specified in the `Subnets`
|
42245
43811
|
# field.
|
42246
43812
|
# @return [Array<String>]
|