@aws-sdk/client-sagemaker 3.778.0 → 3.780.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.
@@ -59,6 +59,12 @@ declare const CreateNotebookInstanceLifecycleConfigCommand_base: {
59
59
  * Content: "STRING_VALUE",
60
60
  * },
61
61
  * ],
62
+ * Tags: [ // TagList
63
+ * { // Tag
64
+ * Key: "STRING_VALUE", // required
65
+ * Value: "STRING_VALUE", // required
66
+ * },
67
+ * ],
62
68
  * };
63
69
  * const command = new CreateNotebookInstanceLifecycleConfigCommand(input);
64
70
  * const response = await client.send(command);
@@ -248,6 +248,13 @@ export interface CreateNotebookInstanceLifecycleConfigInput {
248
248
  * @public
249
249
  */
250
250
  OnStart?: NotebookInstanceLifecycleHook[] | undefined;
251
+ /**
252
+ * <p>An array of key-value pairs. You can use tags to categorize your Amazon Web Services
253
+ * resources in different ways, for example, by purpose, owner, or environment. For more
254
+ * information, see <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html">Tagging Amazon Web Services Resources</a>.</p>
255
+ * @public
256
+ */
257
+ Tags?: Tag[] | undefined;
251
258
  }
252
259
  /**
253
260
  * @public
@@ -178,6 +178,7 @@ export interface CreateNotebookInstanceLifecycleConfigInput {
178
178
  NotebookInstanceLifecycleConfigName: string | undefined;
179
179
  OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
180
180
  OnStart?: NotebookInstanceLifecycleHook[] | undefined;
181
+ Tags?: Tag[] | undefined;
181
182
  }
182
183
  export interface CreateNotebookInstanceLifecycleConfigOutput {
183
184
  NotebookInstanceLifecycleConfigArn?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
4
- "version": "3.778.0",
4
+ "version": "3.780.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sagemaker",