aws-sdk-sagemaker 1.246.0 → 1.247.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.
@@ -8611,6 +8766,41 @@ module Aws::SageMaker
8611
8766
  include Aws::Structure
8612
8767
  end
8613
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
+
8614
8804
  # @!attribute [rw] notebook_instance_name
8615
8805
  # The name of the notebook instance.
8616
8806
  # @return [String]
@@ -9593,7 +9783,7 @@ module Aws::SageMaker
9593
9783
  # @!attribute [rw] source_ip_config
9594
9784
  # A list of IP address ranges ([CIDRs][1]). Used to create an allow
9595
9785
  # list of IP addresses for a private workforce. Workers will only be
9596
- # able to login to their worker portal from an IP address within this
9786
+ # able to log in to their worker portal from an IP address within this
9597
9787
  # range. By default, a workforce isn't restricted to specific IP
9598
9788
  # addresses.
9599
9789
  #
@@ -10953,6 +11143,31 @@ module Aws::SageMaker
10953
11143
  include Aws::Structure
10954
11144
  end
10955
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
+
10956
11171
  # @!attribute [rw] job_definition_name
10957
11172
  # The name of the model bias job definition to delete.
10958
11173
  # @return [String]
@@ -14861,6 +15076,110 @@ module Aws::SageMaker
14861
15076
  include Aws::Structure
14862
15077
  end
14863
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
+
14864
15183
  # @!attribute [rw] job_definition_name
14865
15184
  # The name of the model bias job definition. The name must be unique
14866
15185
  # within an Amazon Web Services Region in the Amazon Web Services
@@ -27726,6 +28045,92 @@ module Aws::SageMaker
27726
28045
  include Aws::Structure
27727
28046
  end
27728
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
+
27729
28134
  # @!attribute [rw] endpoint_name
27730
28135
  # Name of the endpoint to monitor for model bias.
27731
28136
  # @return [String]
@@ -28173,6 +28578,14 @@ module Aws::SageMaker
28173
28578
  # The sort order for results. The default is `Ascending`.
28174
28579
  # @return [String]
28175
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
+ #
28176
28589
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelPackageGroupsInput AWS API Documentation
28177
28590
  #
28178
28591
  class ListModelPackageGroupsInput < Struct.new(
@@ -28182,7 +28595,8 @@ module Aws::SageMaker
28182
28595
  :name_contains,
28183
28596
  :next_token,
28184
28597
  :sort_by,
28185
- :sort_order)
28598
+ :sort_order,
28599
+ :cross_account_filter_option)
28186
28600
  SENSITIVE = []
28187
28601
  include Aws::Structure
28188
28602
  end
@@ -33700,6 +34114,16 @@ module Aws::SageMaker
33700
34114
  # private workforce.
33701
34115
  # @return [String]
33702
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
+ #
33703
34127
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OidcConfig AWS API Documentation
33704
34128
  #
33705
34129
  class OidcConfig < Struct.new(
@@ -33710,7 +34134,9 @@ module Aws::SageMaker
33710
34134
  :token_endpoint,
33711
34135
  :user_info_endpoint,
33712
34136
  :logout_endpoint,
33713
- :jwks_uri)
34137
+ :jwks_uri,
34138
+ :scope,
34139
+ :authentication_request_extra_params)
33714
34140
  SENSITIVE = [:client_secret]
33715
34141
  include Aws::Structure
33716
34142
  end
@@ -33750,6 +34176,16 @@ module Aws::SageMaker
33750
34176
  # private workforce.
33751
34177
  # @return [String]
33752
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
+ #
33753
34189
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OidcConfigForResponse AWS API Documentation
33754
34190
  #
33755
34191
  class OidcConfigForResponse < Struct.new(
@@ -33759,7 +34195,9 @@ module Aws::SageMaker
33759
34195
  :token_endpoint,
33760
34196
  :user_info_endpoint,
33761
34197
  :logout_endpoint,
33762
- :jwks_uri)
34198
+ :jwks_uri,
34199
+ :scope,
34200
+ :authentication_request_extra_params)
33763
34201
  SENSITIVE = []
33764
34202
  include Aws::Structure
33765
34203
  end
@@ -39425,7 +39863,7 @@ module Aws::SageMaker
39425
39863
 
39426
39864
  # A list of IP address ranges ([CIDRs][1]). Used to create an allow list
39427
39865
  # of IP addresses for a private workforce. Workers will only be able to
39428
- # login to their worker portal from an IP address within this range. By
39866
+ # log in to their worker portal from an IP address within this range. By
39429
39867
  # default, a workforce isn't restricted to specific IP addresses.
39430
39868
  #
39431
39869
  #
@@ -39722,6 +40160,30 @@ module Aws::SageMaker
39722
40160
  include Aws::Structure
39723
40161
  end
39724
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
+
39725
40187
  # @!attribute [rw] monitoring_schedule_name
39726
40188
  # The name of the schedule to start.
39727
40189
  # @return [String]
@@ -39954,6 +40416,30 @@ module Aws::SageMaker
39954
40416
  include Aws::Structure
39955
40417
  end
39956
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
+
39957
40443
  # @!attribute [rw] monitoring_schedule_name
39958
40444
  # The name of the schedule to stop.
39959
40445
  # @return [String]
@@ -40155,7 +40641,7 @@ module Aws::SageMaker
40155
40641
  include Aws::Structure
40156
40642
  end
40157
40643
 
40158
- # Describes a work team of a vendor that does the a labelling job.
40644
+ # Describes a work team of a vendor that does the labelling job.
40159
40645
  #
40160
40646
  # @!attribute [rw] workteam_arn
40161
40647
  # The Amazon Resource Name (ARN) of the vendor that you have
@@ -41030,6 +41516,50 @@ module Aws::SageMaker
41030
41516
  include Aws::Structure
41031
41517
  end
41032
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
+
41033
41563
  # Defines the traffic pattern of the load test.
41034
41564
  #
41035
41565
  # @!attribute [rw] traffic_type
@@ -44078,6 +44608,57 @@ module Aws::SageMaker
44078
44608
  include Aws::Structure
44079
44609
  end
44080
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
+
44081
44662
  # @!attribute [rw] model_card_name
44082
44663
  # The name or Amazon Resource Name (ARN) of the model card to update.
44083
44664
  # @return [String]
@@ -45512,7 +46093,7 @@ module Aws::SageMaker
45512
46093
  # @return [String]
45513
46094
  #
45514
46095
  # @!attribute [rw] security_group_ids
45515
- # The VPC security group IDs, in the form sg-xxxxxxxx. The security
46096
+ # The VPC security group IDs, in the form `sg-xxxxxxxx`. The security
45516
46097
  # groups must be for the same VPC as specified in the subnet.
45517
46098
  # @return [Array<String>]
45518
46099
  #