aws-sdk-sagemaker 1.314.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +263 -7
- data/lib/aws-sdk-sagemaker/client_api.rb +147 -2
- data/lib/aws-sdk-sagemaker/types.rb +644 -88
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +141 -6
- data/sig/types.rbs +119 -2
- metadata +1 -1
@@ -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
|
1624
|
-
#
|
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
|
@@ -4945,6 +4945,222 @@ module Aws::SageMaker
|
|
4945
4945
|
include Aws::Structure
|
4946
4946
|
end
|
4947
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
|
+
|
4948
5164
|
# Summary of the cluster policy.
|
4949
5165
|
#
|
4950
5166
|
# @!attribute [rw] cluster_scheduler_config_arn
|
@@ -6448,6 +6664,11 @@ module Aws::SageMaker
|
|
6448
6664
|
# The instance groups to be created in the SageMaker HyperPod cluster.
|
6449
6665
|
# @return [Array<Types::ClusterInstanceGroupSpecification>]
|
6450
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
|
+
#
|
6451
6672
|
# @!attribute [rw] vpc_config
|
6452
6673
|
# Specifies the Amazon Virtual Private Cloud (VPC) that is associated
|
6453
6674
|
# with the Amazon SageMaker HyperPod cluster. You can control access
|
@@ -6522,6 +6743,7 @@ module Aws::SageMaker
|
|
6522
6743
|
class CreateClusterRequest < Struct.new(
|
6523
6744
|
:cluster_name,
|
6524
6745
|
:instance_groups,
|
6746
|
+
:restricted_instance_groups,
|
6525
6747
|
:vpc_config,
|
6526
6748
|
:tags,
|
6527
6749
|
:orchestrator,
|
@@ -13391,8 +13613,8 @@ module Aws::SageMaker
|
|
13391
13613
|
# @return [Time]
|
13392
13614
|
#
|
13393
13615
|
# @!attribute [rw] created_by
|
13394
|
-
# Information about the user who created or modified
|
13395
|
-
#
|
13616
|
+
# Information about the user who created or modified a SageMaker
|
13617
|
+
# resource.
|
13396
13618
|
# @return [Types::UserContext]
|
13397
13619
|
#
|
13398
13620
|
# @!attribute [rw] last_modified_time
|
@@ -13400,8 +13622,8 @@ module Aws::SageMaker
|
|
13400
13622
|
# @return [Time]
|
13401
13623
|
#
|
13402
13624
|
# @!attribute [rw] last_modified_by
|
13403
|
-
# Information about the user who created or modified
|
13404
|
-
#
|
13625
|
+
# Information about the user who created or modified a SageMaker
|
13626
|
+
# resource.
|
13405
13627
|
# @return [Types::UserContext]
|
13406
13628
|
#
|
13407
13629
|
# @!attribute [rw] metadata_properties
|
@@ -13725,8 +13947,8 @@ module Aws::SageMaker
|
|
13725
13947
|
# @return [Time]
|
13726
13948
|
#
|
13727
13949
|
# @!attribute [rw] created_by
|
13728
|
-
# Information about the user who created or modified
|
13729
|
-
#
|
13950
|
+
# Information about the user who created or modified a SageMaker
|
13951
|
+
# resource.
|
13730
13952
|
# @return [Types::UserContext]
|
13731
13953
|
#
|
13732
13954
|
# @!attribute [rw] last_modified_time
|
@@ -13734,8 +13956,8 @@ module Aws::SageMaker
|
|
13734
13956
|
# @return [Time]
|
13735
13957
|
#
|
13736
13958
|
# @!attribute [rw] last_modified_by
|
13737
|
-
# Information about the user who created or modified
|
13738
|
-
#
|
13959
|
+
# Information about the user who created or modified a SageMaker
|
13960
|
+
# resource.
|
13739
13961
|
# @return [Types::UserContext]
|
13740
13962
|
#
|
13741
13963
|
# @!attribute [rw] metadata_properties
|
@@ -14114,6 +14336,11 @@ module Aws::SageMaker
|
|
14114
14336
|
# The instance groups of the SageMaker HyperPod cluster.
|
14115
14337
|
# @return [Array<Types::ClusterInstanceGroupDetails>]
|
14116
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
|
+
#
|
14117
14344
|
# @!attribute [rw] vpc_config
|
14118
14345
|
# Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker
|
14119
14346
|
# jobs, hosted models, and compute resources have access to. You can
|
@@ -14144,6 +14371,7 @@ module Aws::SageMaker
|
|
14144
14371
|
:creation_time,
|
14145
14372
|
:failure_message,
|
14146
14373
|
:instance_groups,
|
14374
|
+
:restricted_instance_groups,
|
14147
14375
|
:vpc_config,
|
14148
14376
|
:orchestrator,
|
14149
14377
|
:node_recovery)
|
@@ -14211,8 +14439,8 @@ module Aws::SageMaker
|
|
14211
14439
|
# @return [Time]
|
14212
14440
|
#
|
14213
14441
|
# @!attribute [rw] created_by
|
14214
|
-
# Information about the user who created or modified
|
14215
|
-
#
|
14442
|
+
# Information about the user who created or modified a SageMaker
|
14443
|
+
# resource.
|
14216
14444
|
# @return [Types::UserContext]
|
14217
14445
|
#
|
14218
14446
|
# @!attribute [rw] last_modified_time
|
@@ -14220,8 +14448,8 @@ module Aws::SageMaker
|
|
14220
14448
|
# @return [Time]
|
14221
14449
|
#
|
14222
14450
|
# @!attribute [rw] last_modified_by
|
14223
|
-
# Information about the user who created or modified
|
14224
|
-
#
|
14451
|
+
# Information about the user who created or modified a SageMaker
|
14452
|
+
# resource.
|
14225
14453
|
# @return [Types::UserContext]
|
14226
14454
|
#
|
14227
14455
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterSchedulerConfigResponse AWS API Documentation
|
@@ -14502,8 +14730,8 @@ module Aws::SageMaker
|
|
14502
14730
|
# @return [Time]
|
14503
14731
|
#
|
14504
14732
|
# @!attribute [rw] created_by
|
14505
|
-
# Information about the user who created or modified
|
14506
|
-
#
|
14733
|
+
# Information about the user who created or modified a SageMaker
|
14734
|
+
# resource.
|
14507
14735
|
# @return [Types::UserContext]
|
14508
14736
|
#
|
14509
14737
|
# @!attribute [rw] last_modified_time
|
@@ -14511,8 +14739,8 @@ module Aws::SageMaker
|
|
14511
14739
|
# @return [Time]
|
14512
14740
|
#
|
14513
14741
|
# @!attribute [rw] last_modified_by
|
14514
|
-
# Information about the user who created or modified
|
14515
|
-
#
|
14742
|
+
# Information about the user who created or modified a SageMaker
|
14743
|
+
# resource.
|
14516
14744
|
# @return [Types::UserContext]
|
14517
14745
|
#
|
14518
14746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeComputeQuotaResponse AWS API Documentation
|
@@ -14578,8 +14806,8 @@ module Aws::SageMaker
|
|
14578
14806
|
# @return [Time]
|
14579
14807
|
#
|
14580
14808
|
# @!attribute [rw] created_by
|
14581
|
-
# Information about the user who created or modified
|
14582
|
-
#
|
14809
|
+
# Information about the user who created or modified a SageMaker
|
14810
|
+
# resource.
|
14583
14811
|
# @return [Types::UserContext]
|
14584
14812
|
#
|
14585
14813
|
# @!attribute [rw] last_modified_time
|
@@ -14587,8 +14815,8 @@ module Aws::SageMaker
|
|
14587
14815
|
# @return [Time]
|
14588
14816
|
#
|
14589
14817
|
# @!attribute [rw] last_modified_by
|
14590
|
-
# Information about the user who created or modified
|
14591
|
-
#
|
14818
|
+
# Information about the user who created or modified a SageMaker
|
14819
|
+
# resource.
|
14592
14820
|
# @return [Types::UserContext]
|
14593
14821
|
#
|
14594
14822
|
# @!attribute [rw] lineage_group_arn
|
@@ -16951,8 +17179,8 @@ module Aws::SageMaker
|
|
16951
17179
|
# @return [Time]
|
16952
17180
|
#
|
16953
17181
|
# @!attribute [rw] created_by
|
16954
|
-
# Information about the user who created or modified
|
16955
|
-
#
|
17182
|
+
# Information about the user who created or modified a SageMaker
|
17183
|
+
# resource.
|
16956
17184
|
# @return [Types::UserContext]
|
16957
17185
|
#
|
16958
17186
|
# @!attribute [rw] last_modified_time
|
@@ -16960,8 +17188,8 @@ module Aws::SageMaker
|
|
16960
17188
|
# @return [Time]
|
16961
17189
|
#
|
16962
17190
|
# @!attribute [rw] last_modified_by
|
16963
|
-
# Information about the user who created or modified
|
16964
|
-
#
|
17191
|
+
# Information about the user who created or modified a SageMaker
|
17192
|
+
# resource.
|
16965
17193
|
# @return [Types::UserContext]
|
16966
17194
|
#
|
16967
17195
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeLineageGroupResponse AWS API Documentation
|
@@ -17052,8 +17280,8 @@ module Aws::SageMaker
|
|
17052
17280
|
# @return [Time]
|
17053
17281
|
#
|
17054
17282
|
# @!attribute [rw] created_by
|
17055
|
-
# Information about the user who created or modified
|
17056
|
-
#
|
17283
|
+
# Information about the user who created or modified a SageMaker
|
17284
|
+
# resource.
|
17057
17285
|
# @return [Types::UserContext]
|
17058
17286
|
#
|
17059
17287
|
# @!attribute [rw] last_modified_time
|
@@ -17062,8 +17290,8 @@ module Aws::SageMaker
|
|
17062
17290
|
# @return [Time]
|
17063
17291
|
#
|
17064
17292
|
# @!attribute [rw] last_modified_by
|
17065
|
-
# Information about the user who created or modified
|
17066
|
-
#
|
17293
|
+
# Information about the user who created or modified a SageMaker
|
17294
|
+
# resource.
|
17067
17295
|
# @return [Types::UserContext]
|
17068
17296
|
#
|
17069
17297
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeMlflowTrackingServerResponse AWS API Documentation
|
@@ -17308,8 +17536,8 @@ module Aws::SageMaker
|
|
17308
17536
|
# @return [Time]
|
17309
17537
|
#
|
17310
17538
|
# @!attribute [rw] created_by
|
17311
|
-
# Information about the user who created or modified
|
17312
|
-
#
|
17539
|
+
# Information about the user who created or modified a SageMaker
|
17540
|
+
# resource.
|
17313
17541
|
# @return [Types::UserContext]
|
17314
17542
|
#
|
17315
17543
|
# @!attribute [rw] last_modified_time
|
@@ -17317,8 +17545,8 @@ module Aws::SageMaker
|
|
17317
17545
|
# @return [Time]
|
17318
17546
|
#
|
17319
17547
|
# @!attribute [rw] last_modified_by
|
17320
|
-
# Information about the user who created or modified
|
17321
|
-
#
|
17548
|
+
# Information about the user who created or modified a SageMaker
|
17549
|
+
# resource.
|
17322
17550
|
# @return [Types::UserContext]
|
17323
17551
|
#
|
17324
17552
|
# @!attribute [rw] model_card_processing_status
|
@@ -17550,8 +17778,8 @@ module Aws::SageMaker
|
|
17550
17778
|
# @return [Time]
|
17551
17779
|
#
|
17552
17780
|
# @!attribute [rw] created_by
|
17553
|
-
# Information about the user who created or modified
|
17554
|
-
#
|
17781
|
+
# Information about the user who created or modified a SageMaker
|
17782
|
+
# resource.
|
17555
17783
|
# @return [Types::UserContext]
|
17556
17784
|
#
|
17557
17785
|
# @!attribute [rw] model_package_group_status
|
@@ -17645,8 +17873,8 @@ module Aws::SageMaker
|
|
17645
17873
|
# @return [String]
|
17646
17874
|
#
|
17647
17875
|
# @!attribute [rw] created_by
|
17648
|
-
# Information about the user who created or modified
|
17649
|
-
#
|
17876
|
+
# Information about the user who created or modified a SageMaker
|
17877
|
+
# resource.
|
17650
17878
|
# @return [Types::UserContext]
|
17651
17879
|
#
|
17652
17880
|
# @!attribute [rw] metadata_properties
|
@@ -17663,8 +17891,8 @@ module Aws::SageMaker
|
|
17663
17891
|
# @return [Time]
|
17664
17892
|
#
|
17665
17893
|
# @!attribute [rw] last_modified_by
|
17666
|
-
# Information about the user who created or modified
|
17667
|
-
#
|
17894
|
+
# Information about the user who created or modified a SageMaker
|
17895
|
+
# resource.
|
17668
17896
|
# @return [Types::UserContext]
|
17669
17897
|
#
|
17670
17898
|
# @!attribute [rw] approval_description
|
@@ -18505,13 +18733,13 @@ module Aws::SageMaker
|
|
18505
18733
|
# @return [Time]
|
18506
18734
|
#
|
18507
18735
|
# @!attribute [rw] created_by
|
18508
|
-
# Information about the user who created or modified
|
18509
|
-
#
|
18736
|
+
# Information about the user who created or modified a SageMaker
|
18737
|
+
# resource.
|
18510
18738
|
# @return [Types::UserContext]
|
18511
18739
|
#
|
18512
18740
|
# @!attribute [rw] last_modified_by
|
18513
|
-
# Information about the user who created or modified
|
18514
|
-
#
|
18741
|
+
# Information about the user who created or modified a SageMaker
|
18742
|
+
# resource.
|
18515
18743
|
# @return [Types::UserContext]
|
18516
18744
|
#
|
18517
18745
|
# @!attribute [rw] parallelism_configuration
|
@@ -18522,6 +18750,10 @@ module Aws::SageMaker
|
|
18522
18750
|
# The selective execution configuration applied to the pipeline run.
|
18523
18751
|
# @return [Types::SelectiveExecutionConfig]
|
18524
18752
|
#
|
18753
|
+
# @!attribute [rw] pipeline_version_id
|
18754
|
+
# The ID of the pipeline version.
|
18755
|
+
# @return [Integer]
|
18756
|
+
#
|
18525
18757
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecutionResponse AWS API Documentation
|
18526
18758
|
#
|
18527
18759
|
class DescribePipelineExecutionResponse < Struct.new(
|
@@ -18537,7 +18769,8 @@ module Aws::SageMaker
|
|
18537
18769
|
:created_by,
|
18538
18770
|
:last_modified_by,
|
18539
18771
|
:parallelism_configuration,
|
18540
|
-
:selective_execution_config
|
18772
|
+
:selective_execution_config,
|
18773
|
+
:pipeline_version_id)
|
18541
18774
|
SENSITIVE = []
|
18542
18775
|
include Aws::Structure
|
18543
18776
|
end
|
@@ -18546,10 +18779,15 @@ module Aws::SageMaker
|
|
18546
18779
|
# The name or Amazon Resource Name (ARN) of the pipeline to describe.
|
18547
18780
|
# @return [String]
|
18548
18781
|
#
|
18782
|
+
# @!attribute [rw] pipeline_version_id
|
18783
|
+
# The ID of the pipeline version to describe.
|
18784
|
+
# @return [Integer]
|
18785
|
+
#
|
18549
18786
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineRequest AWS API Documentation
|
18550
18787
|
#
|
18551
18788
|
class DescribePipelineRequest < Struct.new(
|
18552
|
-
:pipeline_name
|
18789
|
+
:pipeline_name,
|
18790
|
+
:pipeline_version_id)
|
18553
18791
|
SENSITIVE = []
|
18554
18792
|
include Aws::Structure
|
18555
18793
|
end
|
@@ -18595,19 +18833,27 @@ module Aws::SageMaker
|
|
18595
18833
|
# @return [Time]
|
18596
18834
|
#
|
18597
18835
|
# @!attribute [rw] created_by
|
18598
|
-
# Information about the user who created or modified
|
18599
|
-
#
|
18836
|
+
# Information about the user who created or modified a SageMaker
|
18837
|
+
# resource.
|
18600
18838
|
# @return [Types::UserContext]
|
18601
18839
|
#
|
18602
18840
|
# @!attribute [rw] last_modified_by
|
18603
|
-
# Information about the user who created or modified
|
18604
|
-
#
|
18841
|
+
# Information about the user who created or modified a SageMaker
|
18842
|
+
# resource.
|
18605
18843
|
# @return [Types::UserContext]
|
18606
18844
|
#
|
18607
18845
|
# @!attribute [rw] parallelism_configuration
|
18608
18846
|
# Lists the parallelism configuration applied to the pipeline.
|
18609
18847
|
# @return [Types::ParallelismConfiguration]
|
18610
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
|
+
#
|
18611
18857
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineResponse AWS API Documentation
|
18612
18858
|
#
|
18613
18859
|
class DescribePipelineResponse < Struct.new(
|
@@ -18623,7 +18869,9 @@ module Aws::SageMaker
|
|
18623
18869
|
:last_run_time,
|
18624
18870
|
:created_by,
|
18625
18871
|
:last_modified_by,
|
18626
|
-
:parallelism_configuration
|
18872
|
+
:parallelism_configuration,
|
18873
|
+
:pipeline_version_display_name,
|
18874
|
+
:pipeline_version_description)
|
18627
18875
|
SENSITIVE = []
|
18628
18876
|
include Aws::Structure
|
18629
18877
|
end
|
@@ -18810,8 +19058,8 @@ module Aws::SageMaker
|
|
18810
19058
|
# @return [Array<Types::TemplateProviderDetail>]
|
18811
19059
|
#
|
18812
19060
|
# @!attribute [rw] created_by
|
18813
|
-
# Information about the user who created or modified
|
18814
|
-
#
|
19061
|
+
# Information about the user who created or modified a SageMaker
|
19062
|
+
# resource.
|
18815
19063
|
# @return [Types::UserContext]
|
18816
19064
|
#
|
18817
19065
|
# @!attribute [rw] creation_time
|
@@ -18823,8 +19071,8 @@ module Aws::SageMaker
|
|
18823
19071
|
# @return [Time]
|
18824
19072
|
#
|
18825
19073
|
# @!attribute [rw] last_modified_by
|
18826
|
-
# Information about the user who created or modified
|
18827
|
-
#
|
19074
|
+
# Information about the user who created or modified a SageMaker
|
19075
|
+
# resource.
|
18828
19076
|
# @return [Types::UserContext]
|
18829
19077
|
#
|
18830
19078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeProjectOutput AWS API Documentation
|
@@ -21757,6 +22005,44 @@ module Aws::SageMaker
|
|
21757
22005
|
include Aws::Structure
|
21758
22006
|
end
|
21759
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
|
+
|
21760
22046
|
# A list of environment parameters suggested by the Amazon SageMaker
|
21761
22047
|
# Inference Recommender.
|
21762
22048
|
#
|
@@ -21860,8 +22146,8 @@ module Aws::SageMaker
|
|
21860
22146
|
# @return [Time]
|
21861
22147
|
#
|
21862
22148
|
# @!attribute [rw] last_modified_by
|
21863
|
-
# Information about the user who created or modified
|
21864
|
-
#
|
22149
|
+
# Information about the user who created or modified a SageMaker
|
22150
|
+
# resource.
|
21865
22151
|
# @return [Types::UserContext]
|
21866
22152
|
#
|
21867
22153
|
# @!attribute [rw] tags
|
@@ -22030,6 +22316,28 @@ module Aws::SageMaker
|
|
22030
22316
|
include Aws::Structure
|
22031
22317
|
end
|
22032
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
|
+
|
22033
22341
|
# A custom file system in Amazon FSx for Lustre.
|
22034
22342
|
#
|
22035
22343
|
# @!attribute [rw] file_system_id
|
@@ -32660,6 +32968,69 @@ module Aws::SageMaker
|
|
32660
32968
|
include Aws::Structure
|
32661
32969
|
end
|
32662
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
|
+
|
32663
33034
|
# @!attribute [rw] pipeline_name_prefix
|
32664
33035
|
# The prefix of the pipeline name.
|
32665
33036
|
# @return [String]
|
@@ -34332,8 +34703,8 @@ module Aws::SageMaker
|
|
34332
34703
|
# @return [Time]
|
34333
34704
|
#
|
34334
34705
|
# @!attribute [rw] created_by
|
34335
|
-
# Information about the user who created or modified
|
34336
|
-
#
|
34706
|
+
# Information about the user who created or modified a SageMaker
|
34707
|
+
# resource.
|
34337
34708
|
# @return [Types::UserContext]
|
34338
34709
|
#
|
34339
34710
|
# @!attribute [rw] last_modified_time
|
@@ -34341,8 +34712,8 @@ module Aws::SageMaker
|
|
34341
34712
|
# @return [Time]
|
34342
34713
|
#
|
34343
34714
|
# @!attribute [rw] last_modified_by
|
34344
|
-
# Information about the user who created or modified
|
34345
|
-
#
|
34715
|
+
# Information about the user who created or modified a SageMaker
|
34716
|
+
# resource.
|
34346
34717
|
# @return [Types::UserContext]
|
34347
34718
|
#
|
34348
34719
|
# @!attribute [rw] tags
|
@@ -34767,8 +35138,8 @@ module Aws::SageMaker
|
|
34767
35138
|
# @return [Time]
|
34768
35139
|
#
|
34769
35140
|
# @!attribute [rw] created_by
|
34770
|
-
# Information about the user who created or modified
|
34771
|
-
#
|
35141
|
+
# Information about the user who created or modified a SageMaker
|
35142
|
+
# resource.
|
34772
35143
|
# @return [Types::UserContext]
|
34773
35144
|
#
|
34774
35145
|
# @!attribute [rw] last_modified_time
|
@@ -34776,8 +35147,8 @@ module Aws::SageMaker
|
|
34776
35147
|
# @return [Time]
|
34777
35148
|
#
|
34778
35149
|
# @!attribute [rw] last_modified_by
|
34779
|
-
# Information about the user who created or modified
|
34780
|
-
#
|
35150
|
+
# Information about the user who created or modified a SageMaker
|
35151
|
+
# resource.
|
34781
35152
|
# @return [Types::UserContext]
|
34782
35153
|
#
|
34783
35154
|
# @!attribute [rw] tags
|
@@ -35604,8 +35975,8 @@ module Aws::SageMaker
|
|
35604
35975
|
# @return [Time]
|
35605
35976
|
#
|
35606
35977
|
# @!attribute [rw] created_by
|
35607
|
-
# Information about the user who created or modified
|
35608
|
-
#
|
35978
|
+
# Information about the user who created or modified a SageMaker
|
35979
|
+
# resource.
|
35609
35980
|
# @return [Types::UserContext]
|
35610
35981
|
#
|
35611
35982
|
# @!attribute [rw] model_package_group_status
|
@@ -38638,13 +39009,13 @@ module Aws::SageMaker
|
|
38638
39009
|
# @return [Time]
|
38639
39010
|
#
|
38640
39011
|
# @!attribute [rw] created_by
|
38641
|
-
# Information about the user who created or modified
|
38642
|
-
#
|
39012
|
+
# Information about the user who created or modified a SageMaker
|
39013
|
+
# resource.
|
38643
39014
|
# @return [Types::UserContext]
|
38644
39015
|
#
|
38645
39016
|
# @!attribute [rw] last_modified_by
|
38646
|
-
# Information about the user who created or modified
|
38647
|
-
#
|
39017
|
+
# Information about the user who created or modified a SageMaker
|
39018
|
+
# resource.
|
38648
39019
|
# @return [Types::UserContext]
|
38649
39020
|
#
|
38650
39021
|
# @!attribute [rw] parallelism_configuration
|
@@ -38741,13 +39112,13 @@ module Aws::SageMaker
|
|
38741
39112
|
# @return [Time]
|
38742
39113
|
#
|
38743
39114
|
# @!attribute [rw] created_by
|
38744
|
-
# Information about the user who created or modified
|
38745
|
-
#
|
39115
|
+
# Information about the user who created or modified a SageMaker
|
39116
|
+
# resource.
|
38746
39117
|
# @return [Types::UserContext]
|
38747
39118
|
#
|
38748
39119
|
# @!attribute [rw] last_modified_by
|
38749
|
-
# Information about the user who created or modified
|
38750
|
-
#
|
39120
|
+
# Information about the user who created or modified a SageMaker
|
39121
|
+
# resource.
|
38751
39122
|
# @return [Types::UserContext]
|
38752
39123
|
#
|
38753
39124
|
# @!attribute [rw] parallelism_configuration
|
@@ -38762,6 +39133,15 @@ module Aws::SageMaker
|
|
38762
39133
|
# Contains a list of pipeline parameters. This list can be empty.
|
38763
39134
|
# @return [Array<Types::Parameter>]
|
38764
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
|
+
#
|
38765
39145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecution AWS API Documentation
|
38766
39146
|
#
|
38767
39147
|
class PipelineExecution < Struct.new(
|
@@ -38778,7 +39158,9 @@ module Aws::SageMaker
|
|
38778
39158
|
:last_modified_by,
|
38779
39159
|
:parallelism_configuration,
|
38780
39160
|
:selective_execution_config,
|
38781
|
-
:pipeline_parameters
|
39161
|
+
:pipeline_parameters,
|
39162
|
+
:pipeline_version_id,
|
39163
|
+
:pipeline_version_display_name)
|
38782
39164
|
SENSITIVE = []
|
38783
39165
|
include Aws::Structure
|
38784
39166
|
end
|
@@ -39106,6 +39488,115 @@ module Aws::SageMaker
|
|
39106
39488
|
include Aws::Structure
|
39107
39489
|
end
|
39108
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
|
+
|
39109
39600
|
# A specification for a predefined metric.
|
39110
39601
|
#
|
39111
39602
|
# @!attribute [rw] predefined_metric_type
|
@@ -40480,8 +40971,8 @@ module Aws::SageMaker
|
|
40480
40971
|
# @return [Time]
|
40481
40972
|
#
|
40482
40973
|
# @!attribute [rw] last_modified_by
|
40483
|
-
# Information about the user who created or modified
|
40484
|
-
#
|
40974
|
+
# Information about the user who created or modified a SageMaker
|
40975
|
+
# resource.
|
40485
40976
|
# @return [Types::UserContext]
|
40486
40977
|
#
|
40487
40978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Project AWS API Documentation
|
@@ -43230,6 +43721,10 @@ module Aws::SageMaker
|
|
43230
43721
|
# An execution of a pipeline.
|
43231
43722
|
# @return [Types::PipelineExecution]
|
43232
43723
|
#
|
43724
|
+
# @!attribute [rw] pipeline_version
|
43725
|
+
# The version of the pipeline.
|
43726
|
+
# @return [Types::PipelineVersion]
|
43727
|
+
#
|
43233
43728
|
# @!attribute [rw] feature_group
|
43234
43729
|
# Amazon SageMaker Feature Store stores features in a collection
|
43235
43730
|
# called Feature Group. A Feature Group can be visualized as a table
|
@@ -43271,6 +43766,7 @@ module Aws::SageMaker
|
|
43271
43766
|
:model_package_group,
|
43272
43767
|
:pipeline,
|
43273
43768
|
:pipeline_execution,
|
43769
|
+
:pipeline_version,
|
43274
43770
|
:feature_group,
|
43275
43771
|
:feature_metadata,
|
43276
43772
|
:project,
|
@@ -44483,6 +44979,10 @@ module Aws::SageMaker
|
|
44483
44979
|
# The selective execution configuration applied to the pipeline run.
|
44484
44980
|
# @return [Types::SelectiveExecutionConfig]
|
44485
44981
|
#
|
44982
|
+
# @!attribute [rw] pipeline_version_id
|
44983
|
+
# The ID of the pipeline version to start execution from.
|
44984
|
+
# @return [Integer]
|
44985
|
+
#
|
44486
44986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartPipelineExecutionRequest AWS API Documentation
|
44487
44987
|
#
|
44488
44988
|
class StartPipelineExecutionRequest < Struct.new(
|
@@ -44492,7 +44992,8 @@ module Aws::SageMaker
|
|
44492
44992
|
:pipeline_execution_description,
|
44493
44993
|
:client_request_token,
|
44494
44994
|
:parallelism_configuration,
|
44495
|
-
:selective_execution_config
|
44995
|
+
:selective_execution_config,
|
44996
|
+
:pipeline_version_id)
|
44496
44997
|
SENSITIVE = []
|
44497
44998
|
include Aws::Structure
|
44498
44999
|
end
|
@@ -47562,8 +48063,8 @@ module Aws::SageMaker
|
|
47562
48063
|
# @return [Time]
|
47563
48064
|
#
|
47564
48065
|
# @!attribute [rw] last_modified_by
|
47565
|
-
# Information about the user who created or modified
|
47566
|
-
#
|
48066
|
+
# Information about the user who created or modified a SageMaker
|
48067
|
+
# resource.
|
47567
48068
|
# @return [Types::UserContext]
|
47568
48069
|
#
|
47569
48070
|
# @!attribute [rw] metadata_properties
|
@@ -47654,8 +48155,8 @@ module Aws::SageMaker
|
|
47654
48155
|
# @return [Time]
|
47655
48156
|
#
|
47656
48157
|
# @!attribute [rw] last_modified_by
|
47657
|
-
# Information about the user who created or modified
|
47658
|
-
#
|
48158
|
+
# Information about the user who created or modified a SageMaker
|
48159
|
+
# resource.
|
47659
48160
|
# @return [Types::UserContext]
|
47660
48161
|
#
|
47661
48162
|
# @!attribute [rw] parameters
|
@@ -47871,8 +48372,8 @@ module Aws::SageMaker
|
|
47871
48372
|
# @return [Time]
|
47872
48373
|
#
|
47873
48374
|
# @!attribute [rw] created_by
|
47874
|
-
# Information about the user who created or modified
|
47875
|
-
#
|
48375
|
+
# Information about the user who created or modified a SageMaker
|
48376
|
+
# resource.
|
47876
48377
|
# @return [Types::UserContext]
|
47877
48378
|
#
|
47878
48379
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrialComponentSimpleSummary AWS API Documentation
|
@@ -48526,6 +49027,11 @@ module Aws::SageMaker
|
|
48526
49027
|
# Specify the instance groups to update.
|
48527
49028
|
# @return [Array<Types::ClusterInstanceGroupSpecification>]
|
48528
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
|
+
#
|
48529
49035
|
# @!attribute [rw] node_recovery
|
48530
49036
|
# The node recovery mode to be applied to the SageMaker HyperPod
|
48531
49037
|
# cluster.
|
@@ -48541,6 +49047,7 @@ module Aws::SageMaker
|
|
48541
49047
|
class UpdateClusterRequest < Struct.new(
|
48542
49048
|
:cluster_name,
|
48543
49049
|
:instance_groups,
|
49050
|
+
:restricted_instance_groups,
|
48544
49051
|
:node_recovery,
|
48545
49052
|
:instance_groups_to_delete)
|
48546
49053
|
SENSITIVE = []
|
@@ -50214,10 +50721,59 @@ module Aws::SageMaker
|
|
50214
50721
|
# The Amazon Resource Name (ARN) of the updated pipeline.
|
50215
50722
|
# @return [String]
|
50216
50723
|
#
|
50724
|
+
# @!attribute [rw] pipeline_version_id
|
50725
|
+
# The ID of the pipeline version.
|
50726
|
+
# @return [Integer]
|
50727
|
+
#
|
50217
50728
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePipelineResponse AWS API Documentation
|
50218
50729
|
#
|
50219
50730
|
class UpdatePipelineResponse < Struct.new(
|
50220
|
-
: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)
|
50221
50777
|
SENSITIVE = []
|
50222
50778
|
include Aws::Structure
|
50223
50779
|
end
|
@@ -50682,8 +51238,8 @@ module Aws::SageMaker
|
|
50682
51238
|
include Aws::Structure
|
50683
51239
|
end
|
50684
51240
|
|
50685
|
-
# Information about the user who created or modified
|
50686
|
-
#
|
51241
|
+
# Information about the user who created or modified a SageMaker
|
51242
|
+
# resource.
|
50687
51243
|
#
|
50688
51244
|
# @!attribute [rw] user_profile_arn
|
50689
51245
|
# The Amazon Resource Name (ARN) of the user's profile.
|