aws-sdk-sagemaker 1.246.0 → 1.248.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 +623 -61
- data/lib/aws-sdk-sagemaker/client_api.rb +299 -13
- data/lib/aws-sdk-sagemaker/endpoints.rb +140 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +20 -0
- data/lib/aws-sdk-sagemaker/types.rb +714 -11
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +205 -11
- data/sig/types.rbs +191 -7
- 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)
|
@@ -6616,6 +6682,55 @@ module Aws::SageMaker
|
|
6616
6682
|
include Aws::Structure
|
6617
6683
|
end
|
6618
6684
|
|
6685
|
+
# @!attribute [rw] hub_name
|
6686
|
+
# The name of the hub to add the hub content reference to.
|
6687
|
+
# @return [String]
|
6688
|
+
#
|
6689
|
+
# @!attribute [rw] sage_maker_public_hub_content_arn
|
6690
|
+
# The ARN of the public hub content to reference.
|
6691
|
+
# @return [String]
|
6692
|
+
#
|
6693
|
+
# @!attribute [rw] hub_content_name
|
6694
|
+
# The name of the hub content to reference.
|
6695
|
+
# @return [String]
|
6696
|
+
#
|
6697
|
+
# @!attribute [rw] min_version
|
6698
|
+
# The minimum version of the hub content to reference.
|
6699
|
+
# @return [String]
|
6700
|
+
#
|
6701
|
+
# @!attribute [rw] tags
|
6702
|
+
# Any tags associated with the hub content to reference.
|
6703
|
+
# @return [Array<Types::Tag>]
|
6704
|
+
#
|
6705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateHubContentReferenceRequest AWS API Documentation
|
6706
|
+
#
|
6707
|
+
class CreateHubContentReferenceRequest < Struct.new(
|
6708
|
+
:hub_name,
|
6709
|
+
:sage_maker_public_hub_content_arn,
|
6710
|
+
:hub_content_name,
|
6711
|
+
:min_version,
|
6712
|
+
:tags)
|
6713
|
+
SENSITIVE = []
|
6714
|
+
include Aws::Structure
|
6715
|
+
end
|
6716
|
+
|
6717
|
+
# @!attribute [rw] hub_arn
|
6718
|
+
# The ARN of the hub that the hub content reference was added to.
|
6719
|
+
# @return [String]
|
6720
|
+
#
|
6721
|
+
# @!attribute [rw] hub_content_arn
|
6722
|
+
# The ARN of the hub content.
|
6723
|
+
# @return [String]
|
6724
|
+
#
|
6725
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateHubContentReferenceResponse AWS API Documentation
|
6726
|
+
#
|
6727
|
+
class CreateHubContentReferenceResponse < Struct.new(
|
6728
|
+
:hub_arn,
|
6729
|
+
:hub_content_arn)
|
6730
|
+
SENSITIVE = []
|
6731
|
+
include Aws::Structure
|
6732
|
+
end
|
6733
|
+
|
6619
6734
|
# @!attribute [rw] hub_name
|
6620
6735
|
# The name of the hub to create.
|
6621
6736
|
# @return [String]
|
@@ -7502,6 +7617,95 @@ module Aws::SageMaker
|
|
7502
7617
|
include Aws::Structure
|
7503
7618
|
end
|
7504
7619
|
|
7620
|
+
# @!attribute [rw] tracking_server_name
|
7621
|
+
# A unique string identifying the tracking server name. This string is
|
7622
|
+
# part of the tracking server ARN.
|
7623
|
+
# @return [String]
|
7624
|
+
#
|
7625
|
+
# @!attribute [rw] artifact_store_uri
|
7626
|
+
# The S3 URI for a general purpose bucket to use as the MLflow
|
7627
|
+
# Tracking Server artifact store.
|
7628
|
+
# @return [String]
|
7629
|
+
#
|
7630
|
+
# @!attribute [rw] tracking_server_size
|
7631
|
+
# The size of the tracking server you want to create. You can choose
|
7632
|
+
# between `"Small"`, `"Medium"`, and `"Large"`. The default MLflow
|
7633
|
+
# Tracking Server configuration size is `"Small"`. You can choose a
|
7634
|
+
# size depending on the projected use of the tracking server such as
|
7635
|
+
# the volume of data logged, number of users, and frequency of use.
|
7636
|
+
#
|
7637
|
+
# We recommend using a small tracking server for teams of up to 25
|
7638
|
+
# users, a medium tracking server for teams of up to 50 users, and a
|
7639
|
+
# large tracking server for teams of up to 100 users.
|
7640
|
+
# @return [String]
|
7641
|
+
#
|
7642
|
+
# @!attribute [rw] mlflow_version
|
7643
|
+
# The version of MLflow that the tracking server uses. To see which
|
7644
|
+
# MLflow versions are available to use, see [How it works][1].
|
7645
|
+
#
|
7646
|
+
#
|
7647
|
+
#
|
7648
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow.html#mlflow-create-tracking-server-how-it-works
|
7649
|
+
# @return [String]
|
7650
|
+
#
|
7651
|
+
# @!attribute [rw] role_arn
|
7652
|
+
# The Amazon Resource Name (ARN) for an IAM role in your account that
|
7653
|
+
# the MLflow Tracking Server uses to access the artifact store in
|
7654
|
+
# Amazon S3. The role should have `AmazonS3FullAccess` permissions.
|
7655
|
+
# For more information on IAM permissions for tracking server
|
7656
|
+
# creation, see [Set up IAM permissions for MLflow][1].
|
7657
|
+
#
|
7658
|
+
#
|
7659
|
+
#
|
7660
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/mlflow-create-tracking-server-iam.html
|
7661
|
+
# @return [String]
|
7662
|
+
#
|
7663
|
+
# @!attribute [rw] automatic_model_registration
|
7664
|
+
# Whether to enable or disable automatic registration of new MLflow
|
7665
|
+
# models to the SageMaker Model Registry. To enable automatic model
|
7666
|
+
# registration, set this value to `True`. To disable automatic model
|
7667
|
+
# registration, set this value to `False`. If not specified,
|
7668
|
+
# `AutomaticModelRegistration` defaults to `False`.
|
7669
|
+
# @return [Boolean]
|
7670
|
+
#
|
7671
|
+
# @!attribute [rw] weekly_maintenance_window_start
|
7672
|
+
# The day and time of the week in Coordinated Universal Time (UTC)
|
7673
|
+
# 24-hour standard time that weekly maintenance updates are scheduled.
|
7674
|
+
# For example: TUE:03:30.
|
7675
|
+
# @return [String]
|
7676
|
+
#
|
7677
|
+
# @!attribute [rw] tags
|
7678
|
+
# Tags consisting of key-value pairs used to manage metadata for the
|
7679
|
+
# tracking server.
|
7680
|
+
# @return [Array<Types::Tag>]
|
7681
|
+
#
|
7682
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMlflowTrackingServerRequest AWS API Documentation
|
7683
|
+
#
|
7684
|
+
class CreateMlflowTrackingServerRequest < Struct.new(
|
7685
|
+
:tracking_server_name,
|
7686
|
+
:artifact_store_uri,
|
7687
|
+
:tracking_server_size,
|
7688
|
+
:mlflow_version,
|
7689
|
+
:role_arn,
|
7690
|
+
:automatic_model_registration,
|
7691
|
+
:weekly_maintenance_window_start,
|
7692
|
+
:tags)
|
7693
|
+
SENSITIVE = []
|
7694
|
+
include Aws::Structure
|
7695
|
+
end
|
7696
|
+
|
7697
|
+
# @!attribute [rw] tracking_server_arn
|
7698
|
+
# The ARN of the tracking server.
|
7699
|
+
# @return [String]
|
7700
|
+
#
|
7701
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMlflowTrackingServerResponse AWS API Documentation
|
7702
|
+
#
|
7703
|
+
class CreateMlflowTrackingServerResponse < Struct.new(
|
7704
|
+
:tracking_server_arn)
|
7705
|
+
SENSITIVE = []
|
7706
|
+
include Aws::Structure
|
7707
|
+
end
|
7708
|
+
|
7505
7709
|
# @!attribute [rw] job_definition_name
|
7506
7710
|
# The name of the bias job definition. The name must be unique within
|
7507
7711
|
# an Amazon Web Services Region in the Amazon Web Services account.
|
@@ -8611,6 +8815,41 @@ module Aws::SageMaker
|
|
8611
8815
|
include Aws::Structure
|
8612
8816
|
end
|
8613
8817
|
|
8818
|
+
# @!attribute [rw] tracking_server_name
|
8819
|
+
# The name of the tracking server to connect to your MLflow UI.
|
8820
|
+
# @return [String]
|
8821
|
+
#
|
8822
|
+
# @!attribute [rw] expires_in_seconds
|
8823
|
+
# The duration in seconds that your presigned URL is valid. The
|
8824
|
+
# presigned URL can be used only once.
|
8825
|
+
# @return [Integer]
|
8826
|
+
#
|
8827
|
+
# @!attribute [rw] session_expiration_duration_in_seconds
|
8828
|
+
# The duration in seconds that your MLflow UI session is valid.
|
8829
|
+
# @return [Integer]
|
8830
|
+
#
|
8831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePresignedMlflowTrackingServerUrlRequest AWS API Documentation
|
8832
|
+
#
|
8833
|
+
class CreatePresignedMlflowTrackingServerUrlRequest < Struct.new(
|
8834
|
+
:tracking_server_name,
|
8835
|
+
:expires_in_seconds,
|
8836
|
+
:session_expiration_duration_in_seconds)
|
8837
|
+
SENSITIVE = []
|
8838
|
+
include Aws::Structure
|
8839
|
+
end
|
8840
|
+
|
8841
|
+
# @!attribute [rw] authorized_url
|
8842
|
+
# A presigned URL with an authorization token.
|
8843
|
+
# @return [String]
|
8844
|
+
#
|
8845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreatePresignedMlflowTrackingServerUrlResponse AWS API Documentation
|
8846
|
+
#
|
8847
|
+
class CreatePresignedMlflowTrackingServerUrlResponse < Struct.new(
|
8848
|
+
:authorized_url)
|
8849
|
+
SENSITIVE = []
|
8850
|
+
include Aws::Structure
|
8851
|
+
end
|
8852
|
+
|
8614
8853
|
# @!attribute [rw] notebook_instance_name
|
8615
8854
|
# The name of the notebook instance.
|
8616
8855
|
# @return [String]
|
@@ -9593,7 +9832,7 @@ module Aws::SageMaker
|
|
9593
9832
|
# @!attribute [rw] source_ip_config
|
9594
9833
|
# A list of IP address ranges ([CIDRs][1]). Used to create an allow
|
9595
9834
|
# list of IP addresses for a private workforce. Workers will only be
|
9596
|
-
# able to
|
9835
|
+
# able to log in to their worker portal from an IP address within this
|
9597
9836
|
# range. By default, a workforce isn't restricted to specific IP
|
9598
9837
|
# addresses.
|
9599
9838
|
#
|
@@ -10807,6 +11046,28 @@ module Aws::SageMaker
|
|
10807
11046
|
#
|
10808
11047
|
class DeleteFlowDefinitionResponse < Aws::EmptyStructure; end
|
10809
11048
|
|
11049
|
+
# @!attribute [rw] hub_name
|
11050
|
+
# The name of the hub to delete the hub content reference from.
|
11051
|
+
# @return [String]
|
11052
|
+
#
|
11053
|
+
# @!attribute [rw] hub_content_type
|
11054
|
+
# The type of hub content to delete.
|
11055
|
+
# @return [String]
|
11056
|
+
#
|
11057
|
+
# @!attribute [rw] hub_content_name
|
11058
|
+
# The name of the hub content to delete.
|
11059
|
+
# @return [String]
|
11060
|
+
#
|
11061
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteHubContentReferenceRequest AWS API Documentation
|
11062
|
+
#
|
11063
|
+
class DeleteHubContentReferenceRequest < Struct.new(
|
11064
|
+
:hub_name,
|
11065
|
+
:hub_content_type,
|
11066
|
+
:hub_content_name)
|
11067
|
+
SENSITIVE = []
|
11068
|
+
include Aws::Structure
|
11069
|
+
end
|
11070
|
+
|
10810
11071
|
# @!attribute [rw] hub_name
|
10811
11072
|
# The name of the hub that you want to delete content in.
|
10812
11073
|
# @return [String]
|
@@ -10953,6 +11214,31 @@ module Aws::SageMaker
|
|
10953
11214
|
include Aws::Structure
|
10954
11215
|
end
|
10955
11216
|
|
11217
|
+
# @!attribute [rw] tracking_server_name
|
11218
|
+
# The name of the the tracking server to delete.
|
11219
|
+
# @return [String]
|
11220
|
+
#
|
11221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteMlflowTrackingServerRequest AWS API Documentation
|
11222
|
+
#
|
11223
|
+
class DeleteMlflowTrackingServerRequest < Struct.new(
|
11224
|
+
:tracking_server_name)
|
11225
|
+
SENSITIVE = []
|
11226
|
+
include Aws::Structure
|
11227
|
+
end
|
11228
|
+
|
11229
|
+
# @!attribute [rw] tracking_server_arn
|
11230
|
+
# A `TrackingServerArn` object, the ARN of the tracking server that is
|
11231
|
+
# deleted if successfully found.
|
11232
|
+
# @return [String]
|
11233
|
+
#
|
11234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteMlflowTrackingServerResponse AWS API Documentation
|
11235
|
+
#
|
11236
|
+
class DeleteMlflowTrackingServerResponse < Struct.new(
|
11237
|
+
:tracking_server_arn)
|
11238
|
+
SENSITIVE = []
|
11239
|
+
include Aws::Structure
|
11240
|
+
end
|
11241
|
+
|
10956
11242
|
# @!attribute [rw] job_definition_name
|
10957
11243
|
# The name of the model bias job definition to delete.
|
10958
11244
|
# @return [String]
|
@@ -13789,6 +14075,18 @@ module Aws::SageMaker
|
|
13789
14075
|
# content such as type, associated containers, scripts, and more.
|
13790
14076
|
# @return [String]
|
13791
14077
|
#
|
14078
|
+
# @!attribute [rw] sage_maker_public_hub_content_arn
|
14079
|
+
# The ARN of the public hub content.
|
14080
|
+
# @return [String]
|
14081
|
+
#
|
14082
|
+
# @!attribute [rw] reference_min_version
|
14083
|
+
# The minimum version of the hub content.
|
14084
|
+
# @return [String]
|
14085
|
+
#
|
14086
|
+
# @!attribute [rw] support_status
|
14087
|
+
# The support status of the hub content.
|
14088
|
+
# @return [String]
|
14089
|
+
#
|
13792
14090
|
# @!attribute [rw] hub_content_search_keywords
|
13793
14091
|
# The searchable keywords for the hub content.
|
13794
14092
|
# @return [Array<String>]
|
@@ -13824,6 +14122,9 @@ module Aws::SageMaker
|
|
13824
14122
|
:hub_content_description,
|
13825
14123
|
:hub_content_markdown,
|
13826
14124
|
:hub_content_document,
|
14125
|
+
:sage_maker_public_hub_content_arn,
|
14126
|
+
:reference_min_version,
|
14127
|
+
:support_status,
|
13827
14128
|
:hub_content_search_keywords,
|
13828
14129
|
:hub_content_dependencies,
|
13829
14130
|
:hub_content_status,
|
@@ -14861,6 +15162,110 @@ module Aws::SageMaker
|
|
14861
15162
|
include Aws::Structure
|
14862
15163
|
end
|
14863
15164
|
|
15165
|
+
# @!attribute [rw] tracking_server_name
|
15166
|
+
# The name of the MLflow Tracking Server to describe.
|
15167
|
+
# @return [String]
|
15168
|
+
#
|
15169
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServerRequest AWS API Documentation
|
15170
|
+
#
|
15171
|
+
class DescribeMlflowTrackingServerRequest < Struct.new(
|
15172
|
+
:tracking_server_name)
|
15173
|
+
SENSITIVE = []
|
15174
|
+
include Aws::Structure
|
15175
|
+
end
|
15176
|
+
|
15177
|
+
# @!attribute [rw] tracking_server_arn
|
15178
|
+
# The ARN of the described tracking server.
|
15179
|
+
# @return [String]
|
15180
|
+
#
|
15181
|
+
# @!attribute [rw] tracking_server_name
|
15182
|
+
# The name of the described tracking server.
|
15183
|
+
# @return [String]
|
15184
|
+
#
|
15185
|
+
# @!attribute [rw] artifact_store_uri
|
15186
|
+
# The S3 URI of the general purpose bucket used as the MLflow Tracking
|
15187
|
+
# Server artifact store.
|
15188
|
+
# @return [String]
|
15189
|
+
#
|
15190
|
+
# @!attribute [rw] tracking_server_size
|
15191
|
+
# The size of the described tracking server.
|
15192
|
+
# @return [String]
|
15193
|
+
#
|
15194
|
+
# @!attribute [rw] mlflow_version
|
15195
|
+
# The MLflow version used for the described tracking server.
|
15196
|
+
# @return [String]
|
15197
|
+
#
|
15198
|
+
# @!attribute [rw] role_arn
|
15199
|
+
# The Amazon Resource Name (ARN) for an IAM role in your account that
|
15200
|
+
# the described MLflow Tracking Server uses to access the artifact
|
15201
|
+
# store in Amazon S3.
|
15202
|
+
# @return [String]
|
15203
|
+
#
|
15204
|
+
# @!attribute [rw] tracking_server_status
|
15205
|
+
# The current creation status of the described MLflow Tracking Server.
|
15206
|
+
# @return [String]
|
15207
|
+
#
|
15208
|
+
# @!attribute [rw] is_active
|
15209
|
+
# Whether the described MLflow Tracking Server is currently active.
|
15210
|
+
# @return [String]
|
15211
|
+
#
|
15212
|
+
# @!attribute [rw] tracking_server_url
|
15213
|
+
# The URL to connect to the MLflow user interface for the described
|
15214
|
+
# tracking server.
|
15215
|
+
# @return [String]
|
15216
|
+
#
|
15217
|
+
# @!attribute [rw] weekly_maintenance_window_start
|
15218
|
+
# The day and time of the week when weekly maintenance occurs on the
|
15219
|
+
# described tracking server.
|
15220
|
+
# @return [String]
|
15221
|
+
#
|
15222
|
+
# @!attribute [rw] automatic_model_registration
|
15223
|
+
# Whether automatic registration of new MLflow models to the SageMaker
|
15224
|
+
# Model Registry is enabled.
|
15225
|
+
# @return [Boolean]
|
15226
|
+
#
|
15227
|
+
# @!attribute [rw] creation_time
|
15228
|
+
# The timestamp of when the described MLflow Tracking Server was
|
15229
|
+
# created.
|
15230
|
+
# @return [Time]
|
15231
|
+
#
|
15232
|
+
# @!attribute [rw] created_by
|
15233
|
+
# Information about the user who created or modified an experiment,
|
15234
|
+
# trial, trial component, lineage group, project, or model card.
|
15235
|
+
# @return [Types::UserContext]
|
15236
|
+
#
|
15237
|
+
# @!attribute [rw] last_modified_time
|
15238
|
+
# The timestamp of when the described MLflow Tracking Server was last
|
15239
|
+
# modified.
|
15240
|
+
# @return [Time]
|
15241
|
+
#
|
15242
|
+
# @!attribute [rw] last_modified_by
|
15243
|
+
# Information about the user who created or modified an experiment,
|
15244
|
+
# trial, trial component, lineage group, project, or model card.
|
15245
|
+
# @return [Types::UserContext]
|
15246
|
+
#
|
15247
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServerResponse AWS API Documentation
|
15248
|
+
#
|
15249
|
+
class DescribeMlflowTrackingServerResponse < Struct.new(
|
15250
|
+
:tracking_server_arn,
|
15251
|
+
:tracking_server_name,
|
15252
|
+
:artifact_store_uri,
|
15253
|
+
:tracking_server_size,
|
15254
|
+
:mlflow_version,
|
15255
|
+
:role_arn,
|
15256
|
+
:tracking_server_status,
|
15257
|
+
:is_active,
|
15258
|
+
:tracking_server_url,
|
15259
|
+
:weekly_maintenance_window_start,
|
15260
|
+
:automatic_model_registration,
|
15261
|
+
:creation_time,
|
15262
|
+
:created_by,
|
15263
|
+
:last_modified_time,
|
15264
|
+
:last_modified_by)
|
15265
|
+
SENSITIVE = []
|
15266
|
+
include Aws::Structure
|
15267
|
+
end
|
15268
|
+
|
14864
15269
|
# @!attribute [rw] job_definition_name
|
14865
15270
|
# The name of the model bias job definition. The name must be unique
|
14866
15271
|
# within an Amazon Web Services Region in the Amazon Web Services
|
@@ -20314,6 +20719,10 @@ module Aws::SageMaker
|
|
20314
20719
|
# The Amazon Resource Name (ARN) of the hub content.
|
20315
20720
|
# @return [String]
|
20316
20721
|
#
|
20722
|
+
# @!attribute [rw] sage_maker_public_hub_content_arn
|
20723
|
+
# The ARN of the public hub content.
|
20724
|
+
# @return [String]
|
20725
|
+
#
|
20317
20726
|
# @!attribute [rw] hub_content_version
|
20318
20727
|
# The version of the hub content.
|
20319
20728
|
# @return [String]
|
@@ -20334,6 +20743,10 @@ module Aws::SageMaker
|
|
20334
20743
|
# A description of the hub content.
|
20335
20744
|
# @return [String]
|
20336
20745
|
#
|
20746
|
+
# @!attribute [rw] support_status
|
20747
|
+
# The support status of the hub content.
|
20748
|
+
# @return [String]
|
20749
|
+
#
|
20337
20750
|
# @!attribute [rw] hub_content_search_keywords
|
20338
20751
|
# The searchable keywords for the hub content.
|
20339
20752
|
# @return [Array<String>]
|
@@ -20346,19 +20759,27 @@ module Aws::SageMaker
|
|
20346
20759
|
# The date and time that the hub content was created.
|
20347
20760
|
# @return [Time]
|
20348
20761
|
#
|
20762
|
+
# @!attribute [rw] original_creation_time
|
20763
|
+
# The date and time when the hub content was originally created,
|
20764
|
+
# before any updates or revisions.
|
20765
|
+
# @return [Time]
|
20766
|
+
#
|
20349
20767
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HubContentInfo AWS API Documentation
|
20350
20768
|
#
|
20351
20769
|
class HubContentInfo < Struct.new(
|
20352
20770
|
:hub_content_name,
|
20353
20771
|
:hub_content_arn,
|
20772
|
+
:sage_maker_public_hub_content_arn,
|
20354
20773
|
:hub_content_version,
|
20355
20774
|
:hub_content_type,
|
20356
20775
|
:document_schema_version,
|
20357
20776
|
:hub_content_display_name,
|
20358
20777
|
:hub_content_description,
|
20778
|
+
:support_status,
|
20359
20779
|
:hub_content_search_keywords,
|
20360
20780
|
:hub_content_status,
|
20361
|
-
:creation_time
|
20781
|
+
:creation_time,
|
20782
|
+
:original_creation_time)
|
20362
20783
|
SENSITIVE = []
|
20363
20784
|
include Aws::Structure
|
20364
20785
|
end
|
@@ -23438,6 +23859,21 @@ module Aws::SageMaker
|
|
23438
23859
|
include Aws::Structure
|
23439
23860
|
end
|
23440
23861
|
|
23862
|
+
# Configuration information specifying which hub contents have
|
23863
|
+
# accessible deployment options.
|
23864
|
+
#
|
23865
|
+
# @!attribute [rw] hub_content_arn
|
23866
|
+
# The ARN of the hub content for which deployment access is allowed.
|
23867
|
+
# @return [String]
|
23868
|
+
#
|
23869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceHubAccessConfig AWS API Documentation
|
23870
|
+
#
|
23871
|
+
class InferenceHubAccessConfig < Struct.new(
|
23872
|
+
:hub_content_arn)
|
23873
|
+
SENSITIVE = []
|
23874
|
+
include Aws::Structure
|
23875
|
+
end
|
23876
|
+
|
23441
23877
|
# The metrics for an existing endpoint compared in an Inference
|
23442
23878
|
# Recommender job.
|
23443
23879
|
#
|
@@ -27726,6 +28162,92 @@ module Aws::SageMaker
|
|
27726
28162
|
include Aws::Structure
|
27727
28163
|
end
|
27728
28164
|
|
28165
|
+
# @!attribute [rw] created_after
|
28166
|
+
# Use the `CreatedAfter` filter to only list tracking servers created
|
28167
|
+
# after a specific date and time. Listed tracking servers are shown
|
28168
|
+
# with a date and time such as `"2024-03-16T01:46:56+00:00"`. The
|
28169
|
+
# `CreatedAfter` parameter takes in a Unix timestamp. To convert a
|
28170
|
+
# date and time into a Unix timestamp, see [EpochConverter][1].
|
28171
|
+
#
|
28172
|
+
#
|
28173
|
+
#
|
28174
|
+
# [1]: https://www.epochconverter.com/
|
28175
|
+
# @return [Time]
|
28176
|
+
#
|
28177
|
+
# @!attribute [rw] created_before
|
28178
|
+
# Use the `CreatedBefore` filter to only list tracking servers created
|
28179
|
+
# before a specific date and time. Listed tracking servers are shown
|
28180
|
+
# with a date and time such as `"2024-03-16T01:46:56+00:00"`. The
|
28181
|
+
# `CreatedBefore` parameter takes in a Unix timestamp. To convert a
|
28182
|
+
# date and time into a Unix timestamp, see [EpochConverter][1].
|
28183
|
+
#
|
28184
|
+
#
|
28185
|
+
#
|
28186
|
+
# [1]: https://www.epochconverter.com/
|
28187
|
+
# @return [Time]
|
28188
|
+
#
|
28189
|
+
# @!attribute [rw] tracking_server_status
|
28190
|
+
# Filter for tracking servers with a specified creation status.
|
28191
|
+
# @return [String]
|
28192
|
+
#
|
28193
|
+
# @!attribute [rw] mlflow_version
|
28194
|
+
# Filter for tracking servers using the specified MLflow version.
|
28195
|
+
# @return [String]
|
28196
|
+
#
|
28197
|
+
# @!attribute [rw] sort_by
|
28198
|
+
# Filter for trackings servers sorting by name, creation time, or
|
28199
|
+
# creation status.
|
28200
|
+
# @return [String]
|
28201
|
+
#
|
28202
|
+
# @!attribute [rw] sort_order
|
28203
|
+
# Change the order of the listed tracking servers. By default,
|
28204
|
+
# tracking servers are listed in `Descending` order by creation time.
|
28205
|
+
# To change the list order, you can specify `SortOrder` to be
|
28206
|
+
# `Ascending`.
|
28207
|
+
# @return [String]
|
28208
|
+
#
|
28209
|
+
# @!attribute [rw] next_token
|
28210
|
+
# If the previous response was truncated, you will receive this token.
|
28211
|
+
# Use it in your next request to receive the next set of results.
|
28212
|
+
# @return [String]
|
28213
|
+
#
|
28214
|
+
# @!attribute [rw] max_results
|
28215
|
+
# The maximum number of tracking servers to list.
|
28216
|
+
# @return [Integer]
|
28217
|
+
#
|
28218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMlflowTrackingServersRequest AWS API Documentation
|
28219
|
+
#
|
28220
|
+
class ListMlflowTrackingServersRequest < Struct.new(
|
28221
|
+
:created_after,
|
28222
|
+
:created_before,
|
28223
|
+
:tracking_server_status,
|
28224
|
+
:mlflow_version,
|
28225
|
+
:sort_by,
|
28226
|
+
:sort_order,
|
28227
|
+
:next_token,
|
28228
|
+
:max_results)
|
28229
|
+
SENSITIVE = []
|
28230
|
+
include Aws::Structure
|
28231
|
+
end
|
28232
|
+
|
28233
|
+
# @!attribute [rw] tracking_server_summaries
|
28234
|
+
# A list of tracking servers according to chosen filters.
|
28235
|
+
# @return [Array<Types::TrackingServerSummary>]
|
28236
|
+
#
|
28237
|
+
# @!attribute [rw] next_token
|
28238
|
+
# If the previous response was truncated, you will receive this token.
|
28239
|
+
# Use it in your next request to receive the next set of results.
|
28240
|
+
# @return [String]
|
28241
|
+
#
|
28242
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMlflowTrackingServersResponse AWS API Documentation
|
28243
|
+
#
|
28244
|
+
class ListMlflowTrackingServersResponse < Struct.new(
|
28245
|
+
:tracking_server_summaries,
|
28246
|
+
:next_token)
|
28247
|
+
SENSITIVE = []
|
28248
|
+
include Aws::Structure
|
28249
|
+
end
|
28250
|
+
|
27729
28251
|
# @!attribute [rw] endpoint_name
|
27730
28252
|
# Name of the endpoint to monitor for model bias.
|
27731
28253
|
# @return [String]
|
@@ -28173,6 +28695,14 @@ module Aws::SageMaker
|
|
28173
28695
|
# The sort order for results. The default is `Ascending`.
|
28174
28696
|
# @return [String]
|
28175
28697
|
#
|
28698
|
+
# @!attribute [rw] cross_account_filter_option
|
28699
|
+
# A filter that returns either model groups shared with you or model
|
28700
|
+
# groups in your own account. When the value is `CrossAccount`, the
|
28701
|
+
# results show the resources made discoverable to you from other
|
28702
|
+
# accounts. When the value is `SameAccount` or `null`, the results
|
28703
|
+
# show resources from your account. The default is `SameAccount`.
|
28704
|
+
# @return [String]
|
28705
|
+
#
|
28176
28706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelPackageGroupsInput AWS API Documentation
|
28177
28707
|
#
|
28178
28708
|
class ListModelPackageGroupsInput < Struct.new(
|
@@ -28182,7 +28712,8 @@ module Aws::SageMaker
|
|
28182
28712
|
:name_contains,
|
28183
28713
|
:next_token,
|
28184
28714
|
:sort_by,
|
28185
|
-
:sort_order
|
28715
|
+
:sort_order,
|
28716
|
+
:cross_account_filter_option)
|
28186
28717
|
SENSITIVE = []
|
28187
28718
|
include Aws::Structure
|
28188
28719
|
end
|
@@ -33700,6 +34231,16 @@ module Aws::SageMaker
|
|
33700
34231
|
# private workforce.
|
33701
34232
|
# @return [String]
|
33702
34233
|
#
|
34234
|
+
# @!attribute [rw] scope
|
34235
|
+
# An array of string identifiers used to refer to the specific pieces
|
34236
|
+
# of user data or claims that the client application wants to access.
|
34237
|
+
# @return [String]
|
34238
|
+
#
|
34239
|
+
# @!attribute [rw] authentication_request_extra_params
|
34240
|
+
# A string to string map of identifiers specific to the custom
|
34241
|
+
# identity provider (IdP) being used.
|
34242
|
+
# @return [Hash<String,String>]
|
34243
|
+
#
|
33703
34244
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OidcConfig AWS API Documentation
|
33704
34245
|
#
|
33705
34246
|
class OidcConfig < Struct.new(
|
@@ -33710,7 +34251,9 @@ module Aws::SageMaker
|
|
33710
34251
|
:token_endpoint,
|
33711
34252
|
:user_info_endpoint,
|
33712
34253
|
:logout_endpoint,
|
33713
|
-
:jwks_uri
|
34254
|
+
:jwks_uri,
|
34255
|
+
:scope,
|
34256
|
+
:authentication_request_extra_params)
|
33714
34257
|
SENSITIVE = [:client_secret]
|
33715
34258
|
include Aws::Structure
|
33716
34259
|
end
|
@@ -33750,6 +34293,16 @@ module Aws::SageMaker
|
|
33750
34293
|
# private workforce.
|
33751
34294
|
# @return [String]
|
33752
34295
|
#
|
34296
|
+
# @!attribute [rw] scope
|
34297
|
+
# An array of string identifiers used to refer to the specific pieces
|
34298
|
+
# of user data or claims that the client application wants to access.
|
34299
|
+
# @return [String]
|
34300
|
+
#
|
34301
|
+
# @!attribute [rw] authentication_request_extra_params
|
34302
|
+
# A string to string map of identifiers specific to the custom
|
34303
|
+
# identity provider (IdP) being used.
|
34304
|
+
# @return [Hash<String,String>]
|
34305
|
+
#
|
33753
34306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OidcConfigForResponse AWS API Documentation
|
33754
34307
|
#
|
33755
34308
|
class OidcConfigForResponse < Struct.new(
|
@@ -33759,7 +34312,9 @@ module Aws::SageMaker
|
|
33759
34312
|
:token_endpoint,
|
33760
34313
|
:user_info_endpoint,
|
33761
34314
|
:logout_endpoint,
|
33762
|
-
:jwks_uri
|
34315
|
+
:jwks_uri,
|
34316
|
+
:scope,
|
34317
|
+
:authentication_request_extra_params)
|
33763
34318
|
SENSITIVE = []
|
33764
34319
|
include Aws::Structure
|
33765
34320
|
end
|
@@ -38393,13 +38948,18 @@ module Aws::SageMaker
|
|
38393
38948
|
# acceptable for your use case before downloading or using a model.
|
38394
38949
|
# @return [Types::ModelAccessConfig]
|
38395
38950
|
#
|
38951
|
+
# @!attribute [rw] hub_access_config
|
38952
|
+
# Configuration information for hub access.
|
38953
|
+
# @return [Types::InferenceHubAccessConfig]
|
38954
|
+
#
|
38396
38955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/S3ModelDataSource AWS API Documentation
|
38397
38956
|
#
|
38398
38957
|
class S3ModelDataSource < Struct.new(
|
38399
38958
|
:s3_uri,
|
38400
38959
|
:s3_data_type,
|
38401
38960
|
:compression_type,
|
38402
|
-
:model_access_config
|
38961
|
+
:model_access_config,
|
38962
|
+
:hub_access_config)
|
38403
38963
|
SENSITIVE = []
|
38404
38964
|
include Aws::Structure
|
38405
38965
|
end
|
@@ -39425,7 +39985,7 @@ module Aws::SageMaker
|
|
39425
39985
|
|
39426
39986
|
# A list of IP address ranges ([CIDRs][1]). Used to create an allow list
|
39427
39987
|
# of IP addresses for a private workforce. Workers will only be able to
|
39428
|
-
#
|
39988
|
+
# log in to their worker portal from an IP address within this range. By
|
39429
39989
|
# default, a workforce isn't restricted to specific IP addresses.
|
39430
39990
|
#
|
39431
39991
|
#
|
@@ -39722,6 +40282,30 @@ module Aws::SageMaker
|
|
39722
40282
|
include Aws::Structure
|
39723
40283
|
end
|
39724
40284
|
|
40285
|
+
# @!attribute [rw] tracking_server_name
|
40286
|
+
# The name of the tracking server to start.
|
40287
|
+
# @return [String]
|
40288
|
+
#
|
40289
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartMlflowTrackingServerRequest AWS API Documentation
|
40290
|
+
#
|
40291
|
+
class StartMlflowTrackingServerRequest < Struct.new(
|
40292
|
+
:tracking_server_name)
|
40293
|
+
SENSITIVE = []
|
40294
|
+
include Aws::Structure
|
40295
|
+
end
|
40296
|
+
|
40297
|
+
# @!attribute [rw] tracking_server_arn
|
40298
|
+
# The ARN of the started tracking server.
|
40299
|
+
# @return [String]
|
40300
|
+
#
|
40301
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartMlflowTrackingServerResponse AWS API Documentation
|
40302
|
+
#
|
40303
|
+
class StartMlflowTrackingServerResponse < Struct.new(
|
40304
|
+
:tracking_server_arn)
|
40305
|
+
SENSITIVE = []
|
40306
|
+
include Aws::Structure
|
40307
|
+
end
|
40308
|
+
|
39725
40309
|
# @!attribute [rw] monitoring_schedule_name
|
39726
40310
|
# The name of the schedule to start.
|
39727
40311
|
# @return [String]
|
@@ -39954,6 +40538,30 @@ module Aws::SageMaker
|
|
39954
40538
|
include Aws::Structure
|
39955
40539
|
end
|
39956
40540
|
|
40541
|
+
# @!attribute [rw] tracking_server_name
|
40542
|
+
# The name of the tracking server to stop.
|
40543
|
+
# @return [String]
|
40544
|
+
#
|
40545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopMlflowTrackingServerRequest AWS API Documentation
|
40546
|
+
#
|
40547
|
+
class StopMlflowTrackingServerRequest < Struct.new(
|
40548
|
+
:tracking_server_name)
|
40549
|
+
SENSITIVE = []
|
40550
|
+
include Aws::Structure
|
40551
|
+
end
|
40552
|
+
|
40553
|
+
# @!attribute [rw] tracking_server_arn
|
40554
|
+
# The ARN of the stopped tracking server.
|
40555
|
+
# @return [String]
|
40556
|
+
#
|
40557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopMlflowTrackingServerResponse AWS API Documentation
|
40558
|
+
#
|
40559
|
+
class StopMlflowTrackingServerResponse < Struct.new(
|
40560
|
+
:tracking_server_arn)
|
40561
|
+
SENSITIVE = []
|
40562
|
+
include Aws::Structure
|
40563
|
+
end
|
40564
|
+
|
39957
40565
|
# @!attribute [rw] monitoring_schedule_name
|
39958
40566
|
# The name of the schedule to stop.
|
39959
40567
|
# @return [String]
|
@@ -40155,7 +40763,7 @@ module Aws::SageMaker
|
|
40155
40763
|
include Aws::Structure
|
40156
40764
|
end
|
40157
40765
|
|
40158
|
-
# Describes a work team of a vendor that does the
|
40766
|
+
# Describes a work team of a vendor that does the labelling job.
|
40159
40767
|
#
|
40160
40768
|
# @!attribute [rw] workteam_arn
|
40161
40769
|
# The Amazon Resource Name (ARN) of the vendor that you have
|
@@ -41030,6 +41638,50 @@ module Aws::SageMaker
|
|
41030
41638
|
include Aws::Structure
|
41031
41639
|
end
|
41032
41640
|
|
41641
|
+
# The summary of the tracking server to list.
|
41642
|
+
#
|
41643
|
+
# @!attribute [rw] tracking_server_arn
|
41644
|
+
# The ARN of a listed tracking server.
|
41645
|
+
# @return [String]
|
41646
|
+
#
|
41647
|
+
# @!attribute [rw] tracking_server_name
|
41648
|
+
# The name of a listed tracking server.
|
41649
|
+
# @return [String]
|
41650
|
+
#
|
41651
|
+
# @!attribute [rw] creation_time
|
41652
|
+
# The creation time of a listed tracking server.
|
41653
|
+
# @return [Time]
|
41654
|
+
#
|
41655
|
+
# @!attribute [rw] last_modified_time
|
41656
|
+
# The last modified time of a listed tracking server.
|
41657
|
+
# @return [Time]
|
41658
|
+
#
|
41659
|
+
# @!attribute [rw] tracking_server_status
|
41660
|
+
# The creation status of a listed tracking server.
|
41661
|
+
# @return [String]
|
41662
|
+
#
|
41663
|
+
# @!attribute [rw] is_active
|
41664
|
+
# The activity status of a listed tracking server.
|
41665
|
+
# @return [String]
|
41666
|
+
#
|
41667
|
+
# @!attribute [rw] mlflow_version
|
41668
|
+
# The MLflow version used for a listed tracking server.
|
41669
|
+
# @return [String]
|
41670
|
+
#
|
41671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrackingServerSummary AWS API Documentation
|
41672
|
+
#
|
41673
|
+
class TrackingServerSummary < Struct.new(
|
41674
|
+
:tracking_server_arn,
|
41675
|
+
:tracking_server_name,
|
41676
|
+
:creation_time,
|
41677
|
+
:last_modified_time,
|
41678
|
+
:tracking_server_status,
|
41679
|
+
:is_active,
|
41680
|
+
:mlflow_version)
|
41681
|
+
SENSITIVE = []
|
41682
|
+
include Aws::Structure
|
41683
|
+
end
|
41684
|
+
|
41033
41685
|
# Defines the traffic pattern of the load test.
|
41034
41686
|
#
|
41035
41687
|
# @!attribute [rw] traffic_type
|
@@ -44078,6 +44730,57 @@ module Aws::SageMaker
|
|
44078
44730
|
include Aws::Structure
|
44079
44731
|
end
|
44080
44732
|
|
44733
|
+
# @!attribute [rw] tracking_server_name
|
44734
|
+
# The name of the MLflow Tracking Server to update.
|
44735
|
+
# @return [String]
|
44736
|
+
#
|
44737
|
+
# @!attribute [rw] artifact_store_uri
|
44738
|
+
# The new S3 URI for the general purpose bucket to use as the artifact
|
44739
|
+
# store for the MLflow Tracking Server.
|
44740
|
+
# @return [String]
|
44741
|
+
#
|
44742
|
+
# @!attribute [rw] tracking_server_size
|
44743
|
+
# The new size for the MLflow Tracking Server.
|
44744
|
+
# @return [String]
|
44745
|
+
#
|
44746
|
+
# @!attribute [rw] automatic_model_registration
|
44747
|
+
# Whether to enable or disable automatic registration of new MLflow
|
44748
|
+
# models to the SageMaker Model Registry. To enable automatic model
|
44749
|
+
# registration, set this value to `True`. To disable automatic model
|
44750
|
+
# registration, set this value to `False`. If not specified,
|
44751
|
+
# `AutomaticModelRegistration` defaults to `False`
|
44752
|
+
# @return [Boolean]
|
44753
|
+
#
|
44754
|
+
# @!attribute [rw] weekly_maintenance_window_start
|
44755
|
+
# The new weekly maintenance window start day and time to update. The
|
44756
|
+
# maintenance window day and time should be in Coordinated Universal
|
44757
|
+
# Time (UTC) 24-hour standard time. For example: TUE:03:30.
|
44758
|
+
# @return [String]
|
44759
|
+
#
|
44760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMlflowTrackingServerRequest AWS API Documentation
|
44761
|
+
#
|
44762
|
+
class UpdateMlflowTrackingServerRequest < Struct.new(
|
44763
|
+
:tracking_server_name,
|
44764
|
+
:artifact_store_uri,
|
44765
|
+
:tracking_server_size,
|
44766
|
+
:automatic_model_registration,
|
44767
|
+
:weekly_maintenance_window_start)
|
44768
|
+
SENSITIVE = []
|
44769
|
+
include Aws::Structure
|
44770
|
+
end
|
44771
|
+
|
44772
|
+
# @!attribute [rw] tracking_server_arn
|
44773
|
+
# The ARN of the updated MLflow Tracking Server.
|
44774
|
+
# @return [String]
|
44775
|
+
#
|
44776
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateMlflowTrackingServerResponse AWS API Documentation
|
44777
|
+
#
|
44778
|
+
class UpdateMlflowTrackingServerResponse < Struct.new(
|
44779
|
+
:tracking_server_arn)
|
44780
|
+
SENSITIVE = []
|
44781
|
+
include Aws::Structure
|
44782
|
+
end
|
44783
|
+
|
44081
44784
|
# @!attribute [rw] model_card_name
|
44082
44785
|
# The name or Amazon Resource Name (ARN) of the model card to update.
|
44083
44786
|
# @return [String]
|
@@ -45512,7 +46215,7 @@ module Aws::SageMaker
|
|
45512
46215
|
# @return [String]
|
45513
46216
|
#
|
45514
46217
|
# @!attribute [rw] security_group_ids
|
45515
|
-
# The VPC security group IDs, in the form sg-xxxxxxxx
|
46218
|
+
# The VPC security group IDs, in the form `sg-xxxxxxxx`. The security
|
45516
46219
|
# groups must be for the same VPC as specified in the subnet.
|
45517
46220
|
# @return [Array<String>]
|
45518
46221
|
#
|