@aws-sdk/client-bcm-data-exports 3.1044.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 CHANGED
@@ -293,7 +293,9 @@ const FormatOption = {
293
293
  TEXT_OR_CSV: "TEXT_OR_CSV",
294
294
  };
295
295
  const S3OutputType = {
296
+ ATHENA: "ATHENA",
296
297
  CUSTOM: "CUSTOM",
298
+ REDSHIFT: "REDSHIFT",
297
299
  };
298
300
  const OverwriteOption = {
299
301
  CREATE_NEW_REPORT: "CREATE_NEW_REPORT",
@@ -7,7 +7,9 @@ export const FormatOption = {
7
7
  TEXT_OR_CSV: "TEXT_OR_CSV",
8
8
  };
9
9
  export const S3OutputType = {
10
+ ATHENA: "ATHENA",
10
11
  CUSTOM: "CUSTOM",
12
+ REDSHIFT: "REDSHIFT",
11
13
  };
12
14
  export const OverwriteOption = {
13
15
  CREATE_NEW_REPORT: "CREATE_NEW_REPORT",
@@ -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
@@ -27,7 +27,9 @@ export type FormatOption = (typeof FormatOption)[keyof typeof FormatOption];
27
27
  * @enum
28
28
  */
29
29
  export declare const S3OutputType: {
30
+ readonly ATHENA: "ATHENA";
30
31
  readonly CUSTOM: "CUSTOM";
32
+ readonly REDSHIFT: "REDSHIFT";
31
33
  };
32
34
  /**
33
35
  * @public
@@ -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.1044.0",
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",