aws-sdk 2.1119.0 → 2.1122.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.
- package/CHANGELOG.md +20 -1
- package/README.md +1 -1
- package/apis/cloudfront-2020-05-31.min.json +42 -28
- package/apis/connect-2017-08-08.min.json +133 -9
- package/apis/connect-2017-08-08.paginators.json +9 -0
- package/apis/ec2-2016-11-15.min.json +14 -11
- package/apis/ec2-2016-11-15.waiters2.json +18 -0
- package/apis/ivschat-2020-07-14.examples.json +5 -0
- package/apis/ivschat-2020-07-14.min.json +443 -0
- package/apis/ivschat-2020-07-14.paginators.json +9 -0
- package/apis/lightsail-2016-11-28.min.json +55 -17
- package/apis/metadata.json +3 -0
- package/apis/mq-2017-11-27.min.json +22 -7
- package/apis/network-firewall-2020-11-12.min.json +107 -52
- package/apis/rds-data-2018-08-01.min.json +4 -1
- package/apis/sagemaker-2017-07-24.min.json +447 -434
- package/apis/securityhub-2018-10-26.min.json +20 -18
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/cloudfront.d.ts +15 -0
- package/clients/connect.d.ts +176 -9
- package/clients/ec2.d.ts +23 -14
- package/clients/eventbridge.js +1 -0
- package/clients/gamelift.d.ts +67 -67
- package/clients/glue.d.ts +79 -10
- package/clients/ivschat.d.ts +523 -0
- package/clients/ivschat.js +18 -0
- package/clients/lightsail.d.ts +113 -42
- package/clients/mq.d.ts +16 -1
- package/clients/networkfirewall.d.ts +103 -21
- package/clients/pricing.d.ts +3 -3
- package/clients/rdsdataservice.d.ts +22 -7
- package/clients/sagemaker.d.ts +24 -0
- package/clients/securityhub.d.ts +13 -4
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +822 -754
- package/dist/aws-sdk.js +228 -52
- package/dist/aws-sdk.min.js +83 -83
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/lib/services/eventbridge.js +19 -0
- package/lib/services/s3util.js +6 -1
- package/package.json +1 -1
package/clients/glue.d.ts
CHANGED
|
@@ -68,11 +68,11 @@ declare class Glue extends Service {
|
|
|
68
68
|
*/
|
|
69
69
|
batchGetCrawlers(callback?: (err: AWSError, data: Glue.Types.BatchGetCrawlersResponse) => void): Request<Glue.Types.BatchGetCrawlersResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
* Retrieves the details for the custom patterns specified by a list of names.
|
|
72
72
|
*/
|
|
73
73
|
batchGetCustomEntityTypes(params: Glue.Types.BatchGetCustomEntityTypesRequest, callback?: (err: AWSError, data: Glue.Types.BatchGetCustomEntityTypesResponse) => void): Request<Glue.Types.BatchGetCustomEntityTypesResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* Retrieves the details for the custom patterns specified by a list of names.
|
|
76
76
|
*/
|
|
77
77
|
batchGetCustomEntityTypes(callback?: (err: AWSError, data: Glue.Types.BatchGetCustomEntityTypesResponse) => void): Request<Glue.Types.BatchGetCustomEntityTypesResponse, AWSError>;
|
|
78
78
|
/**
|
|
@@ -188,11 +188,11 @@ declare class Glue extends Service {
|
|
|
188
188
|
*/
|
|
189
189
|
createCrawler(callback?: (err: AWSError, data: Glue.Types.CreateCrawlerResponse) => void): Request<Glue.Types.CreateCrawlerResponse, AWSError>;
|
|
190
190
|
/**
|
|
191
|
-
*
|
|
191
|
+
* Creates a custom pattern that is used to detect sensitive data across the columns and rows of your structured data. Each custom pattern you create specifies a regular expression and an optional list of context words. If no context words are passed only a regular expression is checked.
|
|
192
192
|
*/
|
|
193
193
|
createCustomEntityType(params: Glue.Types.CreateCustomEntityTypeRequest, callback?: (err: AWSError, data: Glue.Types.CreateCustomEntityTypeResponse) => void): Request<Glue.Types.CreateCustomEntityTypeResponse, AWSError>;
|
|
194
194
|
/**
|
|
195
|
-
*
|
|
195
|
+
* Creates a custom pattern that is used to detect sensitive data across the columns and rows of your structured data. Each custom pattern you create specifies a regular expression and an optional list of context words. If no context words are passed only a regular expression is checked.
|
|
196
196
|
*/
|
|
197
197
|
createCustomEntityType(callback?: (err: AWSError, data: Glue.Types.CreateCustomEntityTypeResponse) => void): Request<Glue.Types.CreateCustomEntityTypeResponse, AWSError>;
|
|
198
198
|
/**
|
|
@@ -364,11 +364,11 @@ declare class Glue extends Service {
|
|
|
364
364
|
*/
|
|
365
365
|
deleteCrawler(callback?: (err: AWSError, data: Glue.Types.DeleteCrawlerResponse) => void): Request<Glue.Types.DeleteCrawlerResponse, AWSError>;
|
|
366
366
|
/**
|
|
367
|
-
*
|
|
367
|
+
* Deletes a custom pattern by specifying its name.
|
|
368
368
|
*/
|
|
369
369
|
deleteCustomEntityType(params: Glue.Types.DeleteCustomEntityTypeRequest, callback?: (err: AWSError, data: Glue.Types.DeleteCustomEntityTypeResponse) => void): Request<Glue.Types.DeleteCustomEntityTypeResponse, AWSError>;
|
|
370
370
|
/**
|
|
371
|
-
*
|
|
371
|
+
* Deletes a custom pattern by specifying its name.
|
|
372
372
|
*/
|
|
373
373
|
deleteCustomEntityType(callback?: (err: AWSError, data: Glue.Types.DeleteCustomEntityTypeResponse) => void): Request<Glue.Types.DeleteCustomEntityTypeResponse, AWSError>;
|
|
374
374
|
/**
|
|
@@ -612,11 +612,11 @@ declare class Glue extends Service {
|
|
|
612
612
|
*/
|
|
613
613
|
getCrawlers(callback?: (err: AWSError, data: Glue.Types.GetCrawlersResponse) => void): Request<Glue.Types.GetCrawlersResponse, AWSError>;
|
|
614
614
|
/**
|
|
615
|
-
*
|
|
615
|
+
* Retrieves the details of a custom pattern by specifying its name.
|
|
616
616
|
*/
|
|
617
617
|
getCustomEntityType(params: Glue.Types.GetCustomEntityTypeRequest, callback?: (err: AWSError, data: Glue.Types.GetCustomEntityTypeResponse) => void): Request<Glue.Types.GetCustomEntityTypeResponse, AWSError>;
|
|
618
618
|
/**
|
|
619
|
-
*
|
|
619
|
+
* Retrieves the details of a custom pattern by specifying its name.
|
|
620
620
|
*/
|
|
621
621
|
getCustomEntityType(callback?: (err: AWSError, data: Glue.Types.GetCustomEntityTypeResponse) => void): Request<Glue.Types.GetCustomEntityTypeResponse, AWSError>;
|
|
622
622
|
/**
|
|
@@ -1020,11 +1020,11 @@ declare class Glue extends Service {
|
|
|
1020
1020
|
*/
|
|
1021
1021
|
listCrawlers(callback?: (err: AWSError, data: Glue.Types.ListCrawlersResponse) => void): Request<Glue.Types.ListCrawlersResponse, AWSError>;
|
|
1022
1022
|
/**
|
|
1023
|
-
*
|
|
1023
|
+
* Lists all the custom patterns that have been created.
|
|
1024
1024
|
*/
|
|
1025
1025
|
listCustomEntityTypes(params: Glue.Types.ListCustomEntityTypesRequest, callback?: (err: AWSError, data: Glue.Types.ListCustomEntityTypesResponse) => void): Request<Glue.Types.ListCustomEntityTypesResponse, AWSError>;
|
|
1026
1026
|
/**
|
|
1027
|
-
*
|
|
1027
|
+
* Lists all the custom patterns that have been created.
|
|
1028
1028
|
*/
|
|
1029
1029
|
listCustomEntityTypes(callback?: (err: AWSError, data: Glue.Types.ListCustomEntityTypesResponse) => void): Request<Glue.Types.ListCustomEntityTypesResponse, AWSError>;
|
|
1030
1030
|
/**
|
|
@@ -1697,10 +1697,19 @@ declare namespace Glue {
|
|
|
1697
1697
|
CrawlersNotFound?: CrawlerNameList;
|
|
1698
1698
|
}
|
|
1699
1699
|
export interface BatchGetCustomEntityTypesRequest {
|
|
1700
|
+
/**
|
|
1701
|
+
* A list of names of the custom patterns that you want to retrieve.
|
|
1702
|
+
*/
|
|
1700
1703
|
Names: CustomEntityTypeNames;
|
|
1701
1704
|
}
|
|
1702
1705
|
export interface BatchGetCustomEntityTypesResponse {
|
|
1706
|
+
/**
|
|
1707
|
+
* A list of CustomEntityType objects representing the custom patterns that have been created.
|
|
1708
|
+
*/
|
|
1703
1709
|
CustomEntityTypes?: CustomEntityTypes;
|
|
1710
|
+
/**
|
|
1711
|
+
* A list of the names of custom patterns that were not found.
|
|
1712
|
+
*/
|
|
1704
1713
|
CustomEntityTypesNotFound?: CustomEntityTypeNames;
|
|
1705
1714
|
}
|
|
1706
1715
|
export interface BatchGetDevEndpointsRequest {
|
|
@@ -2566,6 +2575,9 @@ declare namespace Glue {
|
|
|
2566
2575
|
* The name of the SecurityConfiguration structure to be used by this crawler.
|
|
2567
2576
|
*/
|
|
2568
2577
|
CrawlerSecurityConfiguration?: CrawlerSecurityConfiguration;
|
|
2578
|
+
/**
|
|
2579
|
+
* Specifies whether the crawler should use AWS Lake Formation credentials for the crawler instead of the IAM role credentials.
|
|
2580
|
+
*/
|
|
2569
2581
|
LakeFormationConfiguration?: LakeFormationConfiguration;
|
|
2570
2582
|
}
|
|
2571
2583
|
export type CrawlerConfiguration = string;
|
|
@@ -2793,11 +2805,23 @@ declare namespace Glue {
|
|
|
2793
2805
|
AllowSingleColumn?: NullableBoolean;
|
|
2794
2806
|
}
|
|
2795
2807
|
export interface CreateCustomEntityTypeRequest {
|
|
2808
|
+
/**
|
|
2809
|
+
* A name for the custom pattern that allows it to be retrieved or deleted later. This name must be unique per Amazon Web Services account.
|
|
2810
|
+
*/
|
|
2796
2811
|
Name: NameString;
|
|
2812
|
+
/**
|
|
2813
|
+
* A regular expression string that is used for detecting sensitive data in a custom pattern.
|
|
2814
|
+
*/
|
|
2797
2815
|
RegexString: NameString;
|
|
2816
|
+
/**
|
|
2817
|
+
* A list of context words. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data. If no context words are passed only a regular expression is checked.
|
|
2818
|
+
*/
|
|
2798
2819
|
ContextWords?: ContextWords;
|
|
2799
2820
|
}
|
|
2800
2821
|
export interface CreateCustomEntityTypeResponse {
|
|
2822
|
+
/**
|
|
2823
|
+
* The name of the custom pattern you created.
|
|
2824
|
+
*/
|
|
2801
2825
|
Name?: NameString;
|
|
2802
2826
|
}
|
|
2803
2827
|
export interface CreateDatabaseRequest {
|
|
@@ -3575,8 +3599,17 @@ declare namespace Glue {
|
|
|
3575
3599
|
export type CsvHeaderOption = "UNKNOWN"|"PRESENT"|"ABSENT"|string;
|
|
3576
3600
|
export type CsvQuoteSymbol = string;
|
|
3577
3601
|
export interface CustomEntityType {
|
|
3602
|
+
/**
|
|
3603
|
+
* A name for the custom pattern that allows it to be retrieved or deleted later. This name must be unique per Amazon Web Services account.
|
|
3604
|
+
*/
|
|
3578
3605
|
Name: NameString;
|
|
3606
|
+
/**
|
|
3607
|
+
* A regular expression string that is used for detecting sensitive data in a custom pattern.
|
|
3608
|
+
*/
|
|
3579
3609
|
RegexString: NameString;
|
|
3610
|
+
/**
|
|
3611
|
+
* A list of context words. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data. If no context words are passed only a regular expression is checked.
|
|
3612
|
+
*/
|
|
3580
3613
|
ContextWords?: ContextWords;
|
|
3581
3614
|
}
|
|
3582
3615
|
export type CustomEntityTypeNames = NameString[];
|
|
@@ -3807,9 +3840,15 @@ declare namespace Glue {
|
|
|
3807
3840
|
export interface DeleteCrawlerResponse {
|
|
3808
3841
|
}
|
|
3809
3842
|
export interface DeleteCustomEntityTypeRequest {
|
|
3843
|
+
/**
|
|
3844
|
+
* The name of the custom pattern that you want to delete.
|
|
3845
|
+
*/
|
|
3810
3846
|
Name: NameString;
|
|
3811
3847
|
}
|
|
3812
3848
|
export interface DeleteCustomEntityTypeResponse {
|
|
3849
|
+
/**
|
|
3850
|
+
* The name of the custom pattern you deleted.
|
|
3851
|
+
*/
|
|
3813
3852
|
Name?: NameString;
|
|
3814
3853
|
}
|
|
3815
3854
|
export interface DeleteDatabaseRequest {
|
|
@@ -4679,11 +4718,23 @@ declare namespace Glue {
|
|
|
4679
4718
|
NextToken?: Token;
|
|
4680
4719
|
}
|
|
4681
4720
|
export interface GetCustomEntityTypeRequest {
|
|
4721
|
+
/**
|
|
4722
|
+
* The name of the custom pattern that you want to retrieve.
|
|
4723
|
+
*/
|
|
4682
4724
|
Name: NameString;
|
|
4683
4725
|
}
|
|
4684
4726
|
export interface GetCustomEntityTypeResponse {
|
|
4727
|
+
/**
|
|
4728
|
+
* The name of the custom pattern that you retrieved.
|
|
4729
|
+
*/
|
|
4685
4730
|
Name?: NameString;
|
|
4731
|
+
/**
|
|
4732
|
+
* A regular expression string that is used for detecting sensitive data in a custom pattern.
|
|
4733
|
+
*/
|
|
4686
4734
|
RegexString?: NameString;
|
|
4735
|
+
/**
|
|
4736
|
+
* A list of context words if specified when you created the custom pattern. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data.
|
|
4737
|
+
*/
|
|
4687
4738
|
ContextWords?: ContextWords;
|
|
4688
4739
|
}
|
|
4689
4740
|
export interface GetDataCatalogEncryptionSettingsRequest {
|
|
@@ -6356,7 +6407,13 @@ declare namespace Glue {
|
|
|
6356
6407
|
OutputS3Path?: UriString;
|
|
6357
6408
|
}
|
|
6358
6409
|
export interface LakeFormationConfiguration {
|
|
6410
|
+
/**
|
|
6411
|
+
* Specifies whether to use AWS Lake Formation credentials for the crawler instead of the IAM role credentials.
|
|
6412
|
+
*/
|
|
6359
6413
|
UseLakeFormationCredentials?: NullableBoolean;
|
|
6414
|
+
/**
|
|
6415
|
+
* Required for cross account crawls. For same account crawls as the target data, this can be left as null.
|
|
6416
|
+
*/
|
|
6360
6417
|
AccountId?: AccountId;
|
|
6361
6418
|
}
|
|
6362
6419
|
export type Language = "PYTHON"|"SCALA"|string;
|
|
@@ -6465,11 +6522,23 @@ declare namespace Glue {
|
|
|
6465
6522
|
NextToken?: Token;
|
|
6466
6523
|
}
|
|
6467
6524
|
export interface ListCustomEntityTypesRequest {
|
|
6525
|
+
/**
|
|
6526
|
+
* A paginated token to offset the results.
|
|
6527
|
+
*/
|
|
6468
6528
|
NextToken?: PaginationToken;
|
|
6529
|
+
/**
|
|
6530
|
+
* The maximum number of results to return.
|
|
6531
|
+
*/
|
|
6469
6532
|
MaxResults?: PageSize;
|
|
6470
6533
|
}
|
|
6471
6534
|
export interface ListCustomEntityTypesResponse {
|
|
6535
|
+
/**
|
|
6536
|
+
* A list of CustomEntityType objects representing custom patterns.
|
|
6537
|
+
*/
|
|
6472
6538
|
CustomEntityTypes?: CustomEntityTypes;
|
|
6539
|
+
/**
|
|
6540
|
+
* A pagination token, if more results are available.
|
|
6541
|
+
*/
|
|
6473
6542
|
NextToken?: PaginationToken;
|
|
6474
6543
|
}
|
|
6475
6544
|
export interface ListDevEndpointsRequest {
|