aws-sdk-sagemaker 1.245.0 → 1.247.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +496 -10
- data/lib/aws-sdk-sagemaker/client_api.rb +234 -0
- data/lib/aws-sdk-sagemaker/endpoints.rb +112 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +16 -0
- data/lib/aws-sdk-sagemaker/types.rb +641 -26
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +148 -7
- data/sig/types.rbs +151 -0
- metadata +2 -2
@@ -3982,6 +3982,26 @@ module Aws::SageMaker
|
|
3982
3982
|
include Aws::Structure
|
3983
3983
|
end
|
3984
3984
|
|
3985
|
+
# Defines the configuration for attaching an additional Amazon Elastic
|
3986
|
+
# Block Store (EBS) volume to each instance of the SageMaker HyperPod
|
3987
|
+
# cluster instance group.
|
3988
|
+
#
|
3989
|
+
# @!attribute [rw] volume_size_in_gb
|
3990
|
+
# The size in gigabytes (GB) of the additional EBS volume to be
|
3991
|
+
# attached to the instances in the SageMaker HyperPod cluster instance
|
3992
|
+
# group. The additional EBS volume is attached to each instance within
|
3993
|
+
# the SageMaker HyperPod cluster instance group and mounted to
|
3994
|
+
# `/opt/sagemaker`.
|
3995
|
+
# @return [Integer]
|
3996
|
+
#
|
3997
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterEbsVolumeConfig AWS API Documentation
|
3998
|
+
#
|
3999
|
+
class ClusterEbsVolumeConfig < Struct.new(
|
4000
|
+
:volume_size_in_gb)
|
4001
|
+
SENSITIVE = []
|
4002
|
+
include Aws::Structure
|
4003
|
+
end
|
4004
|
+
|
3985
4005
|
# Details of an instance group in a SageMaker HyperPod cluster.
|
3986
4006
|
#
|
3987
4007
|
# @!attribute [rw] current_count
|
@@ -4025,6 +4045,11 @@ module Aws::SageMaker
|
|
4025
4045
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html
|
4026
4046
|
# @return [Integer]
|
4027
4047
|
#
|
4048
|
+
# @!attribute [rw] instance_storage_configs
|
4049
|
+
# The additional storage configurations for the instances in the
|
4050
|
+
# SageMaker HyperPod cluster instance group.
|
4051
|
+
# @return [Array<Types::ClusterInstanceStorageConfig>]
|
4052
|
+
#
|
4028
4053
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupDetails AWS API Documentation
|
4029
4054
|
#
|
4030
4055
|
class ClusterInstanceGroupDetails < Struct.new(
|
@@ -4034,7 +4059,8 @@ module Aws::SageMaker
|
|
4034
4059
|
:instance_type,
|
4035
4060
|
:life_cycle_config,
|
4036
4061
|
:execution_role,
|
4037
|
-
:threads_per_core
|
4062
|
+
:threads_per_core,
|
4063
|
+
:instance_storage_configs)
|
4038
4064
|
SENSITIVE = []
|
4039
4065
|
include Aws::Structure
|
4040
4066
|
end
|
@@ -4076,6 +4102,11 @@ module Aws::SageMaker
|
|
4076
4102
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html
|
4077
4103
|
# @return [Integer]
|
4078
4104
|
#
|
4105
|
+
# @!attribute [rw] instance_storage_configs
|
4106
|
+
# Specifies the additional storage configurations for the instances in
|
4107
|
+
# the SageMaker HyperPod cluster instance group.
|
4108
|
+
# @return [Array<Types::ClusterInstanceStorageConfig>]
|
4109
|
+
#
|
4079
4110
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupSpecification AWS API Documentation
|
4080
4111
|
#
|
4081
4112
|
class ClusterInstanceGroupSpecification < Struct.new(
|
@@ -4084,7 +4115,8 @@ module Aws::SageMaker
|
|
4084
4115
|
:instance_type,
|
4085
4116
|
:life_cycle_config,
|
4086
4117
|
:execution_role,
|
4087
|
-
:threads_per_core
|
4118
|
+
:threads_per_core,
|
4119
|
+
:instance_storage_configs)
|
4088
4120
|
SENSITIVE = []
|
4089
4121
|
include Aws::Structure
|
4090
4122
|
end
|
@@ -4131,6 +4163,34 @@ module Aws::SageMaker
|
|
4131
4163
|
include Aws::Structure
|
4132
4164
|
end
|
4133
4165
|
|
4166
|
+
# Defines the configuration for attaching additional storage to the
|
4167
|
+
# instances in the SageMaker HyperPod cluster instance group.
|
4168
|
+
#
|
4169
|
+
# @note ClusterInstanceStorageConfig is a union - when making an API calls you must set exactly one of the members.
|
4170
|
+
#
|
4171
|
+
# @note ClusterInstanceStorageConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ClusterInstanceStorageConfig corresponding to the set member.
|
4172
|
+
#
|
4173
|
+
# @!attribute [rw] ebs_volume_config
|
4174
|
+
# Defines the configuration for attaching additional Amazon Elastic
|
4175
|
+
# Block Store (EBS) volumes to the instances in the SageMaker HyperPod
|
4176
|
+
# cluster instance group. The additional EBS volume is attached to
|
4177
|
+
# each instance within the SageMaker HyperPod cluster instance group
|
4178
|
+
# and mounted to `/opt/sagemaker`.
|
4179
|
+
# @return [Types::ClusterEbsVolumeConfig]
|
4180
|
+
#
|
4181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceStorageConfig AWS API Documentation
|
4182
|
+
#
|
4183
|
+
class ClusterInstanceStorageConfig < Struct.new(
|
4184
|
+
:ebs_volume_config,
|
4185
|
+
:unknown)
|
4186
|
+
SENSITIVE = []
|
4187
|
+
include Aws::Structure
|
4188
|
+
include Aws::Structure::Union
|
4189
|
+
|
4190
|
+
class EbsVolumeConfig < ClusterInstanceStorageConfig; end
|
4191
|
+
class Unknown < ClusterInstanceStorageConfig; end
|
4192
|
+
end
|
4193
|
+
|
4134
4194
|
# The lifecycle configuration for a SageMaker HyperPod cluster.
|
4135
4195
|
#
|
4136
4196
|
# @!attribute [rw] source_s3_uri
|
@@ -4193,6 +4253,11 @@ module Aws::SageMaker
|
|
4193
4253
|
# `CreateCluster`.
|
4194
4254
|
# @return [Integer]
|
4195
4255
|
#
|
4256
|
+
# @!attribute [rw] instance_storage_configs
|
4257
|
+
# The configurations of additional storage specified to the instance
|
4258
|
+
# group where the instance (node) is launched.
|
4259
|
+
# @return [Array<Types::ClusterInstanceStorageConfig>]
|
4260
|
+
#
|
4196
4261
|
# @!attribute [rw] private_primary_ip
|
4197
4262
|
# The private primary IP address of the SageMaker HyperPod cluster
|
4198
4263
|
# node.
|
@@ -4216,6 +4281,7 @@ module Aws::SageMaker
|
|
4216
4281
|
:launch_time,
|
4217
4282
|
:life_cycle_config,
|
4218
4283
|
:threads_per_core,
|
4284
|
+
:instance_storage_configs,
|
4219
4285
|
:private_primary_ip,
|
4220
4286
|
:private_dns_hostname,
|
4221
4287
|
:placement)
|
@@ -7502,6 +7568,95 @@ module Aws::SageMaker
|
|
7502
7568
|
include Aws::Structure
|
7503
7569
|
end
|
7504
7570
|
|
7571
|
+
# @!attribute [rw] tracking_server_name
|
7572
|
+
# A unique string identifying the tracking server name. This string is
|
7573
|
+
# part of the tracking server ARN.
|
7574
|
+
# @return [String]
|
7575
|
+
#
|
7576
|
+
# @!attribute [rw] artifact_store_uri
|
7577
|
+
# The S3 URI for a general purpose bucket to use as the MLflow
|
7578
|
+
# Tracking Server artifact store.
|
7579
|
+
# @return [String]
|
7580
|
+
#
|
7581
|
+
# @!attribute [rw] tracking_server_size
|
7582
|
+
# The size of the tracking server you want to create. You can choose
|
7583
|
+
# between `"Small"`, `"Medium"`, and `"Large"`. The default MLflow
|
7584
|
+
# Tracking Server configuration size is `"Small"`. You can choose a
|
7585
|
+
# size depending on the projected use of the tracking server such as
|
7586
|
+
# the volume of data logged, number of users, and frequency of use.
|
7587
|
+
#
|
7588
|
+
# We recommend using a small tracking server for teams of up to 25
|
7589
|
+
# users, a medium tracking server for teams of up to 50 users, and a
|
7590
|
+
# large tracking server for teams of up to 100 users.
|
7591
|
+
# @return [String]
|
7592
|
+
#
|
7593
|
+
# @!attribute [rw] mlflow_version
|
7594
|
+
# The version of MLflow that the tracking server uses. To see which
|
7595
|
+
# MLflow versions are available to use, see [How it works][1].
|
7596
|
+
#
|
7597
|
+
#
|
7598
|
+
#
|
7599
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow.html#mlflow-create-tracking-server-how-it-works
|
7600
|
+
# @return [String]
|
7601
|
+
#
|
7602
|
+
# @!attribute [rw] role_arn
|
7603
|
+
# The Amazon Resource Name (ARN) for an IAM role in your account that
|
7604
|
+
# the MLflow Tracking Server uses to access the artifact store in
|
7605
|
+
# Amazon S3. The role should have `AmazonS3FullAccess` permissions.
|
7606
|
+
# For more information on IAM permissions for tracking server
|
7607
|
+
# creation, see [Set up IAM permissions for MLflow][1].
|
7608
|
+
#
|
7609
|
+
#
|
7610
|
+
#
|
7611
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow-create-tracking-server-iam.html
|
7612
|
+
# @return [String]
|
7613
|
+
#
|
7614
|
+
# @!attribute [rw] automatic_model_registration
|
7615
|
+
# Whether to enable or disable automatic registration of new MLflow
|
7616
|
+
# models to the SageMaker Model Registry. To enable automatic model
|
7617
|
+
# registration, set this value to `True`. To disable automatic model
|
7618
|
+
# registration, set this value to `False`. If not specified,
|
7619
|
+
# `AutomaticModelRegistration` defaults to `False`.
|
7620
|
+
# @return [Boolean]
|
7621
|
+
#
|
7622
|
+
# @!attribute [rw] weekly_maintenance_window_start
|
7623
|
+
# The day and time of the week in Coordinated Universal Time (UTC)
|
7624
|
+
# 24-hour standard time that weekly maintenance updates are scheduled.
|
7625
|
+
# For example: TUE:03:30.
|
7626
|
+
# @return [String]
|
7627
|
+
#
|
7628
|
+
# @!attribute [rw] tags
|
7629
|
+
# Tags consisting of key-value pairs used to manage metadata for the
|
7630
|
+
# tracking server.
|
7631
|
+
# @return [Array<Types::Tag>]
|
7632
|
+
#
|
7633
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMlflowTrackingServerRequest AWS API Documentation
|
7634
|
+
#
|
7635
|
+
class CreateMlflowTrackingServerRequest < Struct.new(
|
7636
|
+
:tracking_server_name,
|
7637
|
+
:artifact_store_uri,
|
7638
|
+
:tracking_server_size,
|
7639
|
+
:mlflow_version,
|
7640
|
+
:role_arn,
|
7641
|
+
:automatic_model_registration,
|
7642
|
+
:weekly_maintenance_window_start,
|
7643
|
+
:tags)
|
7644
|
+
SENSITIVE = []
|
7645
|
+
include Aws::Structure
|
7646
|
+
end
|
7647
|
+
|
7648
|
+
# @!attribute [rw] tracking_server_arn
|
7649
|
+
# The ARN of the tracking server.
|
7650
|
+
# @return [String]
|
7651
|
+
#
|
7652
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMlflowTrackingServerResponse AWS API Documentation
|
7653
|
+
#
|
7654
|
+
class CreateMlflowTrackingServerResponse < Struct.new(
|
7655
|
+
:tracking_server_arn)
|
7656
|
+
SENSITIVE = []
|
7657
|
+
include Aws::Structure
|
7658
|
+
end
|
7659
|
+
|
7505
7660
|
# @!attribute [rw] job_definition_name
|
7506
7661
|
# The name of the bias job definition. The name must be unique within
|
7507
7662
|
# an Amazon Web Services Region in the Amazon Web Services account.
|
@@ -8065,12 +8220,15 @@ module Aws::SageMaker
|
|
8065
8220
|
# schema of `ModelCard`. The `ModelPackageModelCard` schema does not
|
8066
8221
|
# include `model_package_details`, and `model_overview` is composed of
|
8067
8222
|
# the `model_creator` and `model_artifact` properties. For more
|
8068
|
-
# information about the model
|
8069
|
-
#
|
8223
|
+
# information about the model package model card schema, see [Model
|
8224
|
+
# package model card schema][1]. For more information about the model
|
8225
|
+
# card associated with the model package, see [View the Details of a
|
8226
|
+
# Model Version][2].
|
8070
8227
|
#
|
8071
8228
|
#
|
8072
8229
|
#
|
8073
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
8230
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema
|
8231
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
8074
8232
|
# @return [Types::ModelPackageModelCard]
|
8075
8233
|
#
|
8076
8234
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageInput AWS API Documentation
|
@@ -8608,6 +8766,41 @@ module Aws::SageMaker
|
|
8608
8766
|
include Aws::Structure
|
8609
8767
|
end
|
8610
8768
|
|
8769
|
+
# @!attribute [rw] tracking_server_name
|
8770
|
+
# The name of the tracking server to connect to your MLflow UI.
|
8771
|
+
# @return [String]
|
8772
|
+
#
|
8773
|
+
# @!attribute [rw] expires_in_seconds
|
8774
|
+
# The duration in seconds that your presigned URL is valid. The
|
8775
|
+
# presigned URL can be used only once.
|
8776
|
+
# @return [Integer]
|
8777
|
+
#
|
8778
|
+
# @!attribute [rw] session_expiration_duration_in_seconds
|
8779
|
+
# The duration in seconds that your MLflow UI session is valid.
|
8780
|
+
# @return [Integer]
|
8781
|
+
#
|
8782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePresignedMlflowTrackingServerUrlRequest AWS API Documentation
|
8783
|
+
#
|
8784
|
+
class CreatePresignedMlflowTrackingServerUrlRequest < Struct.new(
|
8785
|
+
:tracking_server_name,
|
8786
|
+
:expires_in_seconds,
|
8787
|
+
:session_expiration_duration_in_seconds)
|
8788
|
+
SENSITIVE = []
|
8789
|
+
include Aws::Structure
|
8790
|
+
end
|
8791
|
+
|
8792
|
+
# @!attribute [rw] authorized_url
|
8793
|
+
# A presigned URL with an authorization token.
|
8794
|
+
# @return [String]
|
8795
|
+
#
|
8796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePresignedMlflowTrackingServerUrlResponse AWS API Documentation
|
8797
|
+
#
|
8798
|
+
class CreatePresignedMlflowTrackingServerUrlResponse < Struct.new(
|
8799
|
+
:authorized_url)
|
8800
|
+
SENSITIVE = []
|
8801
|
+
include Aws::Structure
|
8802
|
+
end
|
8803
|
+
|
8611
8804
|
# @!attribute [rw] notebook_instance_name
|
8612
8805
|
# The name of the notebook instance.
|
8613
8806
|
# @return [String]
|
@@ -9590,7 +9783,7 @@ module Aws::SageMaker
|
|
9590
9783
|
# @!attribute [rw] source_ip_config
|
9591
9784
|
# A list of IP address ranges ([CIDRs][1]). Used to create an allow
|
9592
9785
|
# list of IP addresses for a private workforce. Workers will only be
|
9593
|
-
# able to
|
9786
|
+
# able to log in to their worker portal from an IP address within this
|
9594
9787
|
# range. By default, a workforce isn't restricted to specific IP
|
9595
9788
|
# addresses.
|
9596
9789
|
#
|
@@ -10950,6 +11143,31 @@ module Aws::SageMaker
|
|
10950
11143
|
include Aws::Structure
|
10951
11144
|
end
|
10952
11145
|
|
11146
|
+
# @!attribute [rw] tracking_server_name
|
11147
|
+
# The name of the the tracking server to delete.
|
11148
|
+
# @return [String]
|
11149
|
+
#
|
11150
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteMlflowTrackingServerRequest AWS API Documentation
|
11151
|
+
#
|
11152
|
+
class DeleteMlflowTrackingServerRequest < Struct.new(
|
11153
|
+
:tracking_server_name)
|
11154
|
+
SENSITIVE = []
|
11155
|
+
include Aws::Structure
|
11156
|
+
end
|
11157
|
+
|
11158
|
+
# @!attribute [rw] tracking_server_arn
|
11159
|
+
# A `TrackingServerArn` object, the ARN of the tracking server that is
|
11160
|
+
# deleted if successfully found.
|
11161
|
+
# @return [String]
|
11162
|
+
#
|
11163
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteMlflowTrackingServerResponse AWS API Documentation
|
11164
|
+
#
|
11165
|
+
class DeleteMlflowTrackingServerResponse < Struct.new(
|
11166
|
+
:tracking_server_arn)
|
11167
|
+
SENSITIVE = []
|
11168
|
+
include Aws::Structure
|
11169
|
+
end
|
11170
|
+
|
10953
11171
|
# @!attribute [rw] job_definition_name
|
10954
11172
|
# The name of the model bias job definition to delete.
|
10955
11173
|
# @return [String]
|
@@ -14858,6 +15076,110 @@ module Aws::SageMaker
|
|
14858
15076
|
include Aws::Structure
|
14859
15077
|
end
|
14860
15078
|
|
15079
|
+
# @!attribute [rw] tracking_server_name
|
15080
|
+
# The name of the MLflow Tracking Server to describe.
|
15081
|
+
# @return [String]
|
15082
|
+
#
|
15083
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServerRequest AWS API Documentation
|
15084
|
+
#
|
15085
|
+
class DescribeMlflowTrackingServerRequest < Struct.new(
|
15086
|
+
:tracking_server_name)
|
15087
|
+
SENSITIVE = []
|
15088
|
+
include Aws::Structure
|
15089
|
+
end
|
15090
|
+
|
15091
|
+
# @!attribute [rw] tracking_server_arn
|
15092
|
+
# The ARN of the described tracking server.
|
15093
|
+
# @return [String]
|
15094
|
+
#
|
15095
|
+
# @!attribute [rw] tracking_server_name
|
15096
|
+
# The name of the described tracking server.
|
15097
|
+
# @return [String]
|
15098
|
+
#
|
15099
|
+
# @!attribute [rw] artifact_store_uri
|
15100
|
+
# The S3 URI of the general purpose bucket used as the MLflow Tracking
|
15101
|
+
# Server artifact store.
|
15102
|
+
# @return [String]
|
15103
|
+
#
|
15104
|
+
# @!attribute [rw] tracking_server_size
|
15105
|
+
# The size of the described tracking server.
|
15106
|
+
# @return [String]
|
15107
|
+
#
|
15108
|
+
# @!attribute [rw] mlflow_version
|
15109
|
+
# The MLflow version used for the described tracking server.
|
15110
|
+
# @return [String]
|
15111
|
+
#
|
15112
|
+
# @!attribute [rw] role_arn
|
15113
|
+
# The Amazon Resource Name (ARN) for an IAM role in your account that
|
15114
|
+
# the described MLflow Tracking Server uses to access the artifact
|
15115
|
+
# store in Amazon S3.
|
15116
|
+
# @return [String]
|
15117
|
+
#
|
15118
|
+
# @!attribute [rw] tracking_server_status
|
15119
|
+
# The current creation status of the described MLflow Tracking Server.
|
15120
|
+
# @return [String]
|
15121
|
+
#
|
15122
|
+
# @!attribute [rw] is_active
|
15123
|
+
# Whether the described MLflow Tracking Server is currently active.
|
15124
|
+
# @return [String]
|
15125
|
+
#
|
15126
|
+
# @!attribute [rw] tracking_server_url
|
15127
|
+
# The URL to connect to the MLflow user interface for the described
|
15128
|
+
# tracking server.
|
15129
|
+
# @return [String]
|
15130
|
+
#
|
15131
|
+
# @!attribute [rw] weekly_maintenance_window_start
|
15132
|
+
# The day and time of the week when weekly maintenance occurs on the
|
15133
|
+
# described tracking server.
|
15134
|
+
# @return [String]
|
15135
|
+
#
|
15136
|
+
# @!attribute [rw] automatic_model_registration
|
15137
|
+
# Whether automatic registration of new MLflow models to the SageMaker
|
15138
|
+
# Model Registry is enabled.
|
15139
|
+
# @return [Boolean]
|
15140
|
+
#
|
15141
|
+
# @!attribute [rw] creation_time
|
15142
|
+
# The timestamp of when the described MLflow Tracking Server was
|
15143
|
+
# created.
|
15144
|
+
# @return [Time]
|
15145
|
+
#
|
15146
|
+
# @!attribute [rw] created_by
|
15147
|
+
# Information about the user who created or modified an experiment,
|
15148
|
+
# trial, trial component, lineage group, project, or model card.
|
15149
|
+
# @return [Types::UserContext]
|
15150
|
+
#
|
15151
|
+
# @!attribute [rw] last_modified_time
|
15152
|
+
# The timestamp of when the described MLflow Tracking Server was last
|
15153
|
+
# modified.
|
15154
|
+
# @return [Time]
|
15155
|
+
#
|
15156
|
+
# @!attribute [rw] last_modified_by
|
15157
|
+
# Information about the user who created or modified an experiment,
|
15158
|
+
# trial, trial component, lineage group, project, or model card.
|
15159
|
+
# @return [Types::UserContext]
|
15160
|
+
#
|
15161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServerResponse AWS API Documentation
|
15162
|
+
#
|
15163
|
+
class DescribeMlflowTrackingServerResponse < Struct.new(
|
15164
|
+
:tracking_server_arn,
|
15165
|
+
:tracking_server_name,
|
15166
|
+
:artifact_store_uri,
|
15167
|
+
:tracking_server_size,
|
15168
|
+
:mlflow_version,
|
15169
|
+
:role_arn,
|
15170
|
+
:tracking_server_status,
|
15171
|
+
:is_active,
|
15172
|
+
:tracking_server_url,
|
15173
|
+
:weekly_maintenance_window_start,
|
15174
|
+
:automatic_model_registration,
|
15175
|
+
:creation_time,
|
15176
|
+
:created_by,
|
15177
|
+
:last_modified_time,
|
15178
|
+
:last_modified_by)
|
15179
|
+
SENSITIVE = []
|
15180
|
+
include Aws::Structure
|
15181
|
+
end
|
15182
|
+
|
14861
15183
|
# @!attribute [rw] job_definition_name
|
14862
15184
|
# The name of the model bias job definition. The name must be unique
|
14863
15185
|
# within an Amazon Web Services Region in the Amazon Web Services
|
@@ -15500,12 +15822,15 @@ module Aws::SageMaker
|
|
15500
15822
|
# schema of `ModelCard`. The `ModelPackageModelCard` schema does not
|
15501
15823
|
# include `model_package_details`, and `model_overview` is composed of
|
15502
15824
|
# the `model_creator` and `model_artifact` properties. For more
|
15503
|
-
# information about the model
|
15504
|
-
#
|
15825
|
+
# information about the model package model card schema, see [Model
|
15826
|
+
# package model card schema][1]. For more information about the model
|
15827
|
+
# card associated with the model package, see [View the Details of a
|
15828
|
+
# Model Version][2].
|
15505
15829
|
#
|
15506
15830
|
#
|
15507
15831
|
#
|
15508
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
15832
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema
|
15833
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
15509
15834
|
# @return [Types::ModelPackageModelCard]
|
15510
15835
|
#
|
15511
15836
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
|
@@ -27720,6 +28045,92 @@ module Aws::SageMaker
|
|
27720
28045
|
include Aws::Structure
|
27721
28046
|
end
|
27722
28047
|
|
28048
|
+
# @!attribute [rw] created_after
|
28049
|
+
# Use the `CreatedAfter` filter to only list tracking servers created
|
28050
|
+
# after a specific date and time. Listed tracking servers are shown
|
28051
|
+
# with a date and time such as `"2024-03-16T01:46:56+00:00"`. The
|
28052
|
+
# `CreatedAfter` parameter takes in a Unix timestamp. To convert a
|
28053
|
+
# date and time into a Unix timestamp, see [EpochConverter][1].
|
28054
|
+
#
|
28055
|
+
#
|
28056
|
+
#
|
28057
|
+
# [1]: https://www.epochconverter.com/
|
28058
|
+
# @return [Time]
|
28059
|
+
#
|
28060
|
+
# @!attribute [rw] created_before
|
28061
|
+
# Use the `CreatedBefore` filter to only list tracking servers created
|
28062
|
+
# before a specific date and time. Listed tracking servers are shown
|
28063
|
+
# with a date and time such as `"2024-03-16T01:46:56+00:00"`. The
|
28064
|
+
# `CreatedBefore` parameter takes in a Unix timestamp. To convert a
|
28065
|
+
# date and time into a Unix timestamp, see [EpochConverter][1].
|
28066
|
+
#
|
28067
|
+
#
|
28068
|
+
#
|
28069
|
+
# [1]: https://www.epochconverter.com/
|
28070
|
+
# @return [Time]
|
28071
|
+
#
|
28072
|
+
# @!attribute [rw] tracking_server_status
|
28073
|
+
# Filter for tracking servers with a specified creation status.
|
28074
|
+
# @return [String]
|
28075
|
+
#
|
28076
|
+
# @!attribute [rw] mlflow_version
|
28077
|
+
# Filter for tracking servers using the specified MLflow version.
|
28078
|
+
# @return [String]
|
28079
|
+
#
|
28080
|
+
# @!attribute [rw] sort_by
|
28081
|
+
# Filter for trackings servers sorting by name, creation time, or
|
28082
|
+
# creation status.
|
28083
|
+
# @return [String]
|
28084
|
+
#
|
28085
|
+
# @!attribute [rw] sort_order
|
28086
|
+
# Change the order of the listed tracking servers. By default,
|
28087
|
+
# tracking servers are listed in `Descending` order by creation time.
|
28088
|
+
# To change the list order, you can specify `SortOrder` to be
|
28089
|
+
# `Ascending`.
|
28090
|
+
# @return [String]
|
28091
|
+
#
|
28092
|
+
# @!attribute [rw] next_token
|
28093
|
+
# If the previous response was truncated, you will receive this token.
|
28094
|
+
# Use it in your next request to receive the next set of results.
|
28095
|
+
# @return [String]
|
28096
|
+
#
|
28097
|
+
# @!attribute [rw] max_results
|
28098
|
+
# The maximum number of tracking servers to list.
|
28099
|
+
# @return [Integer]
|
28100
|
+
#
|
28101
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMlflowTrackingServersRequest AWS API Documentation
|
28102
|
+
#
|
28103
|
+
class ListMlflowTrackingServersRequest < Struct.new(
|
28104
|
+
:created_after,
|
28105
|
+
:created_before,
|
28106
|
+
:tracking_server_status,
|
28107
|
+
:mlflow_version,
|
28108
|
+
:sort_by,
|
28109
|
+
:sort_order,
|
28110
|
+
:next_token,
|
28111
|
+
:max_results)
|
28112
|
+
SENSITIVE = []
|
28113
|
+
include Aws::Structure
|
28114
|
+
end
|
28115
|
+
|
28116
|
+
# @!attribute [rw] tracking_server_summaries
|
28117
|
+
# A list of tracking servers according to chosen filters.
|
28118
|
+
# @return [Array<Types::TrackingServerSummary>]
|
28119
|
+
#
|
28120
|
+
# @!attribute [rw] next_token
|
28121
|
+
# If the previous response was truncated, you will receive this token.
|
28122
|
+
# Use it in your next request to receive the next set of results.
|
28123
|
+
# @return [String]
|
28124
|
+
#
|
28125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMlflowTrackingServersResponse AWS API Documentation
|
28126
|
+
#
|
28127
|
+
class ListMlflowTrackingServersResponse < Struct.new(
|
28128
|
+
:tracking_server_summaries,
|
28129
|
+
:next_token)
|
28130
|
+
SENSITIVE = []
|
28131
|
+
include Aws::Structure
|
28132
|
+
end
|
28133
|
+
|
27723
28134
|
# @!attribute [rw] endpoint_name
|
27724
28135
|
# Name of the endpoint to monitor for model bias.
|
27725
28136
|
# @return [String]
|
@@ -28167,6 +28578,14 @@ module Aws::SageMaker
|
|
28167
28578
|
# The sort order for results. The default is `Ascending`.
|
28168
28579
|
# @return [String]
|
28169
28580
|
#
|
28581
|
+
# @!attribute [rw] cross_account_filter_option
|
28582
|
+
# A filter that returns either model groups shared with you or model
|
28583
|
+
# groups in your own account. When the value is `CrossAccount`, the
|
28584
|
+
# results show the resources made discoverable to you from other
|
28585
|
+
# accounts. When the value is `SameAccount` or `null`, the results
|
28586
|
+
# show resources from your account. The default is `SameAccount`.
|
28587
|
+
# @return [String]
|
28588
|
+
#
|
28170
28589
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelPackageGroupsInput AWS API Documentation
|
28171
28590
|
#
|
28172
28591
|
class ListModelPackageGroupsInput < Struct.new(
|
@@ -28176,7 +28595,8 @@ module Aws::SageMaker
|
|
28176
28595
|
:name_contains,
|
28177
28596
|
:next_token,
|
28178
28597
|
:sort_by,
|
28179
|
-
:sort_order
|
28598
|
+
:sort_order,
|
28599
|
+
:cross_account_filter_option)
|
28180
28600
|
SENSITIVE = []
|
28181
28601
|
include Aws::Structure
|
28182
28602
|
end
|
@@ -31737,12 +32157,15 @@ module Aws::SageMaker
|
|
31737
32157
|
# schema of `ModelCard`. The `ModelPackageModelCard` schema does not
|
31738
32158
|
# include `model_package_details`, and `model_overview` is composed of
|
31739
32159
|
# the `model_creator` and `model_artifact` properties. For more
|
31740
|
-
# information about the model
|
31741
|
-
#
|
32160
|
+
# information about the model package model card schema, see [Model
|
32161
|
+
# package model card schema][1]. For more information about the model
|
32162
|
+
# card associated with the model package, see [View the Details of a
|
32163
|
+
# Model Version][2].
|
31742
32164
|
#
|
31743
32165
|
#
|
31744
32166
|
#
|
31745
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
32167
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema
|
32168
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
31746
32169
|
# @return [Types::ModelPackageModelCard]
|
31747
32170
|
#
|
31748
32171
|
# @!attribute [rw] tags
|
@@ -32006,15 +32429,23 @@ module Aws::SageMaker
|
|
32006
32429
|
# schema of `ModelCard`. The `ModelPackageModelCard` schema does not
|
32007
32430
|
# include `model_package_details`, and `model_overview` is composed of
|
32008
32431
|
# the `model_creator` and `model_artifact` properties. For more
|
32009
|
-
# information about the model
|
32010
|
-
#
|
32432
|
+
# information about the model package model card schema, see [Model
|
32433
|
+
# package model card schema][1]. For more information about the model
|
32434
|
+
# card associated with the model package, see [View the Details of a
|
32435
|
+
# Model Version][2].
|
32011
32436
|
#
|
32012
32437
|
#
|
32013
32438
|
#
|
32014
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
32439
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema
|
32440
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
32015
32441
|
#
|
32016
32442
|
# @!attribute [rw] model_card_content
|
32017
|
-
# The content of the model card.
|
32443
|
+
# The content of the model card. The content must follow the schema
|
32444
|
+
# described in [Model Package Model Card Schema][1].
|
32445
|
+
#
|
32446
|
+
#
|
32447
|
+
#
|
32448
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema
|
32018
32449
|
# @return [String]
|
32019
32450
|
#
|
32020
32451
|
# @!attribute [rw] model_card_status
|
@@ -33683,6 +34114,16 @@ module Aws::SageMaker
|
|
33683
34114
|
# private workforce.
|
33684
34115
|
# @return [String]
|
33685
34116
|
#
|
34117
|
+
# @!attribute [rw] scope
|
34118
|
+
# An array of string identifiers used to refer to the specific pieces
|
34119
|
+
# of user data or claims that the client application wants to access.
|
34120
|
+
# @return [String]
|
34121
|
+
#
|
34122
|
+
# @!attribute [rw] authentication_request_extra_params
|
34123
|
+
# A string to string map of identifiers specific to the custom
|
34124
|
+
# identity provider (IdP) being used.
|
34125
|
+
# @return [Hash<String,String>]
|
34126
|
+
#
|
33686
34127
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OidcConfig AWS API Documentation
|
33687
34128
|
#
|
33688
34129
|
class OidcConfig < Struct.new(
|
@@ -33693,7 +34134,9 @@ module Aws::SageMaker
|
|
33693
34134
|
:token_endpoint,
|
33694
34135
|
:user_info_endpoint,
|
33695
34136
|
:logout_endpoint,
|
33696
|
-
:jwks_uri
|
34137
|
+
:jwks_uri,
|
34138
|
+
:scope,
|
34139
|
+
:authentication_request_extra_params)
|
33697
34140
|
SENSITIVE = [:client_secret]
|
33698
34141
|
include Aws::Structure
|
33699
34142
|
end
|
@@ -33733,6 +34176,16 @@ module Aws::SageMaker
|
|
33733
34176
|
# private workforce.
|
33734
34177
|
# @return [String]
|
33735
34178
|
#
|
34179
|
+
# @!attribute [rw] scope
|
34180
|
+
# An array of string identifiers used to refer to the specific pieces
|
34181
|
+
# of user data or claims that the client application wants to access.
|
34182
|
+
# @return [String]
|
34183
|
+
#
|
34184
|
+
# @!attribute [rw] authentication_request_extra_params
|
34185
|
+
# A string to string map of identifiers specific to the custom
|
34186
|
+
# identity provider (IdP) being used.
|
34187
|
+
# @return [Hash<String,String>]
|
34188
|
+
#
|
33736
34189
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OidcConfigForResponse AWS API Documentation
|
33737
34190
|
#
|
33738
34191
|
class OidcConfigForResponse < Struct.new(
|
@@ -33742,7 +34195,9 @@ module Aws::SageMaker
|
|
33742
34195
|
:token_endpoint,
|
33743
34196
|
:user_info_endpoint,
|
33744
34197
|
:logout_endpoint,
|
33745
|
-
:jwks_uri
|
34198
|
+
:jwks_uri,
|
34199
|
+
:scope,
|
34200
|
+
:authentication_request_extra_params)
|
33746
34201
|
SENSITIVE = []
|
33747
34202
|
include Aws::Structure
|
33748
34203
|
end
|
@@ -35698,6 +36153,19 @@ module Aws::SageMaker
|
|
35698
36153
|
# the instances that the endpoint hosts.
|
35699
36154
|
# @return [Types::ProductionVariantRoutingConfig]
|
35700
36155
|
#
|
36156
|
+
# @!attribute [rw] inference_ami_version
|
36157
|
+
# Specifies an option from a collection of preconfigured Amazon
|
36158
|
+
# Machine Image (AMI) images. Each image is configured by Amazon Web
|
36159
|
+
# Services with a set of software and driver versions. Amazon Web
|
36160
|
+
# Services optimizes these configurations for different machine
|
36161
|
+
# learning workloads.
|
36162
|
+
#
|
36163
|
+
# By selecting an AMI version, you can ensure that your inference
|
36164
|
+
# environment is compatible with specific software requirements, such
|
36165
|
+
# as CUDA driver versions, Linux kernel versions, or Amazon Web
|
36166
|
+
# Services Neuron driver versions.
|
36167
|
+
# @return [String]
|
36168
|
+
#
|
35701
36169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariant AWS API Documentation
|
35702
36170
|
#
|
35703
36171
|
class ProductionVariant < Struct.new(
|
@@ -35714,7 +36182,8 @@ module Aws::SageMaker
|
|
35714
36182
|
:container_startup_health_check_timeout_in_seconds,
|
35715
36183
|
:enable_ssm_access,
|
35716
36184
|
:managed_instance_scaling,
|
35717
|
-
:routing_config
|
36185
|
+
:routing_config,
|
36186
|
+
:inference_ami_version)
|
35718
36187
|
SENSITIVE = []
|
35719
36188
|
include Aws::Structure
|
35720
36189
|
end
|
@@ -39394,7 +39863,7 @@ module Aws::SageMaker
|
|
39394
39863
|
|
39395
39864
|
# A list of IP address ranges ([CIDRs][1]). Used to create an allow list
|
39396
39865
|
# of IP addresses for a private workforce. Workers will only be able to
|
39397
|
-
#
|
39866
|
+
# log in to their worker portal from an IP address within this range. By
|
39398
39867
|
# default, a workforce isn't restricted to specific IP addresses.
|
39399
39868
|
#
|
39400
39869
|
#
|
@@ -39691,6 +40160,30 @@ module Aws::SageMaker
|
|
39691
40160
|
include Aws::Structure
|
39692
40161
|
end
|
39693
40162
|
|
40163
|
+
# @!attribute [rw] tracking_server_name
|
40164
|
+
# The name of the tracking server to start.
|
40165
|
+
# @return [String]
|
40166
|
+
#
|
40167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartMlflowTrackingServerRequest AWS API Documentation
|
40168
|
+
#
|
40169
|
+
class StartMlflowTrackingServerRequest < Struct.new(
|
40170
|
+
:tracking_server_name)
|
40171
|
+
SENSITIVE = []
|
40172
|
+
include Aws::Structure
|
40173
|
+
end
|
40174
|
+
|
40175
|
+
# @!attribute [rw] tracking_server_arn
|
40176
|
+
# The ARN of the started tracking server.
|
40177
|
+
# @return [String]
|
40178
|
+
#
|
40179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartMlflowTrackingServerResponse AWS API Documentation
|
40180
|
+
#
|
40181
|
+
class StartMlflowTrackingServerResponse < Struct.new(
|
40182
|
+
:tracking_server_arn)
|
40183
|
+
SENSITIVE = []
|
40184
|
+
include Aws::Structure
|
40185
|
+
end
|
40186
|
+
|
39694
40187
|
# @!attribute [rw] monitoring_schedule_name
|
39695
40188
|
# The name of the schedule to start.
|
39696
40189
|
# @return [String]
|
@@ -39923,6 +40416,30 @@ module Aws::SageMaker
|
|
39923
40416
|
include Aws::Structure
|
39924
40417
|
end
|
39925
40418
|
|
40419
|
+
# @!attribute [rw] tracking_server_name
|
40420
|
+
# The name of the tracking server to stop.
|
40421
|
+
# @return [String]
|
40422
|
+
#
|
40423
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopMlflowTrackingServerRequest AWS API Documentation
|
40424
|
+
#
|
40425
|
+
class StopMlflowTrackingServerRequest < Struct.new(
|
40426
|
+
:tracking_server_name)
|
40427
|
+
SENSITIVE = []
|
40428
|
+
include Aws::Structure
|
40429
|
+
end
|
40430
|
+
|
40431
|
+
# @!attribute [rw] tracking_server_arn
|
40432
|
+
# The ARN of the stopped tracking server.
|
40433
|
+
# @return [String]
|
40434
|
+
#
|
40435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopMlflowTrackingServerResponse AWS API Documentation
|
40436
|
+
#
|
40437
|
+
class StopMlflowTrackingServerResponse < Struct.new(
|
40438
|
+
:tracking_server_arn)
|
40439
|
+
SENSITIVE = []
|
40440
|
+
include Aws::Structure
|
40441
|
+
end
|
40442
|
+
|
39926
40443
|
# @!attribute [rw] monitoring_schedule_name
|
39927
40444
|
# The name of the schedule to stop.
|
39928
40445
|
# @return [String]
|
@@ -40124,7 +40641,7 @@ module Aws::SageMaker
|
|
40124
40641
|
include Aws::Structure
|
40125
40642
|
end
|
40126
40643
|
|
40127
|
-
# Describes a work team of a vendor that does the
|
40644
|
+
# Describes a work team of a vendor that does the labelling job.
|
40128
40645
|
#
|
40129
40646
|
# @!attribute [rw] workteam_arn
|
40130
40647
|
# The Amazon Resource Name (ARN) of the vendor that you have
|
@@ -40999,6 +41516,50 @@ module Aws::SageMaker
|
|
40999
41516
|
include Aws::Structure
|
41000
41517
|
end
|
41001
41518
|
|
41519
|
+
# The summary of the tracking server to list.
|
41520
|
+
#
|
41521
|
+
# @!attribute [rw] tracking_server_arn
|
41522
|
+
# The ARN of a listed tracking server.
|
41523
|
+
# @return [String]
|
41524
|
+
#
|
41525
|
+
# @!attribute [rw] tracking_server_name
|
41526
|
+
# The name of a listed tracking server.
|
41527
|
+
# @return [String]
|
41528
|
+
#
|
41529
|
+
# @!attribute [rw] creation_time
|
41530
|
+
# The creation time of a listed tracking server.
|
41531
|
+
# @return [Time]
|
41532
|
+
#
|
41533
|
+
# @!attribute [rw] last_modified_time
|
41534
|
+
# The last modified time of a listed tracking server.
|
41535
|
+
# @return [Time]
|
41536
|
+
#
|
41537
|
+
# @!attribute [rw] tracking_server_status
|
41538
|
+
# The creation status of a listed tracking server.
|
41539
|
+
# @return [String]
|
41540
|
+
#
|
41541
|
+
# @!attribute [rw] is_active
|
41542
|
+
# The activity status of a listed tracking server.
|
41543
|
+
# @return [String]
|
41544
|
+
#
|
41545
|
+
# @!attribute [rw] mlflow_version
|
41546
|
+
# The MLflow version used for a listed tracking server.
|
41547
|
+
# @return [String]
|
41548
|
+
#
|
41549
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrackingServerSummary AWS API Documentation
|
41550
|
+
#
|
41551
|
+
class TrackingServerSummary < Struct.new(
|
41552
|
+
:tracking_server_arn,
|
41553
|
+
:tracking_server_name,
|
41554
|
+
:creation_time,
|
41555
|
+
:last_modified_time,
|
41556
|
+
:tracking_server_status,
|
41557
|
+
:is_active,
|
41558
|
+
:mlflow_version)
|
41559
|
+
SENSITIVE = []
|
41560
|
+
include Aws::Structure
|
41561
|
+
end
|
41562
|
+
|
41002
41563
|
# Defines the traffic pattern of the load test.
|
41003
41564
|
#
|
41004
41565
|
# @!attribute [rw] traffic_type
|
@@ -44047,6 +44608,57 @@ module Aws::SageMaker
|
|
44047
44608
|
include Aws::Structure
|
44048
44609
|
end
|
44049
44610
|
|
44611
|
+
# @!attribute [rw] tracking_server_name
|
44612
|
+
# The name of the MLflow Tracking Server to update.
|
44613
|
+
# @return [String]
|
44614
|
+
#
|
44615
|
+
# @!attribute [rw] artifact_store_uri
|
44616
|
+
# The new S3 URI for the general purpose bucket to use as the artifact
|
44617
|
+
# store for the MLflow Tracking Server.
|
44618
|
+
# @return [String]
|
44619
|
+
#
|
44620
|
+
# @!attribute [rw] tracking_server_size
|
44621
|
+
# The new size for the MLflow Tracking Server.
|
44622
|
+
# @return [String]
|
44623
|
+
#
|
44624
|
+
# @!attribute [rw] automatic_model_registration
|
44625
|
+
# Whether to enable or disable automatic registration of new MLflow
|
44626
|
+
# models to the SageMaker Model Registry. To enable automatic model
|
44627
|
+
# registration, set this value to `True`. To disable automatic model
|
44628
|
+
# registration, set this value to `False`. If not specified,
|
44629
|
+
# `AutomaticModelRegistration` defaults to `False`
|
44630
|
+
# @return [Boolean]
|
44631
|
+
#
|
44632
|
+
# @!attribute [rw] weekly_maintenance_window_start
|
44633
|
+
# The new weekly maintenance window start day and time to update. The
|
44634
|
+
# maintenance window day and time should be in Coordinated Universal
|
44635
|
+
# Time (UTC) 24-hour standard time. For example: TUE:03:30.
|
44636
|
+
# @return [String]
|
44637
|
+
#
|
44638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMlflowTrackingServerRequest AWS API Documentation
|
44639
|
+
#
|
44640
|
+
class UpdateMlflowTrackingServerRequest < Struct.new(
|
44641
|
+
:tracking_server_name,
|
44642
|
+
:artifact_store_uri,
|
44643
|
+
:tracking_server_size,
|
44644
|
+
:automatic_model_registration,
|
44645
|
+
:weekly_maintenance_window_start)
|
44646
|
+
SENSITIVE = []
|
44647
|
+
include Aws::Structure
|
44648
|
+
end
|
44649
|
+
|
44650
|
+
# @!attribute [rw] tracking_server_arn
|
44651
|
+
# The ARN of the updated MLflow Tracking Server.
|
44652
|
+
# @return [String]
|
44653
|
+
#
|
44654
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMlflowTrackingServerResponse AWS API Documentation
|
44655
|
+
#
|
44656
|
+
class UpdateMlflowTrackingServerResponse < Struct.new(
|
44657
|
+
:tracking_server_arn)
|
44658
|
+
SENSITIVE = []
|
44659
|
+
include Aws::Structure
|
44660
|
+
end
|
44661
|
+
|
44050
44662
|
# @!attribute [rw] model_card_name
|
44051
44663
|
# The name or Amazon Resource Name (ARN) of the model card to update.
|
44052
44664
|
# @return [String]
|
@@ -44155,12 +44767,15 @@ module Aws::SageMaker
|
|
44155
44767
|
# schema of `ModelCard`. The `ModelPackageModelCard` schema does not
|
44156
44768
|
# include `model_package_details`, and `model_overview` is composed of
|
44157
44769
|
# the `model_creator` and `model_artifact` properties. For more
|
44158
|
-
# information about the model
|
44159
|
-
#
|
44770
|
+
# information about the model package model card schema, see [Model
|
44771
|
+
# package model card schema][1]. For more information about the model
|
44772
|
+
# card associated with the model package, see [View the Details of a
|
44773
|
+
# Model Version][2].
|
44160
44774
|
#
|
44161
44775
|
#
|
44162
44776
|
#
|
44163
|
-
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
44777
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html#model-card-schema
|
44778
|
+
# [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
|
44164
44779
|
# @return [Types::ModelPackageModelCard]
|
44165
44780
|
#
|
44166
44781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
|
@@ -45478,7 +46093,7 @@ module Aws::SageMaker
|
|
45478
46093
|
# @return [String]
|
45479
46094
|
#
|
45480
46095
|
# @!attribute [rw] security_group_ids
|
45481
|
-
# The VPC security group IDs, in the form sg-xxxxxxxx
|
46096
|
+
# The VPC security group IDs, in the form `sg-xxxxxxxx`. The security
|
45482
46097
|
# groups must be for the same VPC as specified in the subnet.
|
45483
46098
|
# @return [Array<String>]
|
45484
46099
|
#
|