@aws-sdk/client-bcm-data-exports 3.1043.0 → 3.1045.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/dist-cjs/index.js +2 -0
- package/dist-es/models/enums.js +2 -0
- package/dist-types/commands/CreateExportCommand.d.ts +1 -1
- package/dist-types/commands/GetExecutionCommand.d.ts +1 -1
- package/dist-types/commands/GetExportCommand.d.ts +1 -1
- package/dist-types/commands/UpdateExportCommand.d.ts +1 -1
- package/dist-types/models/enums.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
package/dist-es/models/enums.js
CHANGED
|
@@ -56,7 +56,7 @@ declare const CreateExportCommand_base: {
|
|
|
56
56
|
* S3Prefix: "STRING_VALUE", // required
|
|
57
57
|
* S3Region: "STRING_VALUE", // required
|
|
58
58
|
* S3OutputConfigurations: { // S3OutputConfigurations
|
|
59
|
-
* OutputType: "CUSTOM", // required
|
|
59
|
+
* OutputType: "CUSTOM" || "ATHENA" || "REDSHIFT", // required
|
|
60
60
|
* Format: "TEXT_OR_CSV" || "PARQUET", // required
|
|
61
61
|
* Compression: "GZIP" || "PARQUET", // required
|
|
62
62
|
* Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
|
|
@@ -63,7 +63,7 @@ declare const GetExecutionCommand_base: {
|
|
|
63
63
|
* // S3Prefix: "STRING_VALUE", // required
|
|
64
64
|
* // S3Region: "STRING_VALUE", // required
|
|
65
65
|
* // S3OutputConfigurations: { // S3OutputConfigurations
|
|
66
|
-
* // OutputType: "CUSTOM", // required
|
|
66
|
+
* // OutputType: "CUSTOM" || "ATHENA" || "REDSHIFT", // required
|
|
67
67
|
* // Format: "TEXT_OR_CSV" || "PARQUET", // required
|
|
68
68
|
* // Compression: "GZIP" || "PARQUET", // required
|
|
69
69
|
* // Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
|
|
@@ -61,7 +61,7 @@ declare const GetExportCommand_base: {
|
|
|
61
61
|
* // S3Prefix: "STRING_VALUE", // required
|
|
62
62
|
* // S3Region: "STRING_VALUE", // required
|
|
63
63
|
* // S3OutputConfigurations: { // S3OutputConfigurations
|
|
64
|
-
* // OutputType: "CUSTOM", // required
|
|
64
|
+
* // OutputType: "CUSTOM" || "ATHENA" || "REDSHIFT", // required
|
|
65
65
|
* // Format: "TEXT_OR_CSV" || "PARQUET", // required
|
|
66
66
|
* // Compression: "GZIP" || "PARQUET", // required
|
|
67
67
|
* // Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
|
|
@@ -57,7 +57,7 @@ declare const UpdateExportCommand_base: {
|
|
|
57
57
|
* S3Prefix: "STRING_VALUE", // required
|
|
58
58
|
* S3Region: "STRING_VALUE", // required
|
|
59
59
|
* S3OutputConfigurations: { // S3OutputConfigurations
|
|
60
|
-
* OutputType: "CUSTOM", // required
|
|
60
|
+
* OutputType: "CUSTOM" || "ATHENA" || "REDSHIFT", // required
|
|
61
61
|
* Format: "TEXT_OR_CSV" || "PARQUET", // required
|
|
62
62
|
* Compression: "GZIP" || "PARQUET", // required
|
|
63
63
|
* Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
|
|
@@ -10,7 +10,9 @@ export declare const FormatOption: {
|
|
|
10
10
|
};
|
|
11
11
|
export type FormatOption = (typeof FormatOption)[keyof typeof FormatOption];
|
|
12
12
|
export declare const S3OutputType: {
|
|
13
|
+
readonly ATHENA: "ATHENA";
|
|
13
14
|
readonly CUSTOM: "CUSTOM";
|
|
15
|
+
readonly REDSHIFT: "REDSHIFT";
|
|
14
16
|
};
|
|
15
17
|
export type S3OutputType = (typeof S3OutputType)[keyof typeof S3OutputType];
|
|
16
18
|
export declare const OverwriteOption: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bcm-data-exports",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bcm Data Exports Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1045.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bcm-data-exports",
|