@aws-sdk/client-sagemaker 3.461.0 → 3.462.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.
Files changed (181) hide show
  1. package/README.md +104 -0
  2. package/dist-cjs/SageMaker.js +26 -0
  3. package/dist-cjs/commands/CreateClusterCommand.js +51 -0
  4. package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
  5. package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
  7. package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
  8. package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
  9. package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
  10. package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
  11. package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
  12. package/dist-cjs/commands/ListClustersCommand.js +51 -0
  13. package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
  14. package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
  15. package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
  16. package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
  17. package/dist-cjs/commands/index.js +13 -0
  18. package/dist-cjs/models/models_0.js +62 -51
  19. package/dist-cjs/models/models_1.js +63 -30
  20. package/dist-cjs/models/models_2.js +37 -39
  21. package/dist-cjs/models/models_3.js +45 -44
  22. package/dist-cjs/models/models_4.js +45 -3
  23. package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
  24. package/dist-cjs/pagination/index.js +1 -0
  25. package/dist-cjs/protocols/Aws_json1_1.js +845 -13
  26. package/dist-es/SageMaker.js +26 -0
  27. package/dist-es/commands/CreateClusterCommand.js +47 -0
  28. package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
  29. package/dist-es/commands/CreateWorkforceCommand.js +1 -1
  30. package/dist-es/commands/DeleteClusterCommand.js +47 -0
  31. package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
  32. package/dist-es/commands/DescribeClusterCommand.js +47 -0
  33. package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
  34. package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
  35. package/dist-es/commands/ListClusterNodesCommand.js +47 -0
  36. package/dist-es/commands/ListClustersCommand.js +47 -0
  37. package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
  38. package/dist-es/commands/UpdateClusterCommand.js +47 -0
  39. package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
  40. package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
  41. package/dist-es/commands/index.js +13 -0
  42. package/dist-es/models/models_0.js +60 -50
  43. package/dist-es/models/models_1.js +62 -27
  44. package/dist-es/models/models_2.js +34 -38
  45. package/dist-es/models/models_3.js +43 -42
  46. package/dist-es/models/models_4.js +43 -1
  47. package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
  48. package/dist-es/pagination/index.js +1 -0
  49. package/dist-es/protocols/Aws_json1_1.js +807 -1
  50. package/dist-types/SageMaker.d.ts +91 -0
  51. package/dist-types/SageMakerClient.d.ts +15 -2
  52. package/dist-types/commands/AddTagsCommand.d.ts +1 -1
  53. package/dist-types/commands/CreateAppCommand.d.ts +2 -1
  54. package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
  55. package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
  56. package/dist-types/commands/CreateDomainCommand.d.ts +15 -8
  57. package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
  58. package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
  59. package/dist-types/commands/CreateModelCommand.d.ts +1 -1
  60. package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
  61. package/dist-types/commands/CreateSpaceCommand.d.ts +2 -0
  62. package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +1 -1
  63. package/dist-types/commands/CreateTrainingJobCommand.d.ts +3 -0
  64. package/dist-types/commands/CreateUserProfileCommand.d.ts +9 -2
  65. package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
  66. package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
  67. package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
  68. package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
  69. package/dist-types/commands/DeleteAppCommand.d.ts +1 -1
  70. package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
  71. package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
  72. package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
  73. package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
  74. package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
  75. package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
  76. package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
  77. package/dist-types/commands/DescribeAppCommand.d.ts +1 -0
  78. package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
  79. package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
  80. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
  81. package/dist-types/commands/DescribeDomainCommand.d.ts +7 -0
  82. package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
  83. package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
  84. package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
  85. package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
  86. package/dist-types/commands/DescribeSpaceCommand.d.ts +3 -0
  87. package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +1 -1
  88. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +3 -0
  89. package/dist-types/commands/DescribeUserProfileCommand.d.ts +8 -1
  90. package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
  91. package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
  92. package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  93. package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
  94. package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  95. package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
  96. package/dist-types/commands/ListClustersCommand.d.ts +87 -0
  97. package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
  98. package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
  99. package/dist-types/commands/ListSpacesCommand.d.ts +1 -1
  100. package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
  101. package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +2 -2
  102. package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
  103. package/dist-types/commands/ListTagsCommand.d.ts +1 -1
  104. package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
  105. package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  106. package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
  107. package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
  108. package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
  109. package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
  110. package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
  111. package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
  112. package/dist-types/commands/SearchCommand.d.ts +16 -0
  113. package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
  114. package/dist-types/commands/UpdateDomainCommand.d.ts +11 -0
  115. package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
  116. package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
  117. package/dist-types/commands/UpdateSpaceCommand.d.ts +2 -0
  118. package/dist-types/commands/UpdateUserProfileCommand.d.ts +6 -0
  119. package/dist-types/commands/index.d.ts +13 -0
  120. package/dist-types/models/models_0.d.ts +409 -345
  121. package/dist-types/models/models_1.d.ts +708 -551
  122. package/dist-types/models/models_2.d.ts +5059 -5239
  123. package/dist-types/models/models_3.d.ts +4732 -4693
  124. package/dist-types/models/models_4.d.ts +1446 -4
  125. package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
  126. package/dist-types/pagination/index.d.ts +1 -0
  127. package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
  128. package/dist-types/ts3.4/SageMaker.d.ts +227 -0
  129. package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
  130. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
  131. package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
  132. package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +2 -4
  133. package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
  134. package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
  135. package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
  136. package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
  137. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
  138. package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
  139. package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
  142. package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
  143. package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
  144. package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
  145. package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
  146. package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +2 -4
  147. package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
  148. package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
  149. package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  150. package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
  151. package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  152. package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
  153. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
  154. package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
  155. package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
  156. package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
  157. package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
  158. package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
  159. package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
  160. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
  161. package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
  162. package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  163. package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
  164. package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
  166. package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
  168. package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
  170. package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
  171. package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
  172. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  173. package/dist-types/ts3.4/models/models_0.d.ts +124 -111
  174. package/dist-types/ts3.4/models/models_1.d.ts +188 -151
  175. package/dist-types/ts3.4/models/models_2.d.ts +227 -288
  176. package/dist-types/ts3.4/models/models_3.d.ts +349 -344
  177. package/dist-types/ts3.4/models/models_4.d.ts +372 -15
  178. package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.d.ts +11 -0
  179. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  180. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +156 -0
  181. package/package.json +2 -2
@@ -21,32 +21,34 @@ import {
21
21
  CandidateSortBy,
22
22
  CandidateStatus,
23
23
  ClarifyCheckStepMetadata,
24
+ ClusterNodeSummary,
25
+ ClusterSortBy,
26
+ ClusterSummary,
24
27
  CodeRepositorySortBy,
25
28
  CodeRepositorySortOrder,
26
29
  CodeRepositorySummary,
30
+ CognitoConfig,
27
31
  CompilationJobStatus,
28
32
  CompilationJobSummary,
29
33
  ConditionStepMetadata,
30
- ContainerDefinition,
31
34
  ContextSummary,
32
35
  ModelApprovalStatus,
33
36
  ModelPackageStatus,
34
37
  OutputParameter,
38
+ ResourceSpec,
35
39
  Tag,
36
40
  UserContext,
37
- VpcConfig,
38
41
  } from "./models_0";
39
42
  import {
40
43
  _InstanceType,
41
- DataCaptureConfigSummary,
42
44
  EdgeOutputConfig,
45
+ ExecutionRoleIdentityConfig,
43
46
  FeatureDefinition,
44
47
  FeatureType,
45
48
  HyperParameterTrainingJobDefinition,
46
49
  HyperParameterTuningJobConfig,
47
50
  HyperParameterTuningJobStrategyType,
48
51
  HyperParameterTuningJobWarmStartConfig,
49
- InferenceExecutionConfig,
50
52
  InferenceExperimentSchedule,
51
53
  InferenceExperimentType,
52
54
  LabelingJobInputConfig,
@@ -57,22 +59,13 @@ import {
57
59
  OnlineStoreConfig,
58
60
  RecommendationJobType,
59
61
  ResourceLimits,
60
- StudioLifecycleConfigAppType,
61
- TrialComponentStatus,
62
+ UserSettings,
62
63
  } from "./models_1";
63
64
  import {
64
- DeploymentRecommendation,
65
- DeviceDeploymentSummary,
66
- DeviceFleetSummary,
67
- DeviceStats,
68
- DeviceSummary,
69
- DomainDetails,
70
- DynamicScalingConfiguration,
71
- EdgeDeploymentPlanSummary,
72
- EdgeModelStat,
65
+ CustomizedMetricSpecification,
66
+ DataCaptureConfigSummary,
67
+ DomainStatus,
73
68
  EdgePackagingJobStatus,
74
- EdgePackagingJobSummary,
75
- EMRStepMetadata,
76
69
  EndpointOutputConfiguration,
77
70
  EndpointStatus,
78
71
  ExecutionStatus,
@@ -89,17 +82,20 @@ import {
89
82
  HyperParameterTuningJobStatus,
90
83
  ImageStatus,
91
84
  ImageVersionStatus,
85
+ InferenceComponentStatus,
92
86
  InferenceExperimentStatus,
93
87
  InferenceMetrics,
94
88
  LabelCounters,
95
89
  LabelingJobOutput,
96
90
  LabelingJobStatus,
97
91
  LastUpdateStatus,
92
+ MemberDefinition,
98
93
  ModelCardExportJobStatus,
99
94
  ModelConfiguration,
100
95
  ModelPackageGroupStatus,
101
96
  MonitoringExecutionSummary,
102
97
  NotebookInstanceStatus,
98
+ NotificationConfiguration,
103
99
  ObjectiveStatusCounters,
104
100
  OfflineStoreStatus,
105
101
  OfflineStoreStatusValue,
@@ -110,19 +106,283 @@ import {
110
106
  RecommendationJobStatus,
111
107
  RecommendationMetrics,
112
108
  ScheduleStatus,
113
- SpaceStatus,
114
- SubscribedWorkteam,
115
- TrainingJobStatus,
109
+ SourceIpConfig,
116
110
  TrainingJobStatusCounters,
117
- TransformJobStatus,
118
- TrialComponentSource,
119
- TrialSource,
120
111
  UserProfileStatus,
121
- WarmPoolResourceStatus,
122
- WarmPoolStatus,
123
- Workforce,
124
- Workteam,
125
112
  } from "./models_2";
113
+ export interface DescribeUserProfileResponse {
114
+ DomainId?: string;
115
+ UserProfileArn?: string;
116
+ UserProfileName?: string;
117
+ HomeEfsFileSystemUid?: string;
118
+ Status?: UserProfileStatus;
119
+ LastModifiedTime?: Date;
120
+ CreationTime?: Date;
121
+ FailureReason?: string;
122
+ SingleSignOnUserIdentifier?: string;
123
+ SingleSignOnUserValue?: string;
124
+ UserSettings?: UserSettings;
125
+ }
126
+ export interface DescribeWorkforceRequest {
127
+ WorkforceName: string | undefined;
128
+ }
129
+ export interface OidcConfigForResponse {
130
+ ClientId?: string;
131
+ Issuer?: string;
132
+ AuthorizationEndpoint?: string;
133
+ TokenEndpoint?: string;
134
+ UserInfoEndpoint?: string;
135
+ LogoutEndpoint?: string;
136
+ JwksUri?: string;
137
+ }
138
+ export declare const WorkforceStatus: {
139
+ readonly ACTIVE: "Active";
140
+ readonly DELETING: "Deleting";
141
+ readonly FAILED: "Failed";
142
+ readonly INITIALIZING: "Initializing";
143
+ readonly UPDATING: "Updating";
144
+ };
145
+ export type WorkforceStatus =
146
+ (typeof WorkforceStatus)[keyof typeof WorkforceStatus];
147
+ export interface WorkforceVpcConfigResponse {
148
+ VpcId: string | undefined;
149
+ SecurityGroupIds: string[] | undefined;
150
+ Subnets: string[] | undefined;
151
+ VpcEndpointId?: string;
152
+ }
153
+ export interface Workforce {
154
+ WorkforceName: string | undefined;
155
+ WorkforceArn: string | undefined;
156
+ LastUpdatedDate?: Date;
157
+ SourceIpConfig?: SourceIpConfig;
158
+ SubDomain?: string;
159
+ CognitoConfig?: CognitoConfig;
160
+ OidcConfig?: OidcConfigForResponse;
161
+ CreateDate?: Date;
162
+ WorkforceVpcConfig?: WorkforceVpcConfigResponse;
163
+ Status?: WorkforceStatus;
164
+ FailureReason?: string;
165
+ }
166
+ export interface DescribeWorkforceResponse {
167
+ Workforce: Workforce | undefined;
168
+ }
169
+ export interface DescribeWorkteamRequest {
170
+ WorkteamName: string | undefined;
171
+ }
172
+ export interface Workteam {
173
+ WorkteamName: string | undefined;
174
+ MemberDefinitions: MemberDefinition[] | undefined;
175
+ WorkteamArn: string | undefined;
176
+ WorkforceArn?: string;
177
+ ProductListingIds?: string[];
178
+ Description: string | undefined;
179
+ SubDomain?: string;
180
+ CreateDate?: Date;
181
+ LastUpdatedDate?: Date;
182
+ NotificationConfiguration?: NotificationConfiguration;
183
+ }
184
+ export interface DescribeWorkteamResponse {
185
+ Workteam: Workteam | undefined;
186
+ }
187
+ export interface ProductionVariantServerlessUpdateConfig {
188
+ MaxConcurrency?: number;
189
+ ProvisionedConcurrency?: number;
190
+ }
191
+ export interface DesiredWeightAndCapacity {
192
+ VariantName: string | undefined;
193
+ DesiredWeight?: number;
194
+ DesiredInstanceCount?: number;
195
+ ServerlessUpdateConfig?: ProductionVariantServerlessUpdateConfig;
196
+ }
197
+ export interface Device {
198
+ DeviceName: string | undefined;
199
+ Description?: string;
200
+ IotThingName?: string;
201
+ }
202
+ export declare const DeviceDeploymentStatus: {
203
+ readonly Deployed: "DEPLOYED";
204
+ readonly Failed: "FAILED";
205
+ readonly InProgress: "INPROGRESS";
206
+ readonly ReadyToDeploy: "READYTODEPLOY";
207
+ readonly Stopped: "STOPPED";
208
+ readonly Stopping: "STOPPING";
209
+ };
210
+ export type DeviceDeploymentStatus =
211
+ (typeof DeviceDeploymentStatus)[keyof typeof DeviceDeploymentStatus];
212
+ export interface DeviceDeploymentSummary {
213
+ EdgeDeploymentPlanArn: string | undefined;
214
+ EdgeDeploymentPlanName: string | undefined;
215
+ StageName: string | undefined;
216
+ DeployedStageName?: string;
217
+ DeviceFleetName?: string;
218
+ DeviceName: string | undefined;
219
+ DeviceArn: string | undefined;
220
+ DeviceDeploymentStatus?: DeviceDeploymentStatus;
221
+ DeviceDeploymentStatusMessage?: string;
222
+ Description?: string;
223
+ DeploymentStartTime?: Date;
224
+ }
225
+ export interface DeviceFleetSummary {
226
+ DeviceFleetArn: string | undefined;
227
+ DeviceFleetName: string | undefined;
228
+ CreationTime?: Date;
229
+ LastModifiedTime?: Date;
230
+ }
231
+ export interface DeviceStats {
232
+ ConnectedDeviceCount: number | undefined;
233
+ RegisteredDeviceCount: number | undefined;
234
+ }
235
+ export interface EdgeModelSummary {
236
+ ModelName: string | undefined;
237
+ ModelVersion: string | undefined;
238
+ }
239
+ export interface DeviceSummary {
240
+ DeviceName: string | undefined;
241
+ DeviceArn: string | undefined;
242
+ Description?: string;
243
+ DeviceFleetName?: string;
244
+ IotThingName?: string;
245
+ RegistrationTime?: Date;
246
+ LatestHeartbeat?: Date;
247
+ Models?: EdgeModelSummary[];
248
+ AgentVersion?: string;
249
+ }
250
+ export declare const Direction: {
251
+ readonly ASCENDANTS: "Ascendants";
252
+ readonly BOTH: "Both";
253
+ readonly DESCENDANTS: "Descendants";
254
+ };
255
+ export type Direction = (typeof Direction)[keyof typeof Direction];
256
+ export interface DisableSagemakerServicecatalogPortfolioInput {}
257
+ export interface DisableSagemakerServicecatalogPortfolioOutput {}
258
+ export interface DisassociateTrialComponentRequest {
259
+ TrialComponentName: string | undefined;
260
+ TrialName: string | undefined;
261
+ }
262
+ export interface DisassociateTrialComponentResponse {
263
+ TrialComponentArn?: string;
264
+ TrialArn?: string;
265
+ }
266
+ export interface DomainDetails {
267
+ DomainArn?: string;
268
+ DomainId?: string;
269
+ DomainName?: string;
270
+ Status?: DomainStatus;
271
+ CreationTime?: Date;
272
+ LastModifiedTime?: Date;
273
+ Url?: string;
274
+ }
275
+ export interface RStudioServerProDomainSettingsForUpdate {
276
+ DomainExecutionRoleArn: string | undefined;
277
+ DefaultResourceSpec?: ResourceSpec;
278
+ RStudioConnectUrl?: string;
279
+ RStudioPackageManagerUrl?: string;
280
+ }
281
+ export interface DomainSettingsForUpdate {
282
+ RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
283
+ ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
284
+ SecurityGroupIds?: string[];
285
+ }
286
+ export interface PredefinedMetricSpecification {
287
+ PredefinedMetricType?: string;
288
+ }
289
+ export type MetricSpecification =
290
+ | MetricSpecification.CustomizedMember
291
+ | MetricSpecification.PredefinedMember
292
+ | MetricSpecification.$UnknownMember;
293
+ export declare namespace MetricSpecification {
294
+ interface PredefinedMember {
295
+ Predefined: PredefinedMetricSpecification;
296
+ Customized?: never;
297
+ $unknown?: never;
298
+ }
299
+ interface CustomizedMember {
300
+ Predefined?: never;
301
+ Customized: CustomizedMetricSpecification;
302
+ $unknown?: never;
303
+ }
304
+ interface $UnknownMember {
305
+ Predefined?: never;
306
+ Customized?: never;
307
+ $unknown: [string, any];
308
+ }
309
+ interface Visitor<T> {
310
+ Predefined: (value: PredefinedMetricSpecification) => T;
311
+ Customized: (value: CustomizedMetricSpecification) => T;
312
+ _: (name: string, value: any) => T;
313
+ }
314
+ const visit: <T>(value: MetricSpecification, visitor: Visitor<T>) => T;
315
+ }
316
+ export interface TargetTrackingScalingPolicyConfiguration {
317
+ MetricSpecification?: MetricSpecification;
318
+ TargetValue?: number;
319
+ }
320
+ export type ScalingPolicy =
321
+ | ScalingPolicy.TargetTrackingMember
322
+ | ScalingPolicy.$UnknownMember;
323
+ export declare namespace ScalingPolicy {
324
+ interface TargetTrackingMember {
325
+ TargetTracking: TargetTrackingScalingPolicyConfiguration;
326
+ $unknown?: never;
327
+ }
328
+ interface $UnknownMember {
329
+ TargetTracking?: never;
330
+ $unknown: [string, any];
331
+ }
332
+ interface Visitor<T> {
333
+ TargetTracking: (value: TargetTrackingScalingPolicyConfiguration) => T;
334
+ _: (name: string, value: any) => T;
335
+ }
336
+ const visit: <T>(value: ScalingPolicy, visitor: Visitor<T>) => T;
337
+ }
338
+ export interface DynamicScalingConfiguration {
339
+ MinCapacity?: number;
340
+ MaxCapacity?: number;
341
+ ScaleInCooldown?: number;
342
+ ScaleOutCooldown?: number;
343
+ ScalingPolicies?: ScalingPolicy[];
344
+ }
345
+ export interface Edge {
346
+ SourceArn?: string;
347
+ DestinationArn?: string;
348
+ AssociationType?: AssociationEdgeType;
349
+ }
350
+ export interface EdgeDeploymentPlanSummary {
351
+ EdgeDeploymentPlanArn: string | undefined;
352
+ EdgeDeploymentPlanName: string | undefined;
353
+ DeviceFleetName: string | undefined;
354
+ EdgeDeploymentSuccess: number | undefined;
355
+ EdgeDeploymentPending: number | undefined;
356
+ EdgeDeploymentFailed: number | undefined;
357
+ CreationTime?: Date;
358
+ LastModifiedTime?: Date;
359
+ }
360
+ export interface EdgeModelStat {
361
+ ModelName: string | undefined;
362
+ ModelVersion: string | undefined;
363
+ OfflineDeviceCount: number | undefined;
364
+ ConnectedDeviceCount: number | undefined;
365
+ ActiveDeviceCount: number | undefined;
366
+ SamplingDeviceCount: number | undefined;
367
+ }
368
+ export interface EdgePackagingJobSummary {
369
+ EdgePackagingJobArn: string | undefined;
370
+ EdgePackagingJobName: string | undefined;
371
+ EdgePackagingJobStatus: EdgePackagingJobStatus | undefined;
372
+ CompilationJobName?: string;
373
+ ModelName?: string;
374
+ ModelVersion?: string;
375
+ CreationTime?: Date;
376
+ LastModifiedTime?: Date;
377
+ }
378
+ export interface EMRStepMetadata {
379
+ ClusterId?: string;
380
+ StepId?: string;
381
+ StepName?: string;
382
+ LogFilePath?: string;
383
+ }
384
+ export interface EnableSagemakerServicecatalogPortfolioInput {}
385
+ export interface EnableSagemakerServicecatalogPortfolioOutput {}
126
386
  export interface MonitoringSchedule {
127
387
  MonitoringScheduleArn?: string;
128
388
  MonitoringScheduleName?: string;
@@ -510,6 +770,23 @@ export interface ImportHubContentResponse {
510
770
  HubArn: string | undefined;
511
771
  HubContentArn: string | undefined;
512
772
  }
773
+ export declare const InferenceComponentSortKey: {
774
+ readonly CreationTime: "CreationTime";
775
+ readonly Name: "Name";
776
+ readonly Status: "Status";
777
+ };
778
+ export type InferenceComponentSortKey =
779
+ (typeof InferenceComponentSortKey)[keyof typeof InferenceComponentSortKey];
780
+ export interface InferenceComponentSummary {
781
+ CreationTime: Date | undefined;
782
+ InferenceComponentArn: string | undefined;
783
+ InferenceComponentName: string | undefined;
784
+ EndpointArn: string | undefined;
785
+ EndpointName: string | undefined;
786
+ VariantName: string | undefined;
787
+ InferenceComponentStatus?: InferenceComponentStatus;
788
+ LastModifiedTime: Date | undefined;
789
+ }
513
790
  export interface InferenceExperimentSummary {
514
791
  Name: string | undefined;
515
792
  Type: InferenceExperimentType | undefined;
@@ -758,6 +1035,33 @@ export interface ListCandidatesForAutoMLJobResponse {
758
1035
  Candidates: AutoMLCandidate[] | undefined;
759
1036
  NextToken?: string;
760
1037
  }
1038
+ export interface ListClusterNodesRequest {
1039
+ ClusterName: string | undefined;
1040
+ CreationTimeAfter?: Date;
1041
+ CreationTimeBefore?: Date;
1042
+ InstanceGroupNameContains?: string;
1043
+ MaxResults?: number;
1044
+ NextToken?: string;
1045
+ SortBy?: ClusterSortBy;
1046
+ SortOrder?: SortOrder;
1047
+ }
1048
+ export interface ListClusterNodesResponse {
1049
+ NextToken: string | undefined;
1050
+ ClusterNodeSummaries: ClusterNodeSummary[] | undefined;
1051
+ }
1052
+ export interface ListClustersRequest {
1053
+ CreationTimeAfter?: Date;
1054
+ CreationTimeBefore?: Date;
1055
+ MaxResults?: number;
1056
+ NameContains?: string;
1057
+ NextToken?: string;
1058
+ SortBy?: ClusterSortBy;
1059
+ SortOrder?: SortOrder;
1060
+ }
1061
+ export interface ListClustersResponse {
1062
+ NextToken: string | undefined;
1063
+ ClusterSummaries: ClusterSummary[] | undefined;
1064
+ }
761
1065
  export interface ListCodeRepositoriesInput {
762
1066
  CreationTimeAfter?: Date;
763
1067
  CreationTimeBefore?: Date;
@@ -1118,6 +1422,24 @@ export interface ListImageVersionsResponse {
1118
1422
  ImageVersions?: ImageVersion[];
1119
1423
  NextToken?: string;
1120
1424
  }
1425
+ export interface ListInferenceComponentsInput {
1426
+ SortBy?: InferenceComponentSortKey;
1427
+ SortOrder?: OrderKey;
1428
+ NextToken?: string;
1429
+ MaxResults?: number;
1430
+ NameContains?: string;
1431
+ CreationTimeBefore?: Date;
1432
+ CreationTimeAfter?: Date;
1433
+ LastModifiedTimeBefore?: Date;
1434
+ LastModifiedTimeAfter?: Date;
1435
+ StatusEquals?: InferenceComponentStatus;
1436
+ EndpointNameEquals?: string;
1437
+ VariantNameEquals?: string;
1438
+ }
1439
+ export interface ListInferenceComponentsOutput {
1440
+ InferenceComponents: InferenceComponentSummary[] | undefined;
1441
+ NextToken?: string;
1442
+ }
1121
1443
  export declare const SortInferenceExperimentsBy: {
1122
1444
  readonly CREATION_TIME: "CreationTime";
1123
1445
  readonly NAME: "Name";
@@ -1903,320 +2225,3 @@ export interface ListProjectsOutput {
1903
2225
  ProjectSummaryList: ProjectSummary[] | undefined;
1904
2226
  NextToken?: string;
1905
2227
  }
1906
- export declare const ResourceCatalogSortBy: {
1907
- readonly CREATION_TIME: "CreationTime";
1908
- };
1909
- export type ResourceCatalogSortBy =
1910
- (typeof ResourceCatalogSortBy)[keyof typeof ResourceCatalogSortBy];
1911
- export declare const ResourceCatalogSortOrder: {
1912
- readonly ASCENDING: "Ascending";
1913
- readonly DESCENDING: "Descending";
1914
- };
1915
- export type ResourceCatalogSortOrder =
1916
- (typeof ResourceCatalogSortOrder)[keyof typeof ResourceCatalogSortOrder];
1917
- export interface ListResourceCatalogsRequest {
1918
- NameContains?: string;
1919
- CreationTimeAfter?: Date;
1920
- CreationTimeBefore?: Date;
1921
- SortOrder?: ResourceCatalogSortOrder;
1922
- SortBy?: ResourceCatalogSortBy;
1923
- MaxResults?: number;
1924
- NextToken?: string;
1925
- }
1926
- export interface ResourceCatalog {
1927
- ResourceCatalogArn: string | undefined;
1928
- ResourceCatalogName: string | undefined;
1929
- Description: string | undefined;
1930
- CreationTime: Date | undefined;
1931
- }
1932
- export interface ListResourceCatalogsResponse {
1933
- ResourceCatalogs?: ResourceCatalog[];
1934
- NextToken?: string;
1935
- }
1936
- export declare const SpaceSortKey: {
1937
- readonly CreationTime: "CreationTime";
1938
- readonly LastModifiedTime: "LastModifiedTime";
1939
- };
1940
- export type SpaceSortKey = (typeof SpaceSortKey)[keyof typeof SpaceSortKey];
1941
- export interface ListSpacesRequest {
1942
- NextToken?: string;
1943
- MaxResults?: number;
1944
- SortOrder?: SortOrder;
1945
- SortBy?: SpaceSortKey;
1946
- DomainIdEquals?: string;
1947
- SpaceNameContains?: string;
1948
- }
1949
- export interface SpaceDetails {
1950
- DomainId?: string;
1951
- SpaceName?: string;
1952
- Status?: SpaceStatus;
1953
- CreationTime?: Date;
1954
- LastModifiedTime?: Date;
1955
- }
1956
- export interface ListSpacesResponse {
1957
- Spaces?: SpaceDetails[];
1958
- NextToken?: string;
1959
- }
1960
- export interface ListStageDevicesRequest {
1961
- NextToken?: string;
1962
- MaxResults?: number;
1963
- EdgeDeploymentPlanName: string | undefined;
1964
- ExcludeDevicesDeployedInOtherStage?: boolean;
1965
- StageName: string | undefined;
1966
- }
1967
- export interface ListStageDevicesResponse {
1968
- DeviceDeploymentSummaries: DeviceDeploymentSummary[] | undefined;
1969
- NextToken?: string;
1970
- }
1971
- export declare const StudioLifecycleConfigSortKey: {
1972
- readonly CreationTime: "CreationTime";
1973
- readonly LastModifiedTime: "LastModifiedTime";
1974
- readonly Name: "Name";
1975
- };
1976
- export type StudioLifecycleConfigSortKey =
1977
- (typeof StudioLifecycleConfigSortKey)[keyof typeof StudioLifecycleConfigSortKey];
1978
- export interface ListStudioLifecycleConfigsRequest {
1979
- MaxResults?: number;
1980
- NextToken?: string;
1981
- NameContains?: string;
1982
- AppTypeEquals?: StudioLifecycleConfigAppType;
1983
- CreationTimeBefore?: Date;
1984
- CreationTimeAfter?: Date;
1985
- ModifiedTimeBefore?: Date;
1986
- ModifiedTimeAfter?: Date;
1987
- SortBy?: StudioLifecycleConfigSortKey;
1988
- SortOrder?: SortOrder;
1989
- }
1990
- export interface StudioLifecycleConfigDetails {
1991
- StudioLifecycleConfigArn?: string;
1992
- StudioLifecycleConfigName?: string;
1993
- CreationTime?: Date;
1994
- LastModifiedTime?: Date;
1995
- StudioLifecycleConfigAppType?: StudioLifecycleConfigAppType;
1996
- }
1997
- export interface ListStudioLifecycleConfigsResponse {
1998
- NextToken?: string;
1999
- StudioLifecycleConfigs?: StudioLifecycleConfigDetails[];
2000
- }
2001
- export interface ListSubscribedWorkteamsRequest {
2002
- NameContains?: string;
2003
- NextToken?: string;
2004
- MaxResults?: number;
2005
- }
2006
- export interface ListSubscribedWorkteamsResponse {
2007
- SubscribedWorkteams: SubscribedWorkteam[] | undefined;
2008
- NextToken?: string;
2009
- }
2010
- export interface ListTagsInput {
2011
- ResourceArn: string | undefined;
2012
- NextToken?: string;
2013
- MaxResults?: number;
2014
- }
2015
- export interface ListTagsOutput {
2016
- Tags?: Tag[];
2017
- NextToken?: string;
2018
- }
2019
- export interface ListTrainingJobsRequest {
2020
- NextToken?: string;
2021
- MaxResults?: number;
2022
- CreationTimeAfter?: Date;
2023
- CreationTimeBefore?: Date;
2024
- LastModifiedTimeAfter?: Date;
2025
- LastModifiedTimeBefore?: Date;
2026
- NameContains?: string;
2027
- StatusEquals?: TrainingJobStatus;
2028
- SortBy?: SortBy;
2029
- SortOrder?: SortOrder;
2030
- WarmPoolStatusEquals?: WarmPoolResourceStatus;
2031
- }
2032
- export interface TrainingJobSummary {
2033
- TrainingJobName: string | undefined;
2034
- TrainingJobArn: string | undefined;
2035
- CreationTime: Date | undefined;
2036
- TrainingEndTime?: Date;
2037
- LastModifiedTime?: Date;
2038
- TrainingJobStatus: TrainingJobStatus | undefined;
2039
- WarmPoolStatus?: WarmPoolStatus;
2040
- }
2041
- export interface ListTrainingJobsResponse {
2042
- TrainingJobSummaries: TrainingJobSummary[] | undefined;
2043
- NextToken?: string;
2044
- }
2045
- export declare const TrainingJobSortByOptions: {
2046
- readonly CreationTime: "CreationTime";
2047
- readonly FinalObjectiveMetricValue: "FinalObjectiveMetricValue";
2048
- readonly Name: "Name";
2049
- readonly Status: "Status";
2050
- };
2051
- export type TrainingJobSortByOptions =
2052
- (typeof TrainingJobSortByOptions)[keyof typeof TrainingJobSortByOptions];
2053
- export interface ListTrainingJobsForHyperParameterTuningJobRequest {
2054
- HyperParameterTuningJobName: string | undefined;
2055
- NextToken?: string;
2056
- MaxResults?: number;
2057
- StatusEquals?: TrainingJobStatus;
2058
- SortBy?: TrainingJobSortByOptions;
2059
- SortOrder?: SortOrder;
2060
- }
2061
- export interface ListTrainingJobsForHyperParameterTuningJobResponse {
2062
- TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
2063
- NextToken?: string;
2064
- }
2065
- export interface ListTransformJobsRequest {
2066
- CreationTimeAfter?: Date;
2067
- CreationTimeBefore?: Date;
2068
- LastModifiedTimeAfter?: Date;
2069
- LastModifiedTimeBefore?: Date;
2070
- NameContains?: string;
2071
- StatusEquals?: TransformJobStatus;
2072
- SortBy?: SortBy;
2073
- SortOrder?: SortOrder;
2074
- NextToken?: string;
2075
- MaxResults?: number;
2076
- }
2077
- export interface TransformJobSummary {
2078
- TransformJobName: string | undefined;
2079
- TransformJobArn: string | undefined;
2080
- CreationTime: Date | undefined;
2081
- TransformEndTime?: Date;
2082
- LastModifiedTime?: Date;
2083
- TransformJobStatus: TransformJobStatus | undefined;
2084
- FailureReason?: string;
2085
- }
2086
- export interface ListTransformJobsResponse {
2087
- TransformJobSummaries: TransformJobSummary[] | undefined;
2088
- NextToken?: string;
2089
- }
2090
- export declare const SortTrialComponentsBy: {
2091
- readonly CREATION_TIME: "CreationTime";
2092
- readonly NAME: "Name";
2093
- };
2094
- export type SortTrialComponentsBy =
2095
- (typeof SortTrialComponentsBy)[keyof typeof SortTrialComponentsBy];
2096
- export interface ListTrialComponentsRequest {
2097
- ExperimentName?: string;
2098
- TrialName?: string;
2099
- SourceArn?: string;
2100
- CreatedAfter?: Date;
2101
- CreatedBefore?: Date;
2102
- SortBy?: SortTrialComponentsBy;
2103
- SortOrder?: SortOrder;
2104
- MaxResults?: number;
2105
- NextToken?: string;
2106
- }
2107
- export interface TrialComponentSummary {
2108
- TrialComponentName?: string;
2109
- TrialComponentArn?: string;
2110
- DisplayName?: string;
2111
- TrialComponentSource?: TrialComponentSource;
2112
- Status?: TrialComponentStatus;
2113
- StartTime?: Date;
2114
- EndTime?: Date;
2115
- CreationTime?: Date;
2116
- CreatedBy?: UserContext;
2117
- LastModifiedTime?: Date;
2118
- LastModifiedBy?: UserContext;
2119
- }
2120
- export interface ListTrialComponentsResponse {
2121
- TrialComponentSummaries?: TrialComponentSummary[];
2122
- NextToken?: string;
2123
- }
2124
- export declare const SortTrialsBy: {
2125
- readonly CREATION_TIME: "CreationTime";
2126
- readonly NAME: "Name";
2127
- };
2128
- export type SortTrialsBy = (typeof SortTrialsBy)[keyof typeof SortTrialsBy];
2129
- export interface ListTrialsRequest {
2130
- ExperimentName?: string;
2131
- TrialComponentName?: string;
2132
- CreatedAfter?: Date;
2133
- CreatedBefore?: Date;
2134
- SortBy?: SortTrialsBy;
2135
- SortOrder?: SortOrder;
2136
- MaxResults?: number;
2137
- NextToken?: string;
2138
- }
2139
- export interface TrialSummary {
2140
- TrialArn?: string;
2141
- TrialName?: string;
2142
- DisplayName?: string;
2143
- TrialSource?: TrialSource;
2144
- CreationTime?: Date;
2145
- LastModifiedTime?: Date;
2146
- }
2147
- export interface ListTrialsResponse {
2148
- TrialSummaries?: TrialSummary[];
2149
- NextToken?: string;
2150
- }
2151
- export declare const UserProfileSortKey: {
2152
- readonly CreationTime: "CreationTime";
2153
- readonly LastModifiedTime: "LastModifiedTime";
2154
- };
2155
- export type UserProfileSortKey =
2156
- (typeof UserProfileSortKey)[keyof typeof UserProfileSortKey];
2157
- export interface ListUserProfilesRequest {
2158
- NextToken?: string;
2159
- MaxResults?: number;
2160
- SortOrder?: SortOrder;
2161
- SortBy?: UserProfileSortKey;
2162
- DomainIdEquals?: string;
2163
- UserProfileNameContains?: string;
2164
- }
2165
- export interface UserProfileDetails {
2166
- DomainId?: string;
2167
- UserProfileName?: string;
2168
- Status?: UserProfileStatus;
2169
- CreationTime?: Date;
2170
- LastModifiedTime?: Date;
2171
- }
2172
- export interface ListUserProfilesResponse {
2173
- UserProfiles?: UserProfileDetails[];
2174
- NextToken?: string;
2175
- }
2176
- export declare const ListWorkforcesSortByOptions: {
2177
- readonly CreateDate: "CreateDate";
2178
- readonly Name: "Name";
2179
- };
2180
- export type ListWorkforcesSortByOptions =
2181
- (typeof ListWorkforcesSortByOptions)[keyof typeof ListWorkforcesSortByOptions];
2182
- export interface ListWorkforcesRequest {
2183
- SortBy?: ListWorkforcesSortByOptions;
2184
- SortOrder?: SortOrder;
2185
- NameContains?: string;
2186
- NextToken?: string;
2187
- MaxResults?: number;
2188
- }
2189
- export interface ListWorkforcesResponse {
2190
- Workforces: Workforce[] | undefined;
2191
- NextToken?: string;
2192
- }
2193
- export declare const ListWorkteamsSortByOptions: {
2194
- readonly CreateDate: "CreateDate";
2195
- readonly Name: "Name";
2196
- };
2197
- export type ListWorkteamsSortByOptions =
2198
- (typeof ListWorkteamsSortByOptions)[keyof typeof ListWorkteamsSortByOptions];
2199
- export interface ListWorkteamsRequest {
2200
- SortBy?: ListWorkteamsSortByOptions;
2201
- SortOrder?: SortOrder;
2202
- NameContains?: string;
2203
- NextToken?: string;
2204
- MaxResults?: number;
2205
- }
2206
- export interface ListWorkteamsResponse {
2207
- Workteams: Workteam[] | undefined;
2208
- NextToken?: string;
2209
- }
2210
- export interface Model {
2211
- ModelName?: string;
2212
- PrimaryContainer?: ContainerDefinition;
2213
- Containers?: ContainerDefinition[];
2214
- InferenceExecutionConfig?: InferenceExecutionConfig;
2215
- ExecutionRoleArn?: string;
2216
- VpcConfig?: VpcConfig;
2217
- CreationTime?: Date;
2218
- ModelArn?: string;
2219
- EnableNetworkIsolation?: boolean;
2220
- Tags?: Tag[];
2221
- DeploymentRecommendation?: DeploymentRecommendation;
2222
- }