aws-sdk 2.1008.0 → 2.1012.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 +21 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +43 -37
- package/apis/chime-sdk-messaging-2021-05-15.min.json +601 -88
- package/apis/chime-sdk-messaging-2021-05-15.paginators.json +10 -0
- package/apis/dataexchange-2017-07-25.min.json +65 -13
- package/apis/directconnect-2012-10-25.min.json +119 -35
- package/apis/glue-2017-03-31.min.json +341 -339
- package/apis/ivs-2020-07-14.min.json +127 -100
- package/apis/ivs-2020-07-14.paginators.json +4 -14
- package/apis/mediaconvert-2017-08-29.min.json +137 -134
- package/apis/mediapackage-2017-10-12.min.json +4 -0
- package/apis/mediapackage-vod-2018-11-07.min.json +4 -0
- package/apis/metadata.json +3 -0
- package/apis/panorama-2019-07-24.examples.json +5 -0
- package/apis/panorama-2019-07-24.min.json +1622 -0
- package/apis/panorama-2019-07-24.paginators.json +49 -0
- package/apis/quicksight-2018-04-01.min.json +237 -159
- package/apis/securityhub-2018-10-26.min.json +282 -137
- package/apis/securityhub-2018-10-26.paginators.json +6 -0
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/appflow.d.ts +8 -0
- package/clients/chimesdkmessaging.d.ts +475 -2
- package/clients/dataexchange.d.ts +110 -20
- package/clients/directconnect.d.ts +186 -49
- package/clients/efs.d.ts +10 -10
- package/clients/glue.d.ts +11 -2
- package/clients/ivs.d.ts +158 -133
- package/clients/mediaconvert.d.ts +57 -58
- package/clients/mediapackage.d.ts +4 -0
- package/clients/mediapackagevod.d.ts +4 -0
- package/clients/panorama.d.ts +1926 -0
- package/clients/panorama.js +18 -0
- package/clients/quicksight.d.ts +158 -75
- package/clients/securityhub.d.ts +161 -2
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +55 -18
- package/dist/aws-sdk.js +125 -38
- package/dist/aws-sdk.min.js +68 -68
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -48,6 +48,12 @@
|
|
|
48
48
|
"limit_key": "MaxResults",
|
|
49
49
|
"result_key": "ProductSubscriptions"
|
|
50
50
|
},
|
|
51
|
+
"ListFindingAggregators": {
|
|
52
|
+
"input_token": "NextToken",
|
|
53
|
+
"output_token": "NextToken",
|
|
54
|
+
"limit_key": "MaxResults",
|
|
55
|
+
"result_key": "FindingAggregators"
|
|
56
|
+
},
|
|
51
57
|
"ListInvitations": {
|
|
52
58
|
"input_token": "NextToken",
|
|
53
59
|
"output_token": "NextToken",
|
package/clients/all.d.ts
CHANGED
package/clients/all.js
CHANGED
package/clients/appflow.d.ts
CHANGED
|
@@ -1561,6 +1561,13 @@ declare namespace Appflow {
|
|
|
1561
1561
|
bucketPrefix?: BucketPrefix;
|
|
1562
1562
|
s3OutputFormatConfig?: S3OutputFormatConfig;
|
|
1563
1563
|
}
|
|
1564
|
+
export type S3InputFileType = "CSV"|"JSON"|string;
|
|
1565
|
+
export interface S3InputFormatConfig {
|
|
1566
|
+
/**
|
|
1567
|
+
* The file type that Amazon AppFlow gets from your Amazon S3 bucket.
|
|
1568
|
+
*/
|
|
1569
|
+
s3InputFileType?: S3InputFileType;
|
|
1570
|
+
}
|
|
1564
1571
|
export interface S3Metadata {
|
|
1565
1572
|
}
|
|
1566
1573
|
export interface S3OutputFormatConfig {
|
|
@@ -1583,6 +1590,7 @@ declare namespace Appflow {
|
|
|
1583
1590
|
* The object key for the Amazon S3 bucket in which the source files are stored.
|
|
1584
1591
|
*/
|
|
1585
1592
|
bucketPrefix?: BucketPrefix;
|
|
1593
|
+
s3InputFormatConfig?: S3InputFormatConfig;
|
|
1586
1594
|
}
|
|
1587
1595
|
export type SAPODataConnectorOperator = "PROJECTION"|"LESS_THAN"|"CONTAINS"|"GREATER_THAN"|"BETWEEN"|"LESS_THAN_OR_EQUAL_TO"|"GREATER_THAN_OR_EQUAL_TO"|"EQUAL_TO"|"NOT_EQUAL_TO"|"ADDITION"|"MULTIPLICATION"|"DIVISION"|"SUBTRACTION"|"MASK_ALL"|"MASK_FIRST_N"|"MASK_LAST_N"|"VALIDATE_NON_NULL"|"VALIDATE_NON_ZERO"|"VALIDATE_NON_NEGATIVE"|"VALIDATE_NUMERIC"|"NO_OP"|string;
|
|
1588
1596
|
export interface SAPODataConnectorProfileCredentials {
|