@aws-sdk/client-glue 3.332.0 → 3.334.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.
@@ -33,6 +33,9 @@ export interface CreateCustomEntityTypeCommandOutput extends CreateCustomEntityT
33
33
  * ContextWords: [ // ContextWords
34
34
  * "STRING_VALUE",
35
35
  * ],
36
+ * Tags: { // TagsMap
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
36
39
  * };
37
40
  * const command = new CreateCustomEntityTypeCommand(input);
38
41
  * const response = await client.send(command);
@@ -29,6 +29,9 @@ export interface ListCustomEntityTypesCommandOutput extends ListCustomEntityType
29
29
  * const input = { // ListCustomEntityTypesRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * MaxResults: Number("int"),
32
+ * Tags: { // TagsMap
33
+ * "<keys>": "STRING_VALUE",
34
+ * },
32
35
  * };
33
36
  * const command = new ListCustomEntityTypesCommand(input);
34
37
  * const response = await client.send(command);
@@ -6249,6 +6249,10 @@ export interface CreateCustomEntityTypeRequest {
6249
6249
  * <p>If no context words are passed only a regular expression is checked.</p>
6250
6250
  */
6251
6251
  ContextWords?: string[];
6252
+ /**
6253
+ * <p>A list of tags applied to the custom entity type.</p>
6254
+ */
6255
+ Tags?: Record<string, string>;
6252
6256
  }
6253
6257
  /**
6254
6258
  * @public
@@ -394,6 +394,10 @@ export interface ListCustomEntityTypesRequest {
394
394
  * <p>The maximum number of results to return.</p>
395
395
  */
396
396
  MaxResults?: number;
397
+ /**
398
+ * <p>A list of key-value pair tags.</p>
399
+ */
400
+ Tags?: Record<string, string>;
397
401
  }
398
402
  /**
399
403
  * @public
@@ -1897,6 +1897,7 @@ export interface CreateCustomEntityTypeRequest {
1897
1897
  Name: string | undefined;
1898
1898
  RegexString: string | undefined;
1899
1899
  ContextWords?: string[];
1900
+ Tags?: Record<string, string>;
1900
1901
  }
1901
1902
  export interface CreateCustomEntityTypeResponse {
1902
1903
  Name?: string;
@@ -232,6 +232,7 @@ export interface ListCrawlsResponse {
232
232
  export interface ListCustomEntityTypesRequest {
233
233
  NextToken?: string;
234
234
  MaxResults?: number;
235
+ Tags?: Record<string, string>;
235
236
  }
236
237
  export interface ListCustomEntityTypesResponse {
237
238
  CustomEntityTypes?: CustomEntityType[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-glue",
3
3
  "description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
4
- "version": "3.332.0",
4
+ "version": "3.334.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",