aws-sdk-sagemaker 1.313.0 → 1.315.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.
@@ -1620,8 +1620,8 @@ module Aws::SageMaker
1620
1620
  # @return [Time]
1621
1621
  #
1622
1622
  # @!attribute [rw] created_by
1623
- # Information about the user who created or modified an experiment,
1624
- # trial, trial component, lineage group, project, or model card.
1623
+ # Information about the user who created or modified a SageMaker
1624
+ # resource.
1625
1625
  # @return [Types::UserContext]
1626
1626
  #
1627
1627
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AssociationSummary AWS API Documentation
@@ -1798,6 +1798,29 @@ module Aws::SageMaker
1798
1798
  include Aws::Structure
1799
1799
  end
1800
1800
 
1801
+ # Contains a presigned URL and its associated local file path for
1802
+ # downloading hub content artifacts.
1803
+ #
1804
+ # @!attribute [rw] url
1805
+ # The presigned S3 URL that provides temporary, secure access to
1806
+ # download the file. URLs expire within 15 minutes for security
1807
+ # purposes.
1808
+ # @return [String]
1809
+ #
1810
+ # @!attribute [rw] local_path
1811
+ # The recommended local file path where the downloaded file should be
1812
+ # stored to maintain proper directory structure and file organization.
1813
+ # @return [String]
1814
+ #
1815
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AuthorizedUrl AWS API Documentation
1816
+ #
1817
+ class AuthorizedUrl < Struct.new(
1818
+ :url,
1819
+ :local_path)
1820
+ SENSITIVE = []
1821
+ include Aws::Structure
1822
+ end
1823
+
1801
1824
  # The selection of algorithms trained on your dataset to generate the
1802
1825
  # model candidates for an Autopilot job.
1803
1826
  #
@@ -4922,6 +4945,222 @@ module Aws::SageMaker
4922
4945
  include Aws::Structure
4923
4946
  end
4924
4947
 
4948
+ # The instance group details of the restricted instance group (RIG).
4949
+ #
4950
+ # @!attribute [rw] current_count
4951
+ # The number of instances that are currently in the restricted
4952
+ # instance group of a SageMaker HyperPod cluster.
4953
+ # @return [Integer]
4954
+ #
4955
+ # @!attribute [rw] target_count
4956
+ # The number of instances you specified to add to the restricted
4957
+ # instance group of a SageMaker HyperPod cluster.
4958
+ # @return [Integer]
4959
+ #
4960
+ # @!attribute [rw] instance_group_name
4961
+ # The name of the restricted instance group of a SageMaker HyperPod
4962
+ # cluster.
4963
+ # @return [String]
4964
+ #
4965
+ # @!attribute [rw] instance_type
4966
+ # The instance type of the restricted instance group of a SageMaker
4967
+ # HyperPod cluster.
4968
+ # @return [String]
4969
+ #
4970
+ # @!attribute [rw] execution_role
4971
+ # The execution role for the restricted instance group to assume.
4972
+ # @return [String]
4973
+ #
4974
+ # @!attribute [rw] threads_per_core
4975
+ # The number you specified to `TreadsPerCore` in `CreateCluster` for
4976
+ # enabling or disabling multithreading. For instance types that
4977
+ # support multithreading, you can specify 1 for disabling
4978
+ # multithreading and 2 for enabling multithreading. For more
4979
+ # information, see the reference table of [CPU cores and threads per
4980
+ # CPU core per instance type][1] in the *Amazon Elastic Compute Cloud
4981
+ # User Guide*.
4982
+ #
4983
+ #
4984
+ #
4985
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html
4986
+ # @return [Integer]
4987
+ #
4988
+ # @!attribute [rw] instance_storage_configs
4989
+ # The additional storage configurations for the instances in the
4990
+ # SageMaker HyperPod cluster restricted instance group.
4991
+ # @return [Array<Types::ClusterInstanceStorageConfig>]
4992
+ #
4993
+ # @!attribute [rw] on_start_deep_health_checks
4994
+ # A flag indicating whether deep health checks should be performed
4995
+ # when the cluster's restricted instance group is created or updated.
4996
+ # @return [Array<String>]
4997
+ #
4998
+ # @!attribute [rw] status
4999
+ # The current status of the cluster's restricted instance group.
5000
+ #
5001
+ # * `InService`: The restricted instance group is active and healthy.
5002
+ #
5003
+ # * `Creating`: The restricted instance group is being provisioned.
5004
+ #
5005
+ # * `Updating`: The restricted instance group is being updated.
5006
+ #
5007
+ # * `Failed`: The restricted instance group has failed to provision or
5008
+ # is no longer healthy.
5009
+ #
5010
+ # * `Degraded`: The restricted instance group is degraded, meaning
5011
+ # that some instances have failed to provision or are no longer
5012
+ # healthy.
5013
+ #
5014
+ # * `Deleting`: The restricted instance group is being deleted.
5015
+ # @return [String]
5016
+ #
5017
+ # @!attribute [rw] training_plan_arn
5018
+ # The Amazon Resource Name (ARN) of the training plan to filter
5019
+ # clusters by. For more information about reserving GPU capacity for
5020
+ # your SageMaker HyperPod clusters using Amazon SageMaker Training
5021
+ # Plan, see ` CreateTrainingPlan `.
5022
+ # @return [String]
5023
+ #
5024
+ # @!attribute [rw] training_plan_status
5025
+ # The current status of the training plan associated with this cluster
5026
+ # restricted instance group.
5027
+ # @return [String]
5028
+ #
5029
+ # @!attribute [rw] override_vpc_config
5030
+ # Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
5031
+ # jobs, hosted models, and compute resources have access to. You can
5032
+ # control access to and from your resources by configuring a VPC. For
5033
+ # more information, see [Give SageMaker Access to Resources in your
5034
+ # Amazon VPC][1].
5035
+ #
5036
+ #
5037
+ #
5038
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
5039
+ # @return [Types::VpcConfig]
5040
+ #
5041
+ # @!attribute [rw] scheduled_update_config
5042
+ # The configuration object of the schedule that SageMaker follows when
5043
+ # updating the AMI.
5044
+ # @return [Types::ScheduledUpdateConfig]
5045
+ #
5046
+ # @!attribute [rw] environment_config
5047
+ # The configuration for the restricted instance groups (RIG)
5048
+ # environment.
5049
+ # @return [Types::EnvironmentConfigDetails]
5050
+ #
5051
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterRestrictedInstanceGroupDetails AWS API Documentation
5052
+ #
5053
+ class ClusterRestrictedInstanceGroupDetails < Struct.new(
5054
+ :current_count,
5055
+ :target_count,
5056
+ :instance_group_name,
5057
+ :instance_type,
5058
+ :execution_role,
5059
+ :threads_per_core,
5060
+ :instance_storage_configs,
5061
+ :on_start_deep_health_checks,
5062
+ :status,
5063
+ :training_plan_arn,
5064
+ :training_plan_status,
5065
+ :override_vpc_config,
5066
+ :scheduled_update_config,
5067
+ :environment_config)
5068
+ SENSITIVE = []
5069
+ include Aws::Structure
5070
+ end
5071
+
5072
+ # The specifications of a restricted instance group that you need to
5073
+ # define.
5074
+ #
5075
+ # @!attribute [rw] instance_count
5076
+ # Specifies the number of instances to add to the restricted instance
5077
+ # group of a SageMaker HyperPod cluster.
5078
+ # @return [Integer]
5079
+ #
5080
+ # @!attribute [rw] instance_group_name
5081
+ # Specifies the name of the restricted instance group.
5082
+ # @return [String]
5083
+ #
5084
+ # @!attribute [rw] instance_type
5085
+ # Specifies the instance type of the restricted instance group.
5086
+ # @return [String]
5087
+ #
5088
+ # @!attribute [rw] execution_role
5089
+ # Specifies an IAM execution role to be assumed by the restricted
5090
+ # instance group.
5091
+ # @return [String]
5092
+ #
5093
+ # @!attribute [rw] threads_per_core
5094
+ # The number you specified to `TreadsPerCore` in `CreateCluster` for
5095
+ # enabling or disabling multithreading. For instance types that
5096
+ # support multithreading, you can specify 1 for disabling
5097
+ # multithreading and 2 for enabling multithreading. For more
5098
+ # information, see the reference table of [CPU cores and threads per
5099
+ # CPU core per instance type][1] in the *Amazon Elastic Compute Cloud
5100
+ # User Guide*.
5101
+ #
5102
+ #
5103
+ #
5104
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cpu-options-supported-instances-values.html
5105
+ # @return [Integer]
5106
+ #
5107
+ # @!attribute [rw] instance_storage_configs
5108
+ # Specifies the additional storage configurations for the instances in
5109
+ # the SageMaker HyperPod cluster restricted instance group.
5110
+ # @return [Array<Types::ClusterInstanceStorageConfig>]
5111
+ #
5112
+ # @!attribute [rw] on_start_deep_health_checks
5113
+ # A flag indicating whether deep health checks should be performed
5114
+ # when the cluster restricted instance group is created or updated.
5115
+ # @return [Array<String>]
5116
+ #
5117
+ # @!attribute [rw] training_plan_arn
5118
+ # The Amazon Resource Name (ARN) of the training plan to filter
5119
+ # clusters by. For more information about reserving GPU capacity for
5120
+ # your SageMaker HyperPod clusters using Amazon SageMaker Training
5121
+ # Plan, see ` CreateTrainingPlan `.
5122
+ # @return [String]
5123
+ #
5124
+ # @!attribute [rw] override_vpc_config
5125
+ # Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
5126
+ # jobs, hosted models, and compute resources have access to. You can
5127
+ # control access to and from your resources by configuring a VPC. For
5128
+ # more information, see [Give SageMaker Access to Resources in your
5129
+ # Amazon VPC][1].
5130
+ #
5131
+ #
5132
+ #
5133
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
5134
+ # @return [Types::VpcConfig]
5135
+ #
5136
+ # @!attribute [rw] scheduled_update_config
5137
+ # The configuration object of the schedule that SageMaker follows when
5138
+ # updating the AMI.
5139
+ # @return [Types::ScheduledUpdateConfig]
5140
+ #
5141
+ # @!attribute [rw] environment_config
5142
+ # The configuration for the restricted instance groups (RIG)
5143
+ # environment.
5144
+ # @return [Types::EnvironmentConfig]
5145
+ #
5146
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterRestrictedInstanceGroupSpecification AWS API Documentation
5147
+ #
5148
+ class ClusterRestrictedInstanceGroupSpecification < Struct.new(
5149
+ :instance_count,
5150
+ :instance_group_name,
5151
+ :instance_type,
5152
+ :execution_role,
5153
+ :threads_per_core,
5154
+ :instance_storage_configs,
5155
+ :on_start_deep_health_checks,
5156
+ :training_plan_arn,
5157
+ :override_vpc_config,
5158
+ :scheduled_update_config,
5159
+ :environment_config)
5160
+ SENSITIVE = []
5161
+ include Aws::Structure
5162
+ end
5163
+
4925
5164
  # Summary of the cluster policy.
4926
5165
  #
4927
5166
  # @!attribute [rw] cluster_scheduler_config_arn
@@ -6425,6 +6664,11 @@ module Aws::SageMaker
6425
6664
  # The instance groups to be created in the SageMaker HyperPod cluster.
6426
6665
  # @return [Array<Types::ClusterInstanceGroupSpecification>]
6427
6666
  #
6667
+ # @!attribute [rw] restricted_instance_groups
6668
+ # The specialized instance groups for training models like Amazon Nova
6669
+ # to be created in the SageMaker HyperPod cluster.
6670
+ # @return [Array<Types::ClusterRestrictedInstanceGroupSpecification>]
6671
+ #
6428
6672
  # @!attribute [rw] vpc_config
6429
6673
  # Specifies the Amazon Virtual Private Cloud (VPC) that is associated
6430
6674
  # with the Amazon SageMaker HyperPod cluster. You can control access
@@ -6499,6 +6743,7 @@ module Aws::SageMaker
6499
6743
  class CreateClusterRequest < Struct.new(
6500
6744
  :cluster_name,
6501
6745
  :instance_groups,
6746
+ :restricted_instance_groups,
6502
6747
  :vpc_config,
6503
6748
  :tags,
6504
6749
  :orchestrator,
@@ -7697,6 +7942,78 @@ module Aws::SageMaker
7697
7942
  include Aws::Structure
7698
7943
  end
7699
7944
 
7945
+ # @!attribute [rw] hub_name
7946
+ # The name or Amazon Resource Name (ARN) of the hub that contains the
7947
+ # content. For public content, use `SageMakerPublicHub`.
7948
+ # @return [String]
7949
+ #
7950
+ # @!attribute [rw] hub_content_type
7951
+ # The type of hub content to access. Valid values include `Model`,
7952
+ # `Notebook`, and `ModelReference`.
7953
+ # @return [String]
7954
+ #
7955
+ # @!attribute [rw] hub_content_name
7956
+ # The name of the hub content for which to generate presigned URLs.
7957
+ # This identifies the specific model or content within the hub.
7958
+ # @return [String]
7959
+ #
7960
+ # @!attribute [rw] hub_content_version
7961
+ # The version of the hub content. If not specified, the latest version
7962
+ # is used.
7963
+ # @return [String]
7964
+ #
7965
+ # @!attribute [rw] access_config
7966
+ # Configuration settings for accessing the hub content, including
7967
+ # end-user license agreement acceptance for gated models and expected
7968
+ # S3 URL validation.
7969
+ # @return [Types::PresignedUrlAccessConfig]
7970
+ #
7971
+ # @!attribute [rw] max_results
7972
+ # The maximum number of presigned URLs to return in the response.
7973
+ # Default value is 100. Large models may contain hundreds of files,
7974
+ # requiring pagination to retrieve all URLs.
7975
+ # @return [Integer]
7976
+ #
7977
+ # @!attribute [rw] next_token
7978
+ # A token for pagination. Use this token to retrieve the next set of
7979
+ # presigned URLs when the response is truncated.
7980
+ # @return [String]
7981
+ #
7982
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateHubContentPresignedUrlsRequest AWS API Documentation
7983
+ #
7984
+ class CreateHubContentPresignedUrlsRequest < Struct.new(
7985
+ :hub_name,
7986
+ :hub_content_type,
7987
+ :hub_content_name,
7988
+ :hub_content_version,
7989
+ :access_config,
7990
+ :max_results,
7991
+ :next_token)
7992
+ SENSITIVE = []
7993
+ include Aws::Structure
7994
+ end
7995
+
7996
+ # @!attribute [rw] authorized_url_configs
7997
+ # An array of authorized URL configurations, each containing a
7998
+ # presigned URL and its corresponding local file path for proper file
7999
+ # organization during download.
8000
+ # @return [Array<Types::AuthorizedUrl>]
8001
+ #
8002
+ # @!attribute [rw] next_token
8003
+ # A token for pagination. If present, indicates that more presigned
8004
+ # URLs are available. Use this token in a subsequent request to
8005
+ # retrieve additional URLs.
8006
+ # @return [String]
8007
+ #
8008
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateHubContentPresignedUrlsResponse AWS API Documentation
8009
+ #
8010
+ class CreateHubContentPresignedUrlsResponse < Struct.new(
8011
+ :authorized_url_configs,
8012
+ :next_token)
8013
+ SENSITIVE = []
8014
+ include Aws::Structure
8015
+ end
8016
+
7700
8017
  # @!attribute [rw] hub_name
7701
8018
  # The name of the hub to add the hub content reference to.
7702
8019
  # @return [String]
@@ -13296,8 +13613,8 @@ module Aws::SageMaker
13296
13613
  # @return [Time]
13297
13614
  #
13298
13615
  # @!attribute [rw] created_by
13299
- # Information about the user who created or modified an experiment,
13300
- # trial, trial component, lineage group, project, or model card.
13616
+ # Information about the user who created or modified a SageMaker
13617
+ # resource.
13301
13618
  # @return [Types::UserContext]
13302
13619
  #
13303
13620
  # @!attribute [rw] last_modified_time
@@ -13305,8 +13622,8 @@ module Aws::SageMaker
13305
13622
  # @return [Time]
13306
13623
  #
13307
13624
  # @!attribute [rw] last_modified_by
13308
- # Information about the user who created or modified an experiment,
13309
- # trial, trial component, lineage group, project, or model card.
13625
+ # Information about the user who created or modified a SageMaker
13626
+ # resource.
13310
13627
  # @return [Types::UserContext]
13311
13628
  #
13312
13629
  # @!attribute [rw] metadata_properties
@@ -13630,8 +13947,8 @@ module Aws::SageMaker
13630
13947
  # @return [Time]
13631
13948
  #
13632
13949
  # @!attribute [rw] created_by
13633
- # Information about the user who created or modified an experiment,
13634
- # trial, trial component, lineage group, project, or model card.
13950
+ # Information about the user who created or modified a SageMaker
13951
+ # resource.
13635
13952
  # @return [Types::UserContext]
13636
13953
  #
13637
13954
  # @!attribute [rw] last_modified_time
@@ -13639,8 +13956,8 @@ module Aws::SageMaker
13639
13956
  # @return [Time]
13640
13957
  #
13641
13958
  # @!attribute [rw] last_modified_by
13642
- # Information about the user who created or modified an experiment,
13643
- # trial, trial component, lineage group, project, or model card.
13959
+ # Information about the user who created or modified a SageMaker
13960
+ # resource.
13644
13961
  # @return [Types::UserContext]
13645
13962
  #
13646
13963
  # @!attribute [rw] metadata_properties
@@ -14019,6 +14336,11 @@ module Aws::SageMaker
14019
14336
  # The instance groups of the SageMaker HyperPod cluster.
14020
14337
  # @return [Array<Types::ClusterInstanceGroupDetails>]
14021
14338
  #
14339
+ # @!attribute [rw] restricted_instance_groups
14340
+ # The specialized instance groups for training models like Amazon Nova
14341
+ # to be created in the SageMaker HyperPod cluster.
14342
+ # @return [Array<Types::ClusterRestrictedInstanceGroupDetails>]
14343
+ #
14022
14344
  # @!attribute [rw] vpc_config
14023
14345
  # Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
14024
14346
  # jobs, hosted models, and compute resources have access to. You can
@@ -14049,6 +14371,7 @@ module Aws::SageMaker
14049
14371
  :creation_time,
14050
14372
  :failure_message,
14051
14373
  :instance_groups,
14374
+ :restricted_instance_groups,
14052
14375
  :vpc_config,
14053
14376
  :orchestrator,
14054
14377
  :node_recovery)
@@ -14116,8 +14439,8 @@ module Aws::SageMaker
14116
14439
  # @return [Time]
14117
14440
  #
14118
14441
  # @!attribute [rw] created_by
14119
- # Information about the user who created or modified an experiment,
14120
- # trial, trial component, lineage group, project, or model card.
14442
+ # Information about the user who created or modified a SageMaker
14443
+ # resource.
14121
14444
  # @return [Types::UserContext]
14122
14445
  #
14123
14446
  # @!attribute [rw] last_modified_time
@@ -14125,8 +14448,8 @@ module Aws::SageMaker
14125
14448
  # @return [Time]
14126
14449
  #
14127
14450
  # @!attribute [rw] last_modified_by
14128
- # Information about the user who created or modified an experiment,
14129
- # trial, trial component, lineage group, project, or model card.
14451
+ # Information about the user who created or modified a SageMaker
14452
+ # resource.
14130
14453
  # @return [Types::UserContext]
14131
14454
  #
14132
14455
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterSchedulerConfigResponse AWS API Documentation
@@ -14407,8 +14730,8 @@ module Aws::SageMaker
14407
14730
  # @return [Time]
14408
14731
  #
14409
14732
  # @!attribute [rw] created_by
14410
- # Information about the user who created or modified an experiment,
14411
- # trial, trial component, lineage group, project, or model card.
14733
+ # Information about the user who created or modified a SageMaker
14734
+ # resource.
14412
14735
  # @return [Types::UserContext]
14413
14736
  #
14414
14737
  # @!attribute [rw] last_modified_time
@@ -14416,8 +14739,8 @@ module Aws::SageMaker
14416
14739
  # @return [Time]
14417
14740
  #
14418
14741
  # @!attribute [rw] last_modified_by
14419
- # Information about the user who created or modified an experiment,
14420
- # trial, trial component, lineage group, project, or model card.
14742
+ # Information about the user who created or modified a SageMaker
14743
+ # resource.
14421
14744
  # @return [Types::UserContext]
14422
14745
  #
14423
14746
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeComputeQuotaResponse AWS API Documentation
@@ -14483,8 +14806,8 @@ module Aws::SageMaker
14483
14806
  # @return [Time]
14484
14807
  #
14485
14808
  # @!attribute [rw] created_by
14486
- # Information about the user who created or modified an experiment,
14487
- # trial, trial component, lineage group, project, or model card.
14809
+ # Information about the user who created or modified a SageMaker
14810
+ # resource.
14488
14811
  # @return [Types::UserContext]
14489
14812
  #
14490
14813
  # @!attribute [rw] last_modified_time
@@ -14492,8 +14815,8 @@ module Aws::SageMaker
14492
14815
  # @return [Time]
14493
14816
  #
14494
14817
  # @!attribute [rw] last_modified_by
14495
- # Information about the user who created or modified an experiment,
14496
- # trial, trial component, lineage group, project, or model card.
14818
+ # Information about the user who created or modified a SageMaker
14819
+ # resource.
14497
14820
  # @return [Types::UserContext]
14498
14821
  #
14499
14822
  # @!attribute [rw] lineage_group_arn
@@ -16856,8 +17179,8 @@ module Aws::SageMaker
16856
17179
  # @return [Time]
16857
17180
  #
16858
17181
  # @!attribute [rw] created_by
16859
- # Information about the user who created or modified an experiment,
16860
- # trial, trial component, lineage group, project, or model card.
17182
+ # Information about the user who created or modified a SageMaker
17183
+ # resource.
16861
17184
  # @return [Types::UserContext]
16862
17185
  #
16863
17186
  # @!attribute [rw] last_modified_time
@@ -16865,8 +17188,8 @@ module Aws::SageMaker
16865
17188
  # @return [Time]
16866
17189
  #
16867
17190
  # @!attribute [rw] last_modified_by
16868
- # Information about the user who created or modified an experiment,
16869
- # trial, trial component, lineage group, project, or model card.
17191
+ # Information about the user who created or modified a SageMaker
17192
+ # resource.
16870
17193
  # @return [Types::UserContext]
16871
17194
  #
16872
17195
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeLineageGroupResponse AWS API Documentation
@@ -16957,8 +17280,8 @@ module Aws::SageMaker
16957
17280
  # @return [Time]
16958
17281
  #
16959
17282
  # @!attribute [rw] created_by
16960
- # Information about the user who created or modified an experiment,
16961
- # trial, trial component, lineage group, project, or model card.
17283
+ # Information about the user who created or modified a SageMaker
17284
+ # resource.
16962
17285
  # @return [Types::UserContext]
16963
17286
  #
16964
17287
  # @!attribute [rw] last_modified_time
@@ -16967,8 +17290,8 @@ module Aws::SageMaker
16967
17290
  # @return [Time]
16968
17291
  #
16969
17292
  # @!attribute [rw] last_modified_by
16970
- # Information about the user who created or modified an experiment,
16971
- # trial, trial component, lineage group, project, or model card.
17293
+ # Information about the user who created or modified a SageMaker
17294
+ # resource.
16972
17295
  # @return [Types::UserContext]
16973
17296
  #
16974
17297
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServerResponse AWS API Documentation
@@ -17213,8 +17536,8 @@ module Aws::SageMaker
17213
17536
  # @return [Time]
17214
17537
  #
17215
17538
  # @!attribute [rw] created_by
17216
- # Information about the user who created or modified an experiment,
17217
- # trial, trial component, lineage group, project, or model card.
17539
+ # Information about the user who created or modified a SageMaker
17540
+ # resource.
17218
17541
  # @return [Types::UserContext]
17219
17542
  #
17220
17543
  # @!attribute [rw] last_modified_time
@@ -17222,8 +17545,8 @@ module Aws::SageMaker
17222
17545
  # @return [Time]
17223
17546
  #
17224
17547
  # @!attribute [rw] last_modified_by
17225
- # Information about the user who created or modified an experiment,
17226
- # trial, trial component, lineage group, project, or model card.
17548
+ # Information about the user who created or modified a SageMaker
17549
+ # resource.
17227
17550
  # @return [Types::UserContext]
17228
17551
  #
17229
17552
  # @!attribute [rw] model_card_processing_status
@@ -17455,8 +17778,8 @@ module Aws::SageMaker
17455
17778
  # @return [Time]
17456
17779
  #
17457
17780
  # @!attribute [rw] created_by
17458
- # Information about the user who created or modified an experiment,
17459
- # trial, trial component, lineage group, project, or model card.
17781
+ # Information about the user who created or modified a SageMaker
17782
+ # resource.
17460
17783
  # @return [Types::UserContext]
17461
17784
  #
17462
17785
  # @!attribute [rw] model_package_group_status
@@ -17550,8 +17873,8 @@ module Aws::SageMaker
17550
17873
  # @return [String]
17551
17874
  #
17552
17875
  # @!attribute [rw] created_by
17553
- # Information about the user who created or modified an experiment,
17554
- # trial, trial component, lineage group, project, or model card.
17876
+ # Information about the user who created or modified a SageMaker
17877
+ # resource.
17555
17878
  # @return [Types::UserContext]
17556
17879
  #
17557
17880
  # @!attribute [rw] metadata_properties
@@ -17568,8 +17891,8 @@ module Aws::SageMaker
17568
17891
  # @return [Time]
17569
17892
  #
17570
17893
  # @!attribute [rw] last_modified_by
17571
- # Information about the user who created or modified an experiment,
17572
- # trial, trial component, lineage group, project, or model card.
17894
+ # Information about the user who created or modified a SageMaker
17895
+ # resource.
17573
17896
  # @return [Types::UserContext]
17574
17897
  #
17575
17898
  # @!attribute [rw] approval_description
@@ -18410,13 +18733,13 @@ module Aws::SageMaker
18410
18733
  # @return [Time]
18411
18734
  #
18412
18735
  # @!attribute [rw] created_by
18413
- # Information about the user who created or modified an experiment,
18414
- # trial, trial component, lineage group, project, or model card.
18736
+ # Information about the user who created or modified a SageMaker
18737
+ # resource.
18415
18738
  # @return [Types::UserContext]
18416
18739
  #
18417
18740
  # @!attribute [rw] last_modified_by
18418
- # Information about the user who created or modified an experiment,
18419
- # trial, trial component, lineage group, project, or model card.
18741
+ # Information about the user who created or modified a SageMaker
18742
+ # resource.
18420
18743
  # @return [Types::UserContext]
18421
18744
  #
18422
18745
  # @!attribute [rw] parallelism_configuration
@@ -18427,6 +18750,10 @@ module Aws::SageMaker
18427
18750
  # The selective execution configuration applied to the pipeline run.
18428
18751
  # @return [Types::SelectiveExecutionConfig]
18429
18752
  #
18753
+ # @!attribute [rw] pipeline_version_id
18754
+ # The ID of the pipeline version.
18755
+ # @return [Integer]
18756
+ #
18430
18757
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecutionResponse AWS API Documentation
18431
18758
  #
18432
18759
  class DescribePipelineExecutionResponse < Struct.new(
@@ -18442,7 +18769,8 @@ module Aws::SageMaker
18442
18769
  :created_by,
18443
18770
  :last_modified_by,
18444
18771
  :parallelism_configuration,
18445
- :selective_execution_config)
18772
+ :selective_execution_config,
18773
+ :pipeline_version_id)
18446
18774
  SENSITIVE = []
18447
18775
  include Aws::Structure
18448
18776
  end
@@ -18451,10 +18779,15 @@ module Aws::SageMaker
18451
18779
  # The name or Amazon Resource Name (ARN) of the pipeline to describe.
18452
18780
  # @return [String]
18453
18781
  #
18782
+ # @!attribute [rw] pipeline_version_id
18783
+ # The ID of the pipeline version to describe.
18784
+ # @return [Integer]
18785
+ #
18454
18786
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineRequest AWS API Documentation
18455
18787
  #
18456
18788
  class DescribePipelineRequest < Struct.new(
18457
- :pipeline_name)
18789
+ :pipeline_name,
18790
+ :pipeline_version_id)
18458
18791
  SENSITIVE = []
18459
18792
  include Aws::Structure
18460
18793
  end
@@ -18500,19 +18833,27 @@ module Aws::SageMaker
18500
18833
  # @return [Time]
18501
18834
  #
18502
18835
  # @!attribute [rw] created_by
18503
- # Information about the user who created or modified an experiment,
18504
- # trial, trial component, lineage group, project, or model card.
18836
+ # Information about the user who created or modified a SageMaker
18837
+ # resource.
18505
18838
  # @return [Types::UserContext]
18506
18839
  #
18507
18840
  # @!attribute [rw] last_modified_by
18508
- # Information about the user who created or modified an experiment,
18509
- # trial, trial component, lineage group, project, or model card.
18841
+ # Information about the user who created or modified a SageMaker
18842
+ # resource.
18510
18843
  # @return [Types::UserContext]
18511
18844
  #
18512
18845
  # @!attribute [rw] parallelism_configuration
18513
18846
  # Lists the parallelism configuration applied to the pipeline.
18514
18847
  # @return [Types::ParallelismConfiguration]
18515
18848
  #
18849
+ # @!attribute [rw] pipeline_version_display_name
18850
+ # The display name of the pipeline version.
18851
+ # @return [String]
18852
+ #
18853
+ # @!attribute [rw] pipeline_version_description
18854
+ # The description of the pipeline version.
18855
+ # @return [String]
18856
+ #
18516
18857
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineResponse AWS API Documentation
18517
18858
  #
18518
18859
  class DescribePipelineResponse < Struct.new(
@@ -18528,7 +18869,9 @@ module Aws::SageMaker
18528
18869
  :last_run_time,
18529
18870
  :created_by,
18530
18871
  :last_modified_by,
18531
- :parallelism_configuration)
18872
+ :parallelism_configuration,
18873
+ :pipeline_version_display_name,
18874
+ :pipeline_version_description)
18532
18875
  SENSITIVE = []
18533
18876
  include Aws::Structure
18534
18877
  end
@@ -18715,8 +19058,8 @@ module Aws::SageMaker
18715
19058
  # @return [Array<Types::TemplateProviderDetail>]
18716
19059
  #
18717
19060
  # @!attribute [rw] created_by
18718
- # Information about the user who created or modified an experiment,
18719
- # trial, trial component, lineage group, project, or model card.
19061
+ # Information about the user who created or modified a SageMaker
19062
+ # resource.
18720
19063
  # @return [Types::UserContext]
18721
19064
  #
18722
19065
  # @!attribute [rw] creation_time
@@ -18728,8 +19071,8 @@ module Aws::SageMaker
18728
19071
  # @return [Time]
18729
19072
  #
18730
19073
  # @!attribute [rw] last_modified_by
18731
- # Information about the user who created or modified an experiment,
18732
- # trial, trial component, lineage group, project, or model card.
19074
+ # Information about the user who created or modified a SageMaker
19075
+ # resource.
18733
19076
  # @return [Types::UserContext]
18734
19077
  #
18735
19078
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeProjectOutput AWS API Documentation
@@ -21662,6 +22005,44 @@ module Aws::SageMaker
21662
22005
  include Aws::Structure
21663
22006
  end
21664
22007
 
22008
+ # The configuration for the restricted instance groups (RIG)
22009
+ # environment.
22010
+ #
22011
+ # @!attribute [rw] f_sx_lustre_config
22012
+ # Configuration settings for an Amazon FSx for Lustre file system to
22013
+ # be used with the cluster.
22014
+ # @return [Types::FSxLustreConfig]
22015
+ #
22016
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EnvironmentConfig AWS API Documentation
22017
+ #
22018
+ class EnvironmentConfig < Struct.new(
22019
+ :f_sx_lustre_config)
22020
+ SENSITIVE = []
22021
+ include Aws::Structure
22022
+ end
22023
+
22024
+ # The configuration details for the restricted instance groups (RIG)
22025
+ # environment.
22026
+ #
22027
+ # @!attribute [rw] f_sx_lustre_config
22028
+ # Configuration settings for an Amazon FSx for Lustre file system to
22029
+ # be used with the cluster.
22030
+ # @return [Types::FSxLustreConfig]
22031
+ #
22032
+ # @!attribute [rw] s3_output_path
22033
+ # The Amazon S3 path where output data from the restricted instance
22034
+ # group (RIG) environment will be stored.
22035
+ # @return [String]
22036
+ #
22037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EnvironmentConfigDetails AWS API Documentation
22038
+ #
22039
+ class EnvironmentConfigDetails < Struct.new(
22040
+ :f_sx_lustre_config,
22041
+ :s3_output_path)
22042
+ SENSITIVE = []
22043
+ include Aws::Structure
22044
+ end
22045
+
21665
22046
  # A list of environment parameters suggested by the Amazon SageMaker
21666
22047
  # Inference Recommender.
21667
22048
  #
@@ -21765,8 +22146,8 @@ module Aws::SageMaker
21765
22146
  # @return [Time]
21766
22147
  #
21767
22148
  # @!attribute [rw] last_modified_by
21768
- # Information about the user who created or modified an experiment,
21769
- # trial, trial component, lineage group, project, or model card.
22149
+ # Information about the user who created or modified a SageMaker
22150
+ # resource.
21770
22151
  # @return [Types::UserContext]
21771
22152
  #
21772
22153
  # @!attribute [rw] tags
@@ -21935,6 +22316,28 @@ module Aws::SageMaker
21935
22316
  include Aws::Structure
21936
22317
  end
21937
22318
 
22319
+ # Configuration settings for an Amazon FSx for Lustre file system to be
22320
+ # used with the cluster.
22321
+ #
22322
+ # @!attribute [rw] size_in_gi_b
22323
+ # The storage capacity of the Amazon FSx for Lustre file system,
22324
+ # specified in gibibytes (GiB).
22325
+ # @return [Integer]
22326
+ #
22327
+ # @!attribute [rw] per_unit_storage_throughput
22328
+ # The throughput capacity of the Amazon FSx for Lustre file system,
22329
+ # measured in MB/s per TiB of storage.
22330
+ # @return [Integer]
22331
+ #
22332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/FSxLustreConfig AWS API Documentation
22333
+ #
22334
+ class FSxLustreConfig < Struct.new(
22335
+ :size_in_gi_b,
22336
+ :per_unit_storage_throughput)
22337
+ SENSITIVE = []
22338
+ include Aws::Structure
22339
+ end
22340
+
21938
22341
  # A custom file system in Amazon FSx for Lustre.
21939
22342
  #
21940
22343
  # @!attribute [rw] file_system_id
@@ -32565,6 +32968,69 @@ module Aws::SageMaker
32565
32968
  include Aws::Structure
32566
32969
  end
32567
32970
 
32971
+ # @!attribute [rw] pipeline_name
32972
+ # The Amazon Resource Name (ARN) of the pipeline.
32973
+ # @return [String]
32974
+ #
32975
+ # @!attribute [rw] created_after
32976
+ # A filter that returns the pipeline versions that were created after
32977
+ # a specified time.
32978
+ # @return [Time]
32979
+ #
32980
+ # @!attribute [rw] created_before
32981
+ # A filter that returns the pipeline versions that were created before
32982
+ # a specified time.
32983
+ # @return [Time]
32984
+ #
32985
+ # @!attribute [rw] sort_order
32986
+ # The sort order for the results.
32987
+ # @return [String]
32988
+ #
32989
+ # @!attribute [rw] next_token
32990
+ # If the result of the previous `ListPipelineVersions` request was
32991
+ # truncated, the response includes a `NextToken`. To retrieve the next
32992
+ # set of pipeline versions, use this token in your next request.
32993
+ # @return [String]
32994
+ #
32995
+ # @!attribute [rw] max_results
32996
+ # The maximum number of pipeline versions to return in the response.
32997
+ # @return [Integer]
32998
+ #
32999
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineVersionsRequest AWS API Documentation
33000
+ #
33001
+ class ListPipelineVersionsRequest < Struct.new(
33002
+ :pipeline_name,
33003
+ :created_after,
33004
+ :created_before,
33005
+ :sort_order,
33006
+ :next_token,
33007
+ :max_results)
33008
+ SENSITIVE = []
33009
+ include Aws::Structure
33010
+ end
33011
+
33012
+ # @!attribute [rw] pipeline_version_summaries
33013
+ # Contains a sorted list of pipeline version summary objects matching
33014
+ # the specified filters. Each version summary includes the pipeline
33015
+ # version ID, the creation date, and the last pipeline execution
33016
+ # created from that version. This list can be empty.
33017
+ # @return [Array<Types::PipelineVersionSummary>]
33018
+ #
33019
+ # @!attribute [rw] next_token
33020
+ # If the result of the previous `ListPipelineVersions` request was
33021
+ # truncated, the response includes a `NextToken`. To retrieve the next
33022
+ # set of pipeline versions, use this token in your next request.
33023
+ # @return [String]
33024
+ #
33025
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineVersionsResponse AWS API Documentation
33026
+ #
33027
+ class ListPipelineVersionsResponse < Struct.new(
33028
+ :pipeline_version_summaries,
33029
+ :next_token)
33030
+ SENSITIVE = []
33031
+ include Aws::Structure
33032
+ end
33033
+
32568
33034
  # @!attribute [rw] pipeline_name_prefix
32569
33035
  # The prefix of the pipeline name.
32570
33036
  # @return [String]
@@ -34237,8 +34703,8 @@ module Aws::SageMaker
34237
34703
  # @return [Time]
34238
34704
  #
34239
34705
  # @!attribute [rw] created_by
34240
- # Information about the user who created or modified an experiment,
34241
- # trial, trial component, lineage group, project, or model card.
34706
+ # Information about the user who created or modified a SageMaker
34707
+ # resource.
34242
34708
  # @return [Types::UserContext]
34243
34709
  #
34244
34710
  # @!attribute [rw] last_modified_time
@@ -34246,8 +34712,8 @@ module Aws::SageMaker
34246
34712
  # @return [Time]
34247
34713
  #
34248
34714
  # @!attribute [rw] last_modified_by
34249
- # Information about the user who created or modified an experiment,
34250
- # trial, trial component, lineage group, project, or model card.
34715
+ # Information about the user who created or modified a SageMaker
34716
+ # resource.
34251
34717
  # @return [Types::UserContext]
34252
34718
  #
34253
34719
  # @!attribute [rw] tags
@@ -34672,8 +35138,8 @@ module Aws::SageMaker
34672
35138
  # @return [Time]
34673
35139
  #
34674
35140
  # @!attribute [rw] created_by
34675
- # Information about the user who created or modified an experiment,
34676
- # trial, trial component, lineage group, project, or model card.
35141
+ # Information about the user who created or modified a SageMaker
35142
+ # resource.
34677
35143
  # @return [Types::UserContext]
34678
35144
  #
34679
35145
  # @!attribute [rw] last_modified_time
@@ -34681,8 +35147,8 @@ module Aws::SageMaker
34681
35147
  # @return [Time]
34682
35148
  #
34683
35149
  # @!attribute [rw] last_modified_by
34684
- # Information about the user who created or modified an experiment,
34685
- # trial, trial component, lineage group, project, or model card.
35150
+ # Information about the user who created or modified a SageMaker
35151
+ # resource.
34686
35152
  # @return [Types::UserContext]
34687
35153
  #
34688
35154
  # @!attribute [rw] tags
@@ -35509,8 +35975,8 @@ module Aws::SageMaker
35509
35975
  # @return [Time]
35510
35976
  #
35511
35977
  # @!attribute [rw] created_by
35512
- # Information about the user who created or modified an experiment,
35513
- # trial, trial component, lineage group, project, or model card.
35978
+ # Information about the user who created or modified a SageMaker
35979
+ # resource.
35514
35980
  # @return [Types::UserContext]
35515
35981
  #
35516
35982
  # @!attribute [rw] model_package_group_status
@@ -38543,13 +39009,13 @@ module Aws::SageMaker
38543
39009
  # @return [Time]
38544
39010
  #
38545
39011
  # @!attribute [rw] created_by
38546
- # Information about the user who created or modified an experiment,
38547
- # trial, trial component, lineage group, project, or model card.
39012
+ # Information about the user who created or modified a SageMaker
39013
+ # resource.
38548
39014
  # @return [Types::UserContext]
38549
39015
  #
38550
39016
  # @!attribute [rw] last_modified_by
38551
- # Information about the user who created or modified an experiment,
38552
- # trial, trial component, lineage group, project, or model card.
39017
+ # Information about the user who created or modified a SageMaker
39018
+ # resource.
38553
39019
  # @return [Types::UserContext]
38554
39020
  #
38555
39021
  # @!attribute [rw] parallelism_configuration
@@ -38646,13 +39112,13 @@ module Aws::SageMaker
38646
39112
  # @return [Time]
38647
39113
  #
38648
39114
  # @!attribute [rw] created_by
38649
- # Information about the user who created or modified an experiment,
38650
- # trial, trial component, lineage group, project, or model card.
39115
+ # Information about the user who created or modified a SageMaker
39116
+ # resource.
38651
39117
  # @return [Types::UserContext]
38652
39118
  #
38653
39119
  # @!attribute [rw] last_modified_by
38654
- # Information about the user who created or modified an experiment,
38655
- # trial, trial component, lineage group, project, or model card.
39120
+ # Information about the user who created or modified a SageMaker
39121
+ # resource.
38656
39122
  # @return [Types::UserContext]
38657
39123
  #
38658
39124
  # @!attribute [rw] parallelism_configuration
@@ -38667,6 +39133,15 @@ module Aws::SageMaker
38667
39133
  # Contains a list of pipeline parameters. This list can be empty.
38668
39134
  # @return [Array<Types::Parameter>]
38669
39135
  #
39136
+ # @!attribute [rw] pipeline_version_id
39137
+ # The ID of the pipeline version that started this execution.
39138
+ # @return [Integer]
39139
+ #
39140
+ # @!attribute [rw] pipeline_version_display_name
39141
+ # The display name of the pipeline version that started this
39142
+ # execution.
39143
+ # @return [String]
39144
+ #
38670
39145
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecution AWS API Documentation
38671
39146
  #
38672
39147
  class PipelineExecution < Struct.new(
@@ -38683,7 +39158,9 @@ module Aws::SageMaker
38683
39158
  :last_modified_by,
38684
39159
  :parallelism_configuration,
38685
39160
  :selective_execution_config,
38686
- :pipeline_parameters)
39161
+ :pipeline_parameters,
39162
+ :pipeline_version_id,
39163
+ :pipeline_version_display_name)
38687
39164
  SENSITIVE = []
38688
39165
  include Aws::Structure
38689
39166
  end
@@ -39011,6 +39488,115 @@ module Aws::SageMaker
39011
39488
  include Aws::Structure
39012
39489
  end
39013
39490
 
39491
+ # The version of the pipeline.
39492
+ #
39493
+ # @!attribute [rw] pipeline_arn
39494
+ # The Amazon Resource Name (ARN) of the pipeline.
39495
+ # @return [String]
39496
+ #
39497
+ # @!attribute [rw] pipeline_version_id
39498
+ # The ID of the pipeline version.
39499
+ # @return [Integer]
39500
+ #
39501
+ # @!attribute [rw] pipeline_version_display_name
39502
+ # The display name of the pipeline version.
39503
+ # @return [String]
39504
+ #
39505
+ # @!attribute [rw] pipeline_version_description
39506
+ # The description of the pipeline version.
39507
+ # @return [String]
39508
+ #
39509
+ # @!attribute [rw] creation_time
39510
+ # The creation time of the pipeline version.
39511
+ # @return [Time]
39512
+ #
39513
+ # @!attribute [rw] last_modified_time
39514
+ # The time when the pipeline version was last modified.
39515
+ # @return [Time]
39516
+ #
39517
+ # @!attribute [rw] created_by
39518
+ # Information about the user who created or modified a SageMaker
39519
+ # resource.
39520
+ # @return [Types::UserContext]
39521
+ #
39522
+ # @!attribute [rw] last_modified_by
39523
+ # Information about the user who created or modified a SageMaker
39524
+ # resource.
39525
+ # @return [Types::UserContext]
39526
+ #
39527
+ # @!attribute [rw] last_executed_pipeline_execution_arn
39528
+ # The Amazon Resource Name (ARN) of the most recent pipeline execution
39529
+ # created from this pipeline version.
39530
+ # @return [String]
39531
+ #
39532
+ # @!attribute [rw] last_executed_pipeline_execution_display_name
39533
+ # The display name of the most recent pipeline execution created from
39534
+ # this pipeline version.
39535
+ # @return [String]
39536
+ #
39537
+ # @!attribute [rw] last_executed_pipeline_execution_status
39538
+ # The status of the most recent pipeline execution created from this
39539
+ # pipeline version.
39540
+ # @return [String]
39541
+ #
39542
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineVersion AWS API Documentation
39543
+ #
39544
+ class PipelineVersion < Struct.new(
39545
+ :pipeline_arn,
39546
+ :pipeline_version_id,
39547
+ :pipeline_version_display_name,
39548
+ :pipeline_version_description,
39549
+ :creation_time,
39550
+ :last_modified_time,
39551
+ :created_by,
39552
+ :last_modified_by,
39553
+ :last_executed_pipeline_execution_arn,
39554
+ :last_executed_pipeline_execution_display_name,
39555
+ :last_executed_pipeline_execution_status)
39556
+ SENSITIVE = []
39557
+ include Aws::Structure
39558
+ end
39559
+
39560
+ # The summary of the pipeline version.
39561
+ #
39562
+ # @!attribute [rw] pipeline_arn
39563
+ # The Amazon Resource Name (ARN) of the pipeline.
39564
+ # @return [String]
39565
+ #
39566
+ # @!attribute [rw] pipeline_version_id
39567
+ # The ID of the pipeline version.
39568
+ # @return [Integer]
39569
+ #
39570
+ # @!attribute [rw] creation_time
39571
+ # The creation time of the pipeline version.
39572
+ # @return [Time]
39573
+ #
39574
+ # @!attribute [rw] pipeline_version_description
39575
+ # The description of the pipeline version.
39576
+ # @return [String]
39577
+ #
39578
+ # @!attribute [rw] pipeline_version_display_name
39579
+ # The display name of the pipeline version.
39580
+ # @return [String]
39581
+ #
39582
+ # @!attribute [rw] last_execution_pipeline_execution_arn
39583
+ # The Amazon Resource Name (ARN) of the most recent pipeline execution
39584
+ # created from this pipeline version.
39585
+ # @return [String]
39586
+ #
39587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineVersionSummary AWS API Documentation
39588
+ #
39589
+ class PipelineVersionSummary < Struct.new(
39590
+ :pipeline_arn,
39591
+ :pipeline_version_id,
39592
+ :creation_time,
39593
+ :pipeline_version_description,
39594
+ :pipeline_version_display_name,
39595
+ :last_execution_pipeline_execution_arn)
39596
+ SENSITIVE = []
39597
+ include Aws::Structure
39598
+ end
39599
+
39014
39600
  # A specification for a predefined metric.
39015
39601
  #
39016
39602
  # @!attribute [rw] predefined_metric_type
@@ -39026,6 +39612,30 @@ module Aws::SageMaker
39026
39612
  include Aws::Structure
39027
39613
  end
39028
39614
 
39615
+ # Configuration for accessing hub content through presigned URLs,
39616
+ # including license agreement acceptance and URL validation settings.
39617
+ #
39618
+ # @!attribute [rw] accept_eula
39619
+ # Indicates acceptance of the End User License Agreement (EULA) for
39620
+ # gated models. Set to true to acknowledge acceptance of the license
39621
+ # terms required for accessing gated content.
39622
+ # @return [Boolean]
39623
+ #
39624
+ # @!attribute [rw] expected_s3_url
39625
+ # The expected S3 URL prefix for validation purposes. This parameter
39626
+ # helps ensure consistency between the resolved S3 URIs and the
39627
+ # deployment configuration, reducing potential compatibility issues.
39628
+ # @return [String]
39629
+ #
39630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PresignedUrlAccessConfig AWS API Documentation
39631
+ #
39632
+ class PresignedUrlAccessConfig < Struct.new(
39633
+ :accept_eula,
39634
+ :expected_s3_url)
39635
+ SENSITIVE = []
39636
+ include Aws::Structure
39637
+ end
39638
+
39029
39639
  # Priority class configuration. When included in `PriorityClasses`,
39030
39640
  # these class configurations define how tasks are queued.
39031
39641
  #
@@ -40361,8 +40971,8 @@ module Aws::SageMaker
40361
40971
  # @return [Time]
40362
40972
  #
40363
40973
  # @!attribute [rw] last_modified_by
40364
- # Information about the user who created or modified an experiment,
40365
- # trial, trial component, lineage group, project, or model card.
40974
+ # Information about the user who created or modified a SageMaker
40975
+ # resource.
40366
40976
  # @return [Types::UserContext]
40367
40977
  #
40368
40978
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Project AWS API Documentation
@@ -43111,6 +43721,10 @@ module Aws::SageMaker
43111
43721
  # An execution of a pipeline.
43112
43722
  # @return [Types::PipelineExecution]
43113
43723
  #
43724
+ # @!attribute [rw] pipeline_version
43725
+ # The version of the pipeline.
43726
+ # @return [Types::PipelineVersion]
43727
+ #
43114
43728
  # @!attribute [rw] feature_group
43115
43729
  # Amazon SageMaker Feature Store stores features in a collection
43116
43730
  # called Feature Group. A Feature Group can be visualized as a table
@@ -43152,6 +43766,7 @@ module Aws::SageMaker
43152
43766
  :model_package_group,
43153
43767
  :pipeline,
43154
43768
  :pipeline_execution,
43769
+ :pipeline_version,
43155
43770
  :feature_group,
43156
43771
  :feature_metadata,
43157
43772
  :project,
@@ -44123,6 +44738,12 @@ module Aws::SageMaker
44123
44738
  # system in Amazon SageMaker AI Studio.
44124
44739
  # @return [Array<Types::CustomFileSystem>]
44125
44740
  #
44741
+ # @!attribute [rw] remote_access
44742
+ # A setting that enables or disables remote access for a SageMaker
44743
+ # space. When enabled, this allows you to connect to the remote space
44744
+ # from your local IDE.
44745
+ # @return [String]
44746
+ #
44126
44747
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSettings AWS API Documentation
44127
44748
  #
44128
44749
  class SpaceSettings < Struct.new(
@@ -44133,7 +44754,8 @@ module Aws::SageMaker
44133
44754
  :app_type,
44134
44755
  :space_storage_settings,
44135
44756
  :space_managed_resources,
44136
- :custom_file_systems)
44757
+ :custom_file_systems,
44758
+ :remote_access)
44137
44759
  SENSITIVE = []
44138
44760
  include Aws::Structure
44139
44761
  end
@@ -44144,6 +44766,12 @@ module Aws::SageMaker
44144
44766
  # The type of app created within the space.
44145
44767
  # @return [String]
44146
44768
  #
44769
+ # @!attribute [rw] remote_access
44770
+ # A setting that enables or disables remote access for a SageMaker
44771
+ # space. When enabled, this allows you to connect to the remote space
44772
+ # from your local IDE.
44773
+ # @return [String]
44774
+ #
44147
44775
  # @!attribute [rw] space_storage_settings
44148
44776
  # The storage settings for a space.
44149
44777
  # @return [Types::SpaceStorageSettings]
@@ -44152,6 +44780,7 @@ module Aws::SageMaker
44152
44780
  #
44153
44781
  class SpaceSettingsSummary < Struct.new(
44154
44782
  :app_type,
44783
+ :remote_access,
44155
44784
  :space_storage_settings)
44156
44785
  SENSITIVE = []
44157
44786
  include Aws::Structure
@@ -44350,6 +44979,10 @@ module Aws::SageMaker
44350
44979
  # The selective execution configuration applied to the pipeline run.
44351
44980
  # @return [Types::SelectiveExecutionConfig]
44352
44981
  #
44982
+ # @!attribute [rw] pipeline_version_id
44983
+ # The ID of the pipeline version to start execution from.
44984
+ # @return [Integer]
44985
+ #
44353
44986
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartPipelineExecutionRequest AWS API Documentation
44354
44987
  #
44355
44988
  class StartPipelineExecutionRequest < Struct.new(
@@ -44359,7 +44992,8 @@ module Aws::SageMaker
44359
44992
  :pipeline_execution_description,
44360
44993
  :client_request_token,
44361
44994
  :parallelism_configuration,
44362
- :selective_execution_config)
44995
+ :selective_execution_config,
44996
+ :pipeline_version_id)
44363
44997
  SENSITIVE = []
44364
44998
  include Aws::Structure
44365
44999
  end
@@ -44376,6 +45010,44 @@ module Aws::SageMaker
44376
45010
  include Aws::Structure
44377
45011
  end
44378
45012
 
45013
+ # @!attribute [rw] resource_identifier
45014
+ # The Amazon Resource Name (ARN) of the resource to which the remote
45015
+ # connection will be established. For example, this identifies the
45016
+ # specific ARN space application you want to connect to from your
45017
+ # local IDE.
45018
+ # @return [String]
45019
+ #
45020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartSessionRequest AWS API Documentation
45021
+ #
45022
+ class StartSessionRequest < Struct.new(
45023
+ :resource_identifier)
45024
+ SENSITIVE = []
45025
+ include Aws::Structure
45026
+ end
45027
+
45028
+ # @!attribute [rw] session_id
45029
+ # A unique identifier for the established remote connection session.
45030
+ # @return [String]
45031
+ #
45032
+ # @!attribute [rw] stream_url
45033
+ # A WebSocket URL used to establish a SSH connection between the local
45034
+ # IDE and remote SageMaker space.
45035
+ # @return [String]
45036
+ #
45037
+ # @!attribute [rw] token_value
45038
+ # An encrypted token value containing session and caller information.
45039
+ # @return [String]
45040
+ #
45041
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartSessionResponse AWS API Documentation
45042
+ #
45043
+ class StartSessionResponse < Struct.new(
45044
+ :session_id,
45045
+ :stream_url,
45046
+ :token_value)
45047
+ SENSITIVE = []
45048
+ include Aws::Structure
45049
+ end
45050
+
44379
45051
  # @!attribute [rw] auto_ml_job_name
44380
45052
  # The name of the object you are requesting.
44381
45053
  # @return [String]
@@ -47391,8 +48063,8 @@ module Aws::SageMaker
47391
48063
  # @return [Time]
47392
48064
  #
47393
48065
  # @!attribute [rw] last_modified_by
47394
- # Information about the user who created or modified an experiment,
47395
- # trial, trial component, lineage group, project, or model card.
48066
+ # Information about the user who created or modified a SageMaker
48067
+ # resource.
47396
48068
  # @return [Types::UserContext]
47397
48069
  #
47398
48070
  # @!attribute [rw] metadata_properties
@@ -47483,8 +48155,8 @@ module Aws::SageMaker
47483
48155
  # @return [Time]
47484
48156
  #
47485
48157
  # @!attribute [rw] last_modified_by
47486
- # Information about the user who created or modified an experiment,
47487
- # trial, trial component, lineage group, project, or model card.
48158
+ # Information about the user who created or modified a SageMaker
48159
+ # resource.
47488
48160
  # @return [Types::UserContext]
47489
48161
  #
47490
48162
  # @!attribute [rw] parameters
@@ -47700,8 +48372,8 @@ module Aws::SageMaker
47700
48372
  # @return [Time]
47701
48373
  #
47702
48374
  # @!attribute [rw] created_by
47703
- # Information about the user who created or modified an experiment,
47704
- # trial, trial component, lineage group, project, or model card.
48375
+ # Information about the user who created or modified a SageMaker
48376
+ # resource.
47705
48377
  # @return [Types::UserContext]
47706
48378
  #
47707
48379
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrialComponentSimpleSummary AWS API Documentation
@@ -48355,6 +49027,11 @@ module Aws::SageMaker
48355
49027
  # Specify the instance groups to update.
48356
49028
  # @return [Array<Types::ClusterInstanceGroupSpecification>]
48357
49029
  #
49030
+ # @!attribute [rw] restricted_instance_groups
49031
+ # The specialized instance groups for training models like Amazon Nova
49032
+ # to be created in the SageMaker HyperPod cluster.
49033
+ # @return [Array<Types::ClusterRestrictedInstanceGroupSpecification>]
49034
+ #
48358
49035
  # @!attribute [rw] node_recovery
48359
49036
  # The node recovery mode to be applied to the SageMaker HyperPod
48360
49037
  # cluster.
@@ -48370,6 +49047,7 @@ module Aws::SageMaker
48370
49047
  class UpdateClusterRequest < Struct.new(
48371
49048
  :cluster_name,
48372
49049
  :instance_groups,
49050
+ :restricted_instance_groups,
48373
49051
  :node_recovery,
48374
49052
  :instance_groups_to_delete)
48375
49053
  SENSITIVE = []
@@ -50043,10 +50721,59 @@ module Aws::SageMaker
50043
50721
  # The Amazon Resource Name (ARN) of the updated pipeline.
50044
50722
  # @return [String]
50045
50723
  #
50724
+ # @!attribute [rw] pipeline_version_id
50725
+ # The ID of the pipeline version.
50726
+ # @return [Integer]
50727
+ #
50046
50728
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePipelineResponse AWS API Documentation
50047
50729
  #
50048
50730
  class UpdatePipelineResponse < Struct.new(
50049
- :pipeline_arn)
50731
+ :pipeline_arn,
50732
+ :pipeline_version_id)
50733
+ SENSITIVE = []
50734
+ include Aws::Structure
50735
+ end
50736
+
50737
+ # @!attribute [rw] pipeline_arn
50738
+ # The Amazon Resource Name (ARN) of the pipeline.
50739
+ # @return [String]
50740
+ #
50741
+ # @!attribute [rw] pipeline_version_id
50742
+ # The pipeline version ID to update.
50743
+ # @return [Integer]
50744
+ #
50745
+ # @!attribute [rw] pipeline_version_display_name
50746
+ # The display name of the pipeline version.
50747
+ # @return [String]
50748
+ #
50749
+ # @!attribute [rw] pipeline_version_description
50750
+ # The description of the pipeline version.
50751
+ # @return [String]
50752
+ #
50753
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePipelineVersionRequest AWS API Documentation
50754
+ #
50755
+ class UpdatePipelineVersionRequest < Struct.new(
50756
+ :pipeline_arn,
50757
+ :pipeline_version_id,
50758
+ :pipeline_version_display_name,
50759
+ :pipeline_version_description)
50760
+ SENSITIVE = []
50761
+ include Aws::Structure
50762
+ end
50763
+
50764
+ # @!attribute [rw] pipeline_arn
50765
+ # The Amazon Resource Name (ARN) of the pipeline.
50766
+ # @return [String]
50767
+ #
50768
+ # @!attribute [rw] pipeline_version_id
50769
+ # The ID of the pipeline version.
50770
+ # @return [Integer]
50771
+ #
50772
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePipelineVersionResponse AWS API Documentation
50773
+ #
50774
+ class UpdatePipelineVersionResponse < Struct.new(
50775
+ :pipeline_arn,
50776
+ :pipeline_version_id)
50050
50777
  SENSITIVE = []
50051
50778
  include Aws::Structure
50052
50779
  end
@@ -50511,8 +51238,8 @@ module Aws::SageMaker
50511
51238
  include Aws::Structure
50512
51239
  end
50513
51240
 
50514
- # Information about the user who created or modified an experiment,
50515
- # trial, trial component, lineage group, project, or model card.
51241
+ # Information about the user who created or modified a SageMaker
51242
+ # resource.
50516
51243
  #
50517
51244
  # @!attribute [rw] user_profile_arn
50518
51245
  # The Amazon Resource Name (ARN) of the user's profile.