aws-sdk-sagemaker 1.359.0 → 1.361.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +970 -4
- data/lib/aws-sdk-sagemaker/client_api.rb +593 -0
- data/lib/aws-sdk-sagemaker/types.rb +1572 -8
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +389 -4
- data/sig/types.rbs +455 -3
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -8,6 +8,218 @@
|
|
|
8
8
|
module Aws::SageMaker
|
|
9
9
|
module Types
|
|
10
10
|
|
|
11
|
+
class AIBenchmarkEndpoint
|
|
12
|
+
attr_accessor identifier: ::String
|
|
13
|
+
attr_accessor target_container_hostname: ::String
|
|
14
|
+
attr_accessor inference_components: ::Array[Types::AIBenchmarkInferenceComponent]
|
|
15
|
+
SENSITIVE: []
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
class AIBenchmarkInferenceComponent
|
|
19
|
+
attr_accessor identifier: ::String
|
|
20
|
+
SENSITIVE: []
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
class AIBenchmarkJobSummary
|
|
24
|
+
attr_accessor ai_benchmark_job_name: ::String
|
|
25
|
+
attr_accessor ai_benchmark_job_arn: ::String
|
|
26
|
+
attr_accessor ai_benchmark_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
27
|
+
attr_accessor creation_time: ::Time
|
|
28
|
+
attr_accessor end_time: ::Time
|
|
29
|
+
attr_accessor ai_workload_config_name: ::String
|
|
30
|
+
SENSITIVE: []
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
class AIBenchmarkNetworkConfig
|
|
34
|
+
attr_accessor vpc_config: Types::VpcConfig
|
|
35
|
+
SENSITIVE: []
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
class AIBenchmarkOutputConfig
|
|
39
|
+
attr_accessor s3_output_location: ::String
|
|
40
|
+
SENSITIVE: []
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
class AIBenchmarkOutputResult
|
|
44
|
+
attr_accessor s3_output_location: ::String
|
|
45
|
+
attr_accessor cloud_watch_logs: ::Array[Types::AICloudWatchLogs]
|
|
46
|
+
SENSITIVE: []
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
class AIBenchmarkTarget
|
|
50
|
+
attr_accessor endpoint: Types::AIBenchmarkEndpoint
|
|
51
|
+
attr_accessor unknown: untyped
|
|
52
|
+
SENSITIVE: []
|
|
53
|
+
|
|
54
|
+
class Endpoint < AIBenchmarkTarget
|
|
55
|
+
end
|
|
56
|
+
class Unknown < AIBenchmarkTarget
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
class AICapacityReservationConfig
|
|
61
|
+
attr_accessor capacity_reservation_preference: ("capacity-reservations-only")
|
|
62
|
+
attr_accessor ml_reservation_arns: ::Array[::String]
|
|
63
|
+
SENSITIVE: []
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
class AICloudWatchLogs
|
|
67
|
+
attr_accessor log_group_arn: ::String
|
|
68
|
+
attr_accessor log_stream_name: ::String
|
|
69
|
+
SENSITIVE: []
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
class AIDatasetConfig
|
|
73
|
+
attr_accessor input_data_config: ::Array[Types::AIWorkloadInputDataConfig]
|
|
74
|
+
attr_accessor unknown: untyped
|
|
75
|
+
SENSITIVE: []
|
|
76
|
+
|
|
77
|
+
class InputDataConfig < AIDatasetConfig
|
|
78
|
+
end
|
|
79
|
+
class Unknown < AIDatasetConfig
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
class AIModelSource
|
|
84
|
+
attr_accessor s3: Types::AIModelSourceS3
|
|
85
|
+
attr_accessor unknown: untyped
|
|
86
|
+
SENSITIVE: []
|
|
87
|
+
|
|
88
|
+
class S3 < AIModelSource
|
|
89
|
+
end
|
|
90
|
+
class Unknown < AIModelSource
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
class AIModelSourceS3
|
|
95
|
+
attr_accessor s3_uri: ::String
|
|
96
|
+
SENSITIVE: []
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
class AIRecommendation
|
|
100
|
+
attr_accessor recommendation_description: ::String
|
|
101
|
+
attr_accessor optimization_details: ::Array[Types::AIRecommendationOptimizationDetail]
|
|
102
|
+
attr_accessor model_details: Types::AIRecommendationModelDetails
|
|
103
|
+
attr_accessor deployment_configuration: Types::AIRecommendationDeploymentConfiguration
|
|
104
|
+
attr_accessor ai_benchmark_job_arn: ::String
|
|
105
|
+
attr_accessor expected_performance: ::Array[Types::AIRecommendationPerformanceMetric]
|
|
106
|
+
SENSITIVE: []
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
class AIRecommendationComputeSpec
|
|
110
|
+
attr_accessor instance_types: ::Array[("ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.g7e.2xlarge" | "ml.g7e.4xlarge" | "ml.g7e.8xlarge" | "ml.g7e.12xlarge" | "ml.g7e.24xlarge" | "ml.g7e.48xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.4xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge")]
|
|
111
|
+
attr_accessor capacity_reservation_config: Types::AICapacityReservationConfig
|
|
112
|
+
SENSITIVE: []
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
class AIRecommendationConstraint
|
|
116
|
+
attr_accessor metric: ("ttft-ms" | "throughput" | "cost")
|
|
117
|
+
SENSITIVE: []
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
class AIRecommendationDeploymentConfiguration
|
|
121
|
+
attr_accessor s3: ::Array[Types::AIRecommendationDeploymentS3Channel]
|
|
122
|
+
attr_accessor image_uri: ::String
|
|
123
|
+
attr_accessor instance_type: ("ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.g7e.2xlarge" | "ml.g7e.4xlarge" | "ml.g7e.8xlarge" | "ml.g7e.12xlarge" | "ml.g7e.24xlarge" | "ml.g7e.48xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.4xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge")
|
|
124
|
+
attr_accessor instance_count: ::Integer
|
|
125
|
+
attr_accessor copy_count_per_instance: ::Integer
|
|
126
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
|
127
|
+
SENSITIVE: []
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
class AIRecommendationDeploymentS3Channel
|
|
131
|
+
attr_accessor channel_name: ::String
|
|
132
|
+
attr_accessor uri: ::String
|
|
133
|
+
SENSITIVE: []
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
class AIRecommendationInferenceSpecification
|
|
137
|
+
attr_accessor framework: ("LMI" | "VLLM")
|
|
138
|
+
SENSITIVE: []
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
class AIRecommendationInstanceDetail
|
|
142
|
+
attr_accessor instance_type: ("ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.g7e.2xlarge" | "ml.g7e.4xlarge" | "ml.g7e.8xlarge" | "ml.g7e.12xlarge" | "ml.g7e.24xlarge" | "ml.g7e.48xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.4xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge")
|
|
143
|
+
attr_accessor instance_count: ::Integer
|
|
144
|
+
attr_accessor copy_count_per_instance: ::Integer
|
|
145
|
+
SENSITIVE: []
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
class AIRecommendationJobSummary
|
|
149
|
+
attr_accessor ai_recommendation_job_name: ::String
|
|
150
|
+
attr_accessor ai_recommendation_job_arn: ::String
|
|
151
|
+
attr_accessor ai_recommendation_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
152
|
+
attr_accessor creation_time: ::Time
|
|
153
|
+
attr_accessor end_time: ::Time
|
|
154
|
+
SENSITIVE: []
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
class AIRecommendationModelDetails
|
|
158
|
+
attr_accessor model_package_arn: ::String
|
|
159
|
+
attr_accessor inference_specification_name: ::String
|
|
160
|
+
attr_accessor instance_details: ::Array[Types::AIRecommendationInstanceDetail]
|
|
161
|
+
SENSITIVE: []
|
|
162
|
+
end
|
|
163
|
+
|
|
164
|
+
class AIRecommendationOptimizationDetail
|
|
165
|
+
attr_accessor optimization_type: ("SpeculativeDecoding" | "KernelTuning")
|
|
166
|
+
attr_accessor optimization_config: ::Hash[::String, ::String]
|
|
167
|
+
SENSITIVE: []
|
|
168
|
+
end
|
|
169
|
+
|
|
170
|
+
class AIRecommendationOutputConfig
|
|
171
|
+
attr_accessor s3_output_location: ::String
|
|
172
|
+
attr_accessor model_package_group_identifier: ::String
|
|
173
|
+
SENSITIVE: []
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
class AIRecommendationOutputResult
|
|
177
|
+
attr_accessor s3_output_location: ::String
|
|
178
|
+
attr_accessor model_package_group_identifier: ::String
|
|
179
|
+
SENSITIVE: []
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
class AIRecommendationPerformanceMetric
|
|
183
|
+
attr_accessor metric: ::String
|
|
184
|
+
attr_accessor stat: ::String
|
|
185
|
+
attr_accessor value: ::String
|
|
186
|
+
attr_accessor unit: ::String
|
|
187
|
+
SENSITIVE: []
|
|
188
|
+
end
|
|
189
|
+
|
|
190
|
+
class AIRecommendationPerformanceTarget
|
|
191
|
+
attr_accessor constraints: ::Array[Types::AIRecommendationConstraint]
|
|
192
|
+
SENSITIVE: []
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
class AIWorkloadConfigSummary
|
|
196
|
+
attr_accessor ai_workload_config_name: ::String
|
|
197
|
+
attr_accessor ai_workload_config_arn: ::String
|
|
198
|
+
attr_accessor creation_time: ::Time
|
|
199
|
+
SENSITIVE: []
|
|
200
|
+
end
|
|
201
|
+
|
|
202
|
+
class AIWorkloadConfigs
|
|
203
|
+
attr_accessor workload_spec: Types::WorkloadSpec
|
|
204
|
+
SENSITIVE: []
|
|
205
|
+
end
|
|
206
|
+
|
|
207
|
+
class AIWorkloadDataSource
|
|
208
|
+
attr_accessor s3_data_source: Types::AIWorkloadS3DataSource
|
|
209
|
+
SENSITIVE: []
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
class AIWorkloadInputDataConfig
|
|
213
|
+
attr_accessor channel_name: ::String
|
|
214
|
+
attr_accessor data_source: Types::AIWorkloadDataSource
|
|
215
|
+
SENSITIVE: []
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
class AIWorkloadS3DataSource
|
|
219
|
+
attr_accessor s3_uri: ::String
|
|
220
|
+
SENSITIVE: []
|
|
221
|
+
end
|
|
222
|
+
|
|
11
223
|
class AcceleratorPartitionConfig
|
|
12
224
|
attr_accessor type: ("mig-1g.5gb" | "mig-1g.10gb" | "mig-1g.18gb" | "mig-1g.20gb" | "mig-1g.23gb" | "mig-1g.35gb" | "mig-1g.45gb" | "mig-1g.47gb" | "mig-2g.10gb" | "mig-2g.20gb" | "mig-2g.35gb" | "mig-2g.45gb" | "mig-2g.47gb" | "mig-3g.20gb" | "mig-3g.40gb" | "mig-3g.71gb" | "mig-3g.90gb" | "mig-3g.93gb" | "mig-4g.20gb" | "mig-4g.40gb" | "mig-4g.71gb" | "mig-4g.90gb" | "mig-4g.93gb" | "mig-7g.40gb" | "mig-7g.80gb" | "mig-7g.141gb" | "mig-7g.180gb" | "mig-7g.186gb")
|
|
13
225
|
attr_accessor count: ::Integer
|
|
@@ -1047,6 +1259,7 @@ module Aws::SageMaker
|
|
|
1047
1259
|
attr_accessor software_update_status: ("Pending" | "InProgress" | "Succeeded" | "Failed" | "RollbackInProgress" | "RollbackComplete")
|
|
1048
1260
|
attr_accessor active_software_update_config: Types::DeploymentConfiguration
|
|
1049
1261
|
attr_accessor slurm_config: Types::ClusterSlurmConfigDetails
|
|
1262
|
+
attr_accessor network_interface: Types::ClusterNetworkInterfaceDetails
|
|
1050
1263
|
SENSITIVE: []
|
|
1051
1264
|
end
|
|
1052
1265
|
|
|
@@ -1068,6 +1281,7 @@ module Aws::SageMaker
|
|
|
1068
1281
|
attr_accessor kubernetes_config: Types::ClusterKubernetesConfig
|
|
1069
1282
|
attr_accessor slurm_config: Types::ClusterSlurmConfig
|
|
1070
1283
|
attr_accessor capacity_requirements: Types::ClusterCapacityRequirements
|
|
1284
|
+
attr_accessor network_interface: Types::ClusterNetworkInterface
|
|
1071
1285
|
SENSITIVE: []
|
|
1072
1286
|
end
|
|
1073
1287
|
|
|
@@ -1150,6 +1364,7 @@ module Aws::SageMaker
|
|
|
1150
1364
|
class ClusterLifeCycleConfig
|
|
1151
1365
|
attr_accessor source_s3_uri: ::String
|
|
1152
1366
|
attr_accessor on_create: ::String
|
|
1367
|
+
attr_accessor on_init_complete: ::String
|
|
1153
1368
|
SENSITIVE: []
|
|
1154
1369
|
end
|
|
1155
1370
|
|
|
@@ -1160,6 +1375,16 @@ module Aws::SageMaker
|
|
|
1160
1375
|
SENSITIVE: []
|
|
1161
1376
|
end
|
|
1162
1377
|
|
|
1378
|
+
class ClusterNetworkInterface
|
|
1379
|
+
attr_accessor interface_type: ("efa" | "efa-only")
|
|
1380
|
+
SENSITIVE: []
|
|
1381
|
+
end
|
|
1382
|
+
|
|
1383
|
+
class ClusterNetworkInterfaceDetails
|
|
1384
|
+
attr_accessor interface_type: ("efa" | "efa-only")
|
|
1385
|
+
SENSITIVE: []
|
|
1386
|
+
end
|
|
1387
|
+
|
|
1163
1388
|
class ClusterNodeDetails
|
|
1164
1389
|
attr_accessor instance_group_name: ::String
|
|
1165
1390
|
attr_accessor instance_id: ::String
|
|
@@ -1181,6 +1406,7 @@ module Aws::SageMaker
|
|
|
1181
1406
|
attr_accessor ultra_server_info: Types::UltraServerInfo
|
|
1182
1407
|
attr_accessor kubernetes_config: Types::ClusterKubernetesConfigNodeDetails
|
|
1183
1408
|
attr_accessor capacity_type: ("Spot" | "OnDemand")
|
|
1409
|
+
attr_accessor network_interface: Types::ClusterNetworkInterfaceDetails
|
|
1184
1410
|
SENSITIVE: []
|
|
1185
1411
|
end
|
|
1186
1412
|
|
|
@@ -1471,6 +1697,54 @@ module Aws::SageMaker
|
|
|
1471
1697
|
SENSITIVE: []
|
|
1472
1698
|
end
|
|
1473
1699
|
|
|
1700
|
+
class CreateAIBenchmarkJobRequest
|
|
1701
|
+
attr_accessor ai_benchmark_job_name: ::String
|
|
1702
|
+
attr_accessor benchmark_target: Types::AIBenchmarkTarget
|
|
1703
|
+
attr_accessor output_config: Types::AIBenchmarkOutputConfig
|
|
1704
|
+
attr_accessor ai_workload_config_identifier: ::String
|
|
1705
|
+
attr_accessor role_arn: ::String
|
|
1706
|
+
attr_accessor network_config: Types::AIBenchmarkNetworkConfig
|
|
1707
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
1708
|
+
SENSITIVE: []
|
|
1709
|
+
end
|
|
1710
|
+
|
|
1711
|
+
class CreateAIBenchmarkJobResponse
|
|
1712
|
+
attr_accessor ai_benchmark_job_arn: ::String
|
|
1713
|
+
SENSITIVE: []
|
|
1714
|
+
end
|
|
1715
|
+
|
|
1716
|
+
class CreateAIRecommendationJobRequest
|
|
1717
|
+
attr_accessor ai_recommendation_job_name: ::String
|
|
1718
|
+
attr_accessor model_source: Types::AIModelSource
|
|
1719
|
+
attr_accessor output_config: Types::AIRecommendationOutputConfig
|
|
1720
|
+
attr_accessor ai_workload_config_identifier: ::String
|
|
1721
|
+
attr_accessor performance_target: Types::AIRecommendationPerformanceTarget
|
|
1722
|
+
attr_accessor role_arn: ::String
|
|
1723
|
+
attr_accessor inference_specification: Types::AIRecommendationInferenceSpecification
|
|
1724
|
+
attr_accessor optimize_model: bool
|
|
1725
|
+
attr_accessor compute_spec: Types::AIRecommendationComputeSpec
|
|
1726
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
1727
|
+
SENSITIVE: []
|
|
1728
|
+
end
|
|
1729
|
+
|
|
1730
|
+
class CreateAIRecommendationJobResponse
|
|
1731
|
+
attr_accessor ai_recommendation_job_arn: ::String
|
|
1732
|
+
SENSITIVE: []
|
|
1733
|
+
end
|
|
1734
|
+
|
|
1735
|
+
class CreateAIWorkloadConfigRequest
|
|
1736
|
+
attr_accessor ai_workload_config_name: ::String
|
|
1737
|
+
attr_accessor dataset_config: Types::AIDatasetConfig
|
|
1738
|
+
attr_accessor ai_workload_configs: Types::AIWorkloadConfigs
|
|
1739
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
1740
|
+
SENSITIVE: []
|
|
1741
|
+
end
|
|
1742
|
+
|
|
1743
|
+
class CreateAIWorkloadConfigResponse
|
|
1744
|
+
attr_accessor ai_workload_config_arn: ::String
|
|
1745
|
+
SENSITIVE: []
|
|
1746
|
+
end
|
|
1747
|
+
|
|
1474
1748
|
class CreateActionRequest
|
|
1475
1749
|
attr_accessor action_name: ::String
|
|
1476
1750
|
attr_accessor source: Types::ActionSource
|
|
@@ -2269,7 +2543,7 @@ module Aws::SageMaker
|
|
|
2269
2543
|
attr_accessor optimization_job_name: ::String
|
|
2270
2544
|
attr_accessor role_arn: ::String
|
|
2271
2545
|
attr_accessor model_source: Types::OptimizationJobModelSource
|
|
2272
|
-
attr_accessor deployment_instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge")
|
|
2546
|
+
attr_accessor deployment_instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge")
|
|
2273
2547
|
attr_accessor max_instance_count: ::Integer
|
|
2274
2548
|
attr_accessor optimization_environment: ::Hash[::String, ::String]
|
|
2275
2549
|
attr_accessor optimization_configs: ::Array[Types::OptimizationConfig]
|
|
@@ -2790,6 +3064,36 @@ module Aws::SageMaker
|
|
|
2790
3064
|
SENSITIVE: []
|
|
2791
3065
|
end
|
|
2792
3066
|
|
|
3067
|
+
class DeleteAIBenchmarkJobRequest
|
|
3068
|
+
attr_accessor ai_benchmark_job_name: ::String
|
|
3069
|
+
SENSITIVE: []
|
|
3070
|
+
end
|
|
3071
|
+
|
|
3072
|
+
class DeleteAIBenchmarkJobResponse
|
|
3073
|
+
attr_accessor ai_benchmark_job_arn: ::String
|
|
3074
|
+
SENSITIVE: []
|
|
3075
|
+
end
|
|
3076
|
+
|
|
3077
|
+
class DeleteAIRecommendationJobRequest
|
|
3078
|
+
attr_accessor ai_recommendation_job_name: ::String
|
|
3079
|
+
SENSITIVE: []
|
|
3080
|
+
end
|
|
3081
|
+
|
|
3082
|
+
class DeleteAIRecommendationJobResponse
|
|
3083
|
+
attr_accessor ai_recommendation_job_arn: ::String
|
|
3084
|
+
SENSITIVE: []
|
|
3085
|
+
end
|
|
3086
|
+
|
|
3087
|
+
class DeleteAIWorkloadConfigRequest
|
|
3088
|
+
attr_accessor ai_workload_config_name: ::String
|
|
3089
|
+
SENSITIVE: []
|
|
3090
|
+
end
|
|
3091
|
+
|
|
3092
|
+
class DeleteAIWorkloadConfigResponse
|
|
3093
|
+
attr_accessor ai_workload_config_arn: ::String
|
|
3094
|
+
SENSITIVE: []
|
|
3095
|
+
end
|
|
3096
|
+
|
|
2793
3097
|
class DeleteActionRequest
|
|
2794
3098
|
attr_accessor action_name: ::String
|
|
2795
3099
|
SENSITIVE: []
|
|
@@ -3242,6 +3546,69 @@ module Aws::SageMaker
|
|
|
3242
3546
|
SENSITIVE: []
|
|
3243
3547
|
end
|
|
3244
3548
|
|
|
3549
|
+
class DescribeAIBenchmarkJobRequest
|
|
3550
|
+
attr_accessor ai_benchmark_job_name: ::String
|
|
3551
|
+
SENSITIVE: []
|
|
3552
|
+
end
|
|
3553
|
+
|
|
3554
|
+
class DescribeAIBenchmarkJobResponse
|
|
3555
|
+
attr_accessor ai_benchmark_job_name: ::String
|
|
3556
|
+
attr_accessor ai_benchmark_job_arn: ::String
|
|
3557
|
+
attr_accessor ai_benchmark_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
3558
|
+
attr_accessor failure_reason: ::String
|
|
3559
|
+
attr_accessor benchmark_target: Types::AIBenchmarkTarget
|
|
3560
|
+
attr_accessor output_config: Types::AIBenchmarkOutputResult
|
|
3561
|
+
attr_accessor ai_workload_config_identifier: ::String
|
|
3562
|
+
attr_accessor role_arn: ::String
|
|
3563
|
+
attr_accessor network_config: Types::AIBenchmarkNetworkConfig
|
|
3564
|
+
attr_accessor creation_time: ::Time
|
|
3565
|
+
attr_accessor start_time: ::Time
|
|
3566
|
+
attr_accessor end_time: ::Time
|
|
3567
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
3568
|
+
SENSITIVE: []
|
|
3569
|
+
end
|
|
3570
|
+
|
|
3571
|
+
class DescribeAIRecommendationJobRequest
|
|
3572
|
+
attr_accessor ai_recommendation_job_name: ::String
|
|
3573
|
+
SENSITIVE: []
|
|
3574
|
+
end
|
|
3575
|
+
|
|
3576
|
+
class DescribeAIRecommendationJobResponse
|
|
3577
|
+
attr_accessor ai_recommendation_job_name: ::String
|
|
3578
|
+
attr_accessor ai_recommendation_job_arn: ::String
|
|
3579
|
+
attr_accessor ai_recommendation_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
3580
|
+
attr_accessor failure_reason: ::String
|
|
3581
|
+
attr_accessor model_source: Types::AIModelSource
|
|
3582
|
+
attr_accessor output_config: Types::AIRecommendationOutputResult
|
|
3583
|
+
attr_accessor inference_specification: Types::AIRecommendationInferenceSpecification
|
|
3584
|
+
attr_accessor ai_workload_config_identifier: ::String
|
|
3585
|
+
attr_accessor optimize_model: bool
|
|
3586
|
+
attr_accessor performance_target: Types::AIRecommendationPerformanceTarget
|
|
3587
|
+
attr_accessor recommendations: ::Array[Types::AIRecommendation]
|
|
3588
|
+
attr_accessor role_arn: ::String
|
|
3589
|
+
attr_accessor compute_spec: Types::AIRecommendationComputeSpec
|
|
3590
|
+
attr_accessor creation_time: ::Time
|
|
3591
|
+
attr_accessor start_time: ::Time
|
|
3592
|
+
attr_accessor end_time: ::Time
|
|
3593
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
3594
|
+
SENSITIVE: []
|
|
3595
|
+
end
|
|
3596
|
+
|
|
3597
|
+
class DescribeAIWorkloadConfigRequest
|
|
3598
|
+
attr_accessor ai_workload_config_name: ::String
|
|
3599
|
+
SENSITIVE: []
|
|
3600
|
+
end
|
|
3601
|
+
|
|
3602
|
+
class DescribeAIWorkloadConfigResponse
|
|
3603
|
+
attr_accessor ai_workload_config_name: ::String
|
|
3604
|
+
attr_accessor ai_workload_config_arn: ::String
|
|
3605
|
+
attr_accessor dataset_config: Types::AIDatasetConfig
|
|
3606
|
+
attr_accessor ai_workload_configs: Types::AIWorkloadConfigs
|
|
3607
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
3608
|
+
attr_accessor creation_time: ::Time
|
|
3609
|
+
SENSITIVE: []
|
|
3610
|
+
end
|
|
3611
|
+
|
|
3245
3612
|
class DescribeActionRequest
|
|
3246
3613
|
attr_accessor action_name: ::String
|
|
3247
3614
|
SENSITIVE: []
|
|
@@ -4389,7 +4756,7 @@ module Aws::SageMaker
|
|
|
4389
4756
|
attr_accessor optimization_job_name: ::String
|
|
4390
4757
|
attr_accessor model_source: Types::OptimizationJobModelSource
|
|
4391
4758
|
attr_accessor optimization_environment: ::Hash[::String, ::String]
|
|
4392
|
-
attr_accessor deployment_instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge")
|
|
4759
|
+
attr_accessor deployment_instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge")
|
|
4393
4760
|
attr_accessor max_instance_count: ::Integer
|
|
4394
4761
|
attr_accessor optimization_configs: ::Array[Types::OptimizationConfig]
|
|
4395
4762
|
attr_accessor output_config: Types::OptimizationJobOutputConfig
|
|
@@ -6409,6 +6776,59 @@ module Aws::SageMaker
|
|
|
6409
6776
|
SENSITIVE: []
|
|
6410
6777
|
end
|
|
6411
6778
|
|
|
6779
|
+
class ListAIBenchmarkJobsRequest
|
|
6780
|
+
attr_accessor max_results: ::Integer
|
|
6781
|
+
attr_accessor next_token: ::String
|
|
6782
|
+
attr_accessor name_contains: ::String
|
|
6783
|
+
attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
6784
|
+
attr_accessor creation_time_after: ::Time
|
|
6785
|
+
attr_accessor creation_time_before: ::Time
|
|
6786
|
+
attr_accessor sort_by: ("Name" | "CreationTime" | "Status")
|
|
6787
|
+
attr_accessor sort_order: ("Ascending" | "Descending")
|
|
6788
|
+
SENSITIVE: []
|
|
6789
|
+
end
|
|
6790
|
+
|
|
6791
|
+
class ListAIBenchmarkJobsResponse
|
|
6792
|
+
attr_accessor ai_benchmark_jobs: ::Array[Types::AIBenchmarkJobSummary]
|
|
6793
|
+
attr_accessor next_token: ::String
|
|
6794
|
+
SENSITIVE: []
|
|
6795
|
+
end
|
|
6796
|
+
|
|
6797
|
+
class ListAIRecommendationJobsRequest
|
|
6798
|
+
attr_accessor max_results: ::Integer
|
|
6799
|
+
attr_accessor next_token: ::String
|
|
6800
|
+
attr_accessor name_contains: ::String
|
|
6801
|
+
attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
6802
|
+
attr_accessor creation_time_after: ::Time
|
|
6803
|
+
attr_accessor creation_time_before: ::Time
|
|
6804
|
+
attr_accessor sort_by: ("Name" | "CreationTime" | "Status")
|
|
6805
|
+
attr_accessor sort_order: ("Ascending" | "Descending")
|
|
6806
|
+
SENSITIVE: []
|
|
6807
|
+
end
|
|
6808
|
+
|
|
6809
|
+
class ListAIRecommendationJobsResponse
|
|
6810
|
+
attr_accessor ai_recommendation_jobs: ::Array[Types::AIRecommendationJobSummary]
|
|
6811
|
+
attr_accessor next_token: ::String
|
|
6812
|
+
SENSITIVE: []
|
|
6813
|
+
end
|
|
6814
|
+
|
|
6815
|
+
class ListAIWorkloadConfigsRequest
|
|
6816
|
+
attr_accessor max_results: ::Integer
|
|
6817
|
+
attr_accessor next_token: ::String
|
|
6818
|
+
attr_accessor name_contains: ::String
|
|
6819
|
+
attr_accessor creation_time_after: ::Time
|
|
6820
|
+
attr_accessor creation_time_before: ::Time
|
|
6821
|
+
attr_accessor sort_by: ("Name" | "CreationTime")
|
|
6822
|
+
attr_accessor sort_order: ("Ascending" | "Descending")
|
|
6823
|
+
SENSITIVE: []
|
|
6824
|
+
end
|
|
6825
|
+
|
|
6826
|
+
class ListAIWorkloadConfigsResponse
|
|
6827
|
+
attr_accessor ai_workload_configs: ::Array[Types::AIWorkloadConfigSummary]
|
|
6828
|
+
attr_accessor next_token: ::String
|
|
6829
|
+
SENSITIVE: []
|
|
6830
|
+
end
|
|
6831
|
+
|
|
6412
6832
|
class ListActionsRequest
|
|
6413
6833
|
attr_accessor source_uri: ::String
|
|
6414
6834
|
attr_accessor action_type: ::String
|
|
@@ -8357,6 +8777,7 @@ module Aws::SageMaker
|
|
|
8357
8777
|
attr_accessor framework: ::String
|
|
8358
8778
|
attr_accessor framework_version: ::String
|
|
8359
8779
|
attr_accessor nearest_model_name: ::String
|
|
8780
|
+
attr_accessor additional_model_data_sources: ::Array[Types::AdditionalModelDataSource]
|
|
8360
8781
|
attr_accessor additional_s3_data_source: Types::AdditionalS3DataSource
|
|
8361
8782
|
attr_accessor model_data_etag: ::String
|
|
8362
8783
|
attr_accessor is_checkpoint: bool
|
|
@@ -8898,7 +9319,7 @@ module Aws::SageMaker
|
|
|
8898
9319
|
attr_accessor optimization_start_time: ::Time
|
|
8899
9320
|
attr_accessor optimization_end_time: ::Time
|
|
8900
9321
|
attr_accessor last_modified_time: ::Time
|
|
8901
|
-
attr_accessor deployment_instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge")
|
|
9322
|
+
attr_accessor deployment_instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge")
|
|
8902
9323
|
attr_accessor max_instance_count: ::Integer
|
|
8903
9324
|
attr_accessor optimization_types: ::Array[::String]
|
|
8904
9325
|
SENSITIVE: []
|
|
@@ -10322,6 +10743,26 @@ module Aws::SageMaker
|
|
|
10322
10743
|
SENSITIVE: []
|
|
10323
10744
|
end
|
|
10324
10745
|
|
|
10746
|
+
class StopAIBenchmarkJobRequest
|
|
10747
|
+
attr_accessor ai_benchmark_job_name: ::String
|
|
10748
|
+
SENSITIVE: []
|
|
10749
|
+
end
|
|
10750
|
+
|
|
10751
|
+
class StopAIBenchmarkJobResponse
|
|
10752
|
+
attr_accessor ai_benchmark_job_arn: ::String
|
|
10753
|
+
SENSITIVE: []
|
|
10754
|
+
end
|
|
10755
|
+
|
|
10756
|
+
class StopAIRecommendationJobRequest
|
|
10757
|
+
attr_accessor ai_recommendation_job_name: ::String
|
|
10758
|
+
SENSITIVE: []
|
|
10759
|
+
end
|
|
10760
|
+
|
|
10761
|
+
class StopAIRecommendationJobResponse
|
|
10762
|
+
attr_accessor ai_recommendation_job_arn: ::String
|
|
10763
|
+
SENSITIVE: []
|
|
10764
|
+
end
|
|
10765
|
+
|
|
10325
10766
|
class StopAutoMLJobRequest
|
|
10326
10767
|
attr_accessor auto_ml_job_name: ::String
|
|
10327
10768
|
SENSITIVE: []
|
|
@@ -11857,6 +12298,17 @@ module Aws::SageMaker
|
|
|
11857
12298
|
SENSITIVE: []
|
|
11858
12299
|
end
|
|
11859
12300
|
|
|
12301
|
+
class WorkloadSpec
|
|
12302
|
+
attr_accessor inline: ::String
|
|
12303
|
+
attr_accessor unknown: untyped
|
|
12304
|
+
SENSITIVE: []
|
|
12305
|
+
|
|
12306
|
+
class Inline < WorkloadSpec
|
|
12307
|
+
end
|
|
12308
|
+
class Unknown < WorkloadSpec
|
|
12309
|
+
end
|
|
12310
|
+
end
|
|
12311
|
+
|
|
11860
12312
|
class WorkspaceSettings
|
|
11861
12313
|
attr_accessor s3_artifact_path: ::String
|
|
11862
12314
|
attr_accessor s3_kms_key_id: ::String
|