@aws-sdk/client-bcm-data-exports 3.934.0 → 3.935.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
@@ -115,24 +115,6 @@ let BCMDataExportsServiceException$1 = class BCMDataExportsServiceException exte
115
115
  }
116
116
  };
117
117
 
118
- const CompressionOption = {
119
- GZIP: "GZIP",
120
- PARQUET: "PARQUET",
121
- };
122
- const FormatOption = {
123
- PARQUET: "PARQUET",
124
- TEXT_OR_CSV: "TEXT_OR_CSV",
125
- };
126
- const S3OutputType = {
127
- CUSTOM: "CUSTOM",
128
- };
129
- const OverwriteOption = {
130
- CREATE_NEW_REPORT: "CREATE_NEW_REPORT",
131
- OVERWRITE_REPORT: "OVERWRITE_REPORT",
132
- };
133
- const FrequencyOption = {
134
- SYNCHRONOUS: "SYNCHRONOUS",
135
- };
136
118
  let InternalServerException$1 = class InternalServerException extends BCMDataExportsServiceException$1 {
137
119
  name = "InternalServerException";
138
120
  $fault = "server";
@@ -187,12 +169,6 @@ let ThrottlingException$1 = class ThrottlingException extends BCMDataExportsServ
187
169
  this.ServiceCode = opts.ServiceCode;
188
170
  }
189
171
  };
190
- const ValidationExceptionReason = {
191
- CANNOT_PARSE: "cannotParse",
192
- FIELD_VALIDATION_FAILED: "fieldValidationFailed",
193
- OTHER: "other",
194
- UNKNOWN_OPERATION: "unknownOperation",
195
- };
196
172
  let ValidationException$1 = class ValidationException extends BCMDataExportsServiceException$1 {
197
173
  name = "ValidationException";
198
174
  $fault = "client";
@@ -229,24 +205,6 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends BCMDat
229
205
  this.ResourceType = opts.ResourceType;
230
206
  }
231
207
  };
232
- const ExecutionStatusCode = {
233
- DELIVERY_FAILURE: "DELIVERY_FAILURE",
234
- DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS",
235
- DELIVERY_SUCCESS: "DELIVERY_SUCCESS",
236
- INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS",
237
- QUERY_FAILURE: "QUERY_FAILURE",
238
- QUERY_IN_PROCESS: "QUERY_IN_PROCESS",
239
- QUERY_QUEUED: "QUERY_QUEUED",
240
- };
241
- const ExecutionStatusReason = {
242
- BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED",
243
- INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION",
244
- INTERNAL_FAILURE: "INTERNAL_FAILURE",
245
- };
246
- const ExportStatusCode = {
247
- HEALTHY: "HEALTHY",
248
- UNHEALTHY: "UNHEALTHY",
249
- };
250
208
 
251
209
  const _C = "Column";
252
210
  const _CA = "CreatedAt";
@@ -734,6 +692,49 @@ const paginateListExports = core.createPaginator(BCMDataExportsClient, ListExpor
734
692
 
735
693
  const paginateListTables = core.createPaginator(BCMDataExportsClient, ListTablesCommand, "NextToken", "NextToken", "MaxResults");
736
694
 
695
+ const CompressionOption = {
696
+ GZIP: "GZIP",
697
+ PARQUET: "PARQUET",
698
+ };
699
+ const FormatOption = {
700
+ PARQUET: "PARQUET",
701
+ TEXT_OR_CSV: "TEXT_OR_CSV",
702
+ };
703
+ const S3OutputType = {
704
+ CUSTOM: "CUSTOM",
705
+ };
706
+ const OverwriteOption = {
707
+ CREATE_NEW_REPORT: "CREATE_NEW_REPORT",
708
+ OVERWRITE_REPORT: "OVERWRITE_REPORT",
709
+ };
710
+ const FrequencyOption = {
711
+ SYNCHRONOUS: "SYNCHRONOUS",
712
+ };
713
+ const ValidationExceptionReason = {
714
+ CANNOT_PARSE: "cannotParse",
715
+ FIELD_VALIDATION_FAILED: "fieldValidationFailed",
716
+ OTHER: "other",
717
+ UNKNOWN_OPERATION: "unknownOperation",
718
+ };
719
+ const ExecutionStatusCode = {
720
+ DELIVERY_FAILURE: "DELIVERY_FAILURE",
721
+ DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS",
722
+ DELIVERY_SUCCESS: "DELIVERY_SUCCESS",
723
+ INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS",
724
+ QUERY_FAILURE: "QUERY_FAILURE",
725
+ QUERY_IN_PROCESS: "QUERY_IN_PROCESS",
726
+ QUERY_QUEUED: "QUERY_QUEUED",
727
+ };
728
+ const ExecutionStatusReason = {
729
+ BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED",
730
+ INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION",
731
+ INTERNAL_FAILURE: "INTERNAL_FAILURE",
732
+ };
733
+ const ExportStatusCode = {
734
+ HEALTHY: "HEALTHY",
735
+ UNHEALTHY: "UNHEALTHY",
736
+ };
737
+
737
738
  Object.defineProperty(exports, "$Command", {
738
739
  enumerable: true,
739
740
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./BCMDataExportsClient";
2
2
  export * from "./BCMDataExports";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { BCMDataExportsServiceException } from "./models/BCMDataExportsServiceException";
@@ -0,0 +1,42 @@
1
+ export const CompressionOption = {
2
+ GZIP: "GZIP",
3
+ PARQUET: "PARQUET",
4
+ };
5
+ export const FormatOption = {
6
+ PARQUET: "PARQUET",
7
+ TEXT_OR_CSV: "TEXT_OR_CSV",
8
+ };
9
+ export const S3OutputType = {
10
+ CUSTOM: "CUSTOM",
11
+ };
12
+ export const OverwriteOption = {
13
+ CREATE_NEW_REPORT: "CREATE_NEW_REPORT",
14
+ OVERWRITE_REPORT: "OVERWRITE_REPORT",
15
+ };
16
+ export const FrequencyOption = {
17
+ SYNCHRONOUS: "SYNCHRONOUS",
18
+ };
19
+ export const ValidationExceptionReason = {
20
+ CANNOT_PARSE: "cannotParse",
21
+ FIELD_VALIDATION_FAILED: "fieldValidationFailed",
22
+ OTHER: "other",
23
+ UNKNOWN_OPERATION: "unknownOperation",
24
+ };
25
+ export const ExecutionStatusCode = {
26
+ DELIVERY_FAILURE: "DELIVERY_FAILURE",
27
+ DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS",
28
+ DELIVERY_SUCCESS: "DELIVERY_SUCCESS",
29
+ INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS",
30
+ QUERY_FAILURE: "QUERY_FAILURE",
31
+ QUERY_IN_PROCESS: "QUERY_IN_PROCESS",
32
+ QUERY_QUEUED: "QUERY_QUEUED",
33
+ };
34
+ export const ExecutionStatusReason = {
35
+ BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED",
36
+ INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION",
37
+ INTERNAL_FAILURE: "INTERNAL_FAILURE",
38
+ };
39
+ export const ExportStatusCode = {
40
+ HEALTHY: "HEALTHY",
41
+ UNHEALTHY: "UNHEALTHY",
42
+ };
@@ -0,0 +1,91 @@
1
+ import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException";
2
+ export class InternalServerException extends __BaseException {
3
+ name = "InternalServerException";
4
+ $fault = "server";
5
+ Message;
6
+ constructor(opts) {
7
+ super({
8
+ name: "InternalServerException",
9
+ $fault: "server",
10
+ ...opts,
11
+ });
12
+ Object.setPrototypeOf(this, InternalServerException.prototype);
13
+ this.Message = opts.Message;
14
+ }
15
+ }
16
+ export class ServiceQuotaExceededException extends __BaseException {
17
+ name = "ServiceQuotaExceededException";
18
+ $fault = "client";
19
+ Message;
20
+ ResourceId;
21
+ ResourceType;
22
+ QuotaCode;
23
+ ServiceCode;
24
+ constructor(opts) {
25
+ super({
26
+ name: "ServiceQuotaExceededException",
27
+ $fault: "client",
28
+ ...opts,
29
+ });
30
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
31
+ this.Message = opts.Message;
32
+ this.ResourceId = opts.ResourceId;
33
+ this.ResourceType = opts.ResourceType;
34
+ this.QuotaCode = opts.QuotaCode;
35
+ this.ServiceCode = opts.ServiceCode;
36
+ }
37
+ }
38
+ export class ThrottlingException extends __BaseException {
39
+ name = "ThrottlingException";
40
+ $fault = "client";
41
+ Message;
42
+ QuotaCode;
43
+ ServiceCode;
44
+ constructor(opts) {
45
+ super({
46
+ name: "ThrottlingException",
47
+ $fault: "client",
48
+ ...opts,
49
+ });
50
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
51
+ this.Message = opts.Message;
52
+ this.QuotaCode = opts.QuotaCode;
53
+ this.ServiceCode = opts.ServiceCode;
54
+ }
55
+ }
56
+ export class ValidationException extends __BaseException {
57
+ name = "ValidationException";
58
+ $fault = "client";
59
+ Message;
60
+ Reason;
61
+ Fields;
62
+ constructor(opts) {
63
+ super({
64
+ name: "ValidationException",
65
+ $fault: "client",
66
+ ...opts,
67
+ });
68
+ Object.setPrototypeOf(this, ValidationException.prototype);
69
+ this.Message = opts.Message;
70
+ this.Reason = opts.Reason;
71
+ this.Fields = opts.Fields;
72
+ }
73
+ }
74
+ export class ResourceNotFoundException extends __BaseException {
75
+ name = "ResourceNotFoundException";
76
+ $fault = "client";
77
+ Message;
78
+ ResourceId;
79
+ ResourceType;
80
+ constructor(opts) {
81
+ super({
82
+ name: "ResourceNotFoundException",
83
+ $fault: "client",
84
+ ...opts,
85
+ });
86
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
87
+ this.Message = opts.Message;
88
+ this.ResourceId = opts.ResourceId;
89
+ this.ResourceType = opts.ResourceType;
90
+ }
91
+ }
@@ -1,133 +1 @@
1
- import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException";
2
- export const CompressionOption = {
3
- GZIP: "GZIP",
4
- PARQUET: "PARQUET",
5
- };
6
- export const FormatOption = {
7
- PARQUET: "PARQUET",
8
- TEXT_OR_CSV: "TEXT_OR_CSV",
9
- };
10
- export const S3OutputType = {
11
- CUSTOM: "CUSTOM",
12
- };
13
- export const OverwriteOption = {
14
- CREATE_NEW_REPORT: "CREATE_NEW_REPORT",
15
- OVERWRITE_REPORT: "OVERWRITE_REPORT",
16
- };
17
- export const FrequencyOption = {
18
- SYNCHRONOUS: "SYNCHRONOUS",
19
- };
20
- export class InternalServerException extends __BaseException {
21
- name = "InternalServerException";
22
- $fault = "server";
23
- Message;
24
- constructor(opts) {
25
- super({
26
- name: "InternalServerException",
27
- $fault: "server",
28
- ...opts,
29
- });
30
- Object.setPrototypeOf(this, InternalServerException.prototype);
31
- this.Message = opts.Message;
32
- }
33
- }
34
- export class ServiceQuotaExceededException extends __BaseException {
35
- name = "ServiceQuotaExceededException";
36
- $fault = "client";
37
- Message;
38
- ResourceId;
39
- ResourceType;
40
- QuotaCode;
41
- ServiceCode;
42
- constructor(opts) {
43
- super({
44
- name: "ServiceQuotaExceededException",
45
- $fault: "client",
46
- ...opts,
47
- });
48
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
49
- this.Message = opts.Message;
50
- this.ResourceId = opts.ResourceId;
51
- this.ResourceType = opts.ResourceType;
52
- this.QuotaCode = opts.QuotaCode;
53
- this.ServiceCode = opts.ServiceCode;
54
- }
55
- }
56
- export class ThrottlingException extends __BaseException {
57
- name = "ThrottlingException";
58
- $fault = "client";
59
- Message;
60
- QuotaCode;
61
- ServiceCode;
62
- constructor(opts) {
63
- super({
64
- name: "ThrottlingException",
65
- $fault: "client",
66
- ...opts,
67
- });
68
- Object.setPrototypeOf(this, ThrottlingException.prototype);
69
- this.Message = opts.Message;
70
- this.QuotaCode = opts.QuotaCode;
71
- this.ServiceCode = opts.ServiceCode;
72
- }
73
- }
74
- export const ValidationExceptionReason = {
75
- CANNOT_PARSE: "cannotParse",
76
- FIELD_VALIDATION_FAILED: "fieldValidationFailed",
77
- OTHER: "other",
78
- UNKNOWN_OPERATION: "unknownOperation",
79
- };
80
- export class ValidationException extends __BaseException {
81
- name = "ValidationException";
82
- $fault = "client";
83
- Message;
84
- Reason;
85
- Fields;
86
- constructor(opts) {
87
- super({
88
- name: "ValidationException",
89
- $fault: "client",
90
- ...opts,
91
- });
92
- Object.setPrototypeOf(this, ValidationException.prototype);
93
- this.Message = opts.Message;
94
- this.Reason = opts.Reason;
95
- this.Fields = opts.Fields;
96
- }
97
- }
98
- export class ResourceNotFoundException extends __BaseException {
99
- name = "ResourceNotFoundException";
100
- $fault = "client";
101
- Message;
102
- ResourceId;
103
- ResourceType;
104
- constructor(opts) {
105
- super({
106
- name: "ResourceNotFoundException",
107
- $fault: "client",
108
- ...opts,
109
- });
110
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
111
- this.Message = opts.Message;
112
- this.ResourceId = opts.ResourceId;
113
- this.ResourceType = opts.ResourceType;
114
- }
115
- }
116
- export const ExecutionStatusCode = {
117
- DELIVERY_FAILURE: "DELIVERY_FAILURE",
118
- DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS",
119
- DELIVERY_SUCCESS: "DELIVERY_SUCCESS",
120
- INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS",
121
- QUERY_FAILURE: "QUERY_FAILURE",
122
- QUERY_IN_PROCESS: "QUERY_IN_PROCESS",
123
- QUERY_QUEUED: "QUERY_QUEUED",
124
- };
125
- export const ExecutionStatusReason = {
126
- BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED",
127
- INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION",
128
- INTERNAL_FAILURE: "INTERNAL_FAILURE",
129
- };
130
- export const ExportStatusCode = {
131
- HEALTHY: "HEALTHY",
132
- UNHEALTHY: "UNHEALTHY",
133
- };
1
+ export {};
@@ -113,7 +113,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bcmdataexports";
113
113
  const n0 = "com.amazonaws.bcmdataexports";
114
114
  import { TypeRegistry } from "@smithy/core/schema";
115
115
  import { BCMDataExportsServiceException as __BCMDataExportsServiceException } from "../models/BCMDataExportsServiceException";
116
- import { InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/index";
116
+ import { InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
117
117
  export var Column = [3, n0, _C, 0, [_N, _T, _D], [0, 0, 0]];
118
118
  export var CreateExportRequest = [
119
119
  3,
@@ -17,5 +17,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
17
17
  export type { BCMDataExportsExtensionConfiguration } from "./extensionConfiguration";
18
18
  export * from "./commands";
19
19
  export * from "./pagination";
20
- export * from "./models";
20
+ export * from "./models/enums";
21
+ export * from "./models/errors";
22
+ export type * from "./models/models_0";
21
23
  export { BCMDataExportsServiceException } from "./models/BCMDataExportsServiceException";
@@ -0,0 +1,114 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const CompressionOption: {
6
+ readonly GZIP: "GZIP";
7
+ readonly PARQUET: "PARQUET";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type CompressionOption = (typeof CompressionOption)[keyof typeof CompressionOption];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const FormatOption: {
18
+ readonly PARQUET: "PARQUET";
19
+ readonly TEXT_OR_CSV: "TEXT_OR_CSV";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type FormatOption = (typeof FormatOption)[keyof typeof FormatOption];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const S3OutputType: {
30
+ readonly CUSTOM: "CUSTOM";
31
+ };
32
+ /**
33
+ * @public
34
+ */
35
+ export type S3OutputType = (typeof S3OutputType)[keyof typeof S3OutputType];
36
+ /**
37
+ * @public
38
+ * @enum
39
+ */
40
+ export declare const OverwriteOption: {
41
+ readonly CREATE_NEW_REPORT: "CREATE_NEW_REPORT";
42
+ readonly OVERWRITE_REPORT: "OVERWRITE_REPORT";
43
+ };
44
+ /**
45
+ * @public
46
+ */
47
+ export type OverwriteOption = (typeof OverwriteOption)[keyof typeof OverwriteOption];
48
+ /**
49
+ * @public
50
+ * @enum
51
+ */
52
+ export declare const FrequencyOption: {
53
+ readonly SYNCHRONOUS: "SYNCHRONOUS";
54
+ };
55
+ /**
56
+ * @public
57
+ */
58
+ export type FrequencyOption = (typeof FrequencyOption)[keyof typeof FrequencyOption];
59
+ /**
60
+ * @public
61
+ * @enum
62
+ */
63
+ export declare const ValidationExceptionReason: {
64
+ readonly CANNOT_PARSE: "cannotParse";
65
+ readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
66
+ readonly OTHER: "other";
67
+ readonly UNKNOWN_OPERATION: "unknownOperation";
68
+ };
69
+ /**
70
+ * @public
71
+ */
72
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
73
+ /**
74
+ * @public
75
+ * @enum
76
+ */
77
+ export declare const ExecutionStatusCode: {
78
+ readonly DELIVERY_FAILURE: "DELIVERY_FAILURE";
79
+ readonly DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS";
80
+ readonly DELIVERY_SUCCESS: "DELIVERY_SUCCESS";
81
+ readonly INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS";
82
+ readonly QUERY_FAILURE: "QUERY_FAILURE";
83
+ readonly QUERY_IN_PROCESS: "QUERY_IN_PROCESS";
84
+ readonly QUERY_QUEUED: "QUERY_QUEUED";
85
+ };
86
+ /**
87
+ * @public
88
+ */
89
+ export type ExecutionStatusCode = (typeof ExecutionStatusCode)[keyof typeof ExecutionStatusCode];
90
+ /**
91
+ * @public
92
+ * @enum
93
+ */
94
+ export declare const ExecutionStatusReason: {
95
+ readonly BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED";
96
+ readonly INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION";
97
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
98
+ };
99
+ /**
100
+ * @public
101
+ */
102
+ export type ExecutionStatusReason = (typeof ExecutionStatusReason)[keyof typeof ExecutionStatusReason];
103
+ /**
104
+ * @public
105
+ * @enum
106
+ */
107
+ export declare const ExportStatusCode: {
108
+ readonly HEALTHY: "HEALTHY";
109
+ readonly UNHEALTHY: "UNHEALTHY";
110
+ };
111
+ /**
112
+ * @public
113
+ */
114
+ export type ExportStatusCode = (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
@@ -0,0 +1,124 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException";
3
+ import { ValidationExceptionReason } from "./enums";
4
+ import { ValidationExceptionField } from "./models_0";
5
+ /**
6
+ * <p>An error on the server occurred during the processing of your request. Try again
7
+ * later.</p>
8
+ * @public
9
+ */
10
+ export declare class InternalServerException extends __BaseException {
11
+ readonly name: "InternalServerException";
12
+ readonly $fault: "server";
13
+ Message: string | undefined;
14
+ /**
15
+ * @internal
16
+ */
17
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
18
+ }
19
+ /**
20
+ * <p>You've reached the limit on the number of resources you can create, or exceeded the size
21
+ * of an individual resource.</p>
22
+ * @public
23
+ */
24
+ export declare class ServiceQuotaExceededException extends __BaseException {
25
+ readonly name: "ServiceQuotaExceededException";
26
+ readonly $fault: "client";
27
+ Message: string | undefined;
28
+ /**
29
+ * <p>The identifier of the resource that exceeded quota.</p>
30
+ * @public
31
+ */
32
+ ResourceId?: string | undefined;
33
+ /**
34
+ * <p>The type of the resource that exceeded quota.</p>
35
+ * @public
36
+ */
37
+ ResourceType?: string | undefined;
38
+ /**
39
+ * <p>The quota code that was exceeded.</p>
40
+ * @public
41
+ */
42
+ QuotaCode: string | undefined;
43
+ /**
44
+ * <p>The service code that exceeded quota. It will always be
45
+ * “AWSBillingAndCostManagementDataExports”.</p>
46
+ * @public
47
+ */
48
+ ServiceCode: string | undefined;
49
+ /**
50
+ * @internal
51
+ */
52
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
53
+ }
54
+ /**
55
+ * <p>The request was denied due to request throttling.</p>
56
+ * @public
57
+ */
58
+ export declare class ThrottlingException extends __BaseException {
59
+ readonly name: "ThrottlingException";
60
+ readonly $fault: "client";
61
+ Message: string | undefined;
62
+ /**
63
+ * <p>The quota code that exceeded the throttling limit.</p>
64
+ * @public
65
+ */
66
+ QuotaCode?: string | undefined;
67
+ /**
68
+ * <p>The service code that exceeded the throttling limit. It will always be
69
+ * “AWSBillingAndCostManagementDataExports”.</p>
70
+ * @public
71
+ */
72
+ ServiceCode?: string | undefined;
73
+ /**
74
+ * @internal
75
+ */
76
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
77
+ }
78
+ /**
79
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
80
+ * service.</p>
81
+ * @public
82
+ */
83
+ export declare class ValidationException extends __BaseException {
84
+ readonly name: "ValidationException";
85
+ readonly $fault: "client";
86
+ Message: string | undefined;
87
+ /**
88
+ * <p>The reason for the validation exception.</p>
89
+ * @public
90
+ */
91
+ Reason?: ValidationExceptionReason | undefined;
92
+ /**
93
+ * <p>The list of fields that are invalid.</p>
94
+ * @public
95
+ */
96
+ Fields?: ValidationExceptionField[] | undefined;
97
+ /**
98
+ * @internal
99
+ */
100
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
101
+ }
102
+ /**
103
+ * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
104
+ * @public
105
+ */
106
+ export declare class ResourceNotFoundException extends __BaseException {
107
+ readonly name: "ResourceNotFoundException";
108
+ readonly $fault: "client";
109
+ Message: string | undefined;
110
+ /**
111
+ * <p>The identifier of the resource that was not found.</p>
112
+ * @public
113
+ */
114
+ ResourceId: string | undefined;
115
+ /**
116
+ * <p>The type of the resource that was not found.</p>
117
+ * @public
118
+ */
119
+ ResourceType: string | undefined;
120
+ /**
121
+ * @internal
122
+ */
123
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
124
+ }
@@ -1,5 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException";
1
+ import { CompressionOption, ExecutionStatusCode, ExecutionStatusReason, ExportStatusCode, FormatOption, FrequencyOption, OverwriteOption, S3OutputType } from "./enums";
3
2
  /**
4
3
  * <p>The SQL query of column selections and row filters from the data table you want.</p>
5
4
  * @public
@@ -16,53 +15,6 @@ export interface DataQuery {
16
15
  */
17
16
  TableConfigurations?: Record<string, Record<string, string>> | undefined;
18
17
  }
19
- /**
20
- * @public
21
- * @enum
22
- */
23
- export declare const CompressionOption: {
24
- readonly GZIP: "GZIP";
25
- readonly PARQUET: "PARQUET";
26
- };
27
- /**
28
- * @public
29
- */
30
- export type CompressionOption = (typeof CompressionOption)[keyof typeof CompressionOption];
31
- /**
32
- * @public
33
- * @enum
34
- */
35
- export declare const FormatOption: {
36
- readonly PARQUET: "PARQUET";
37
- readonly TEXT_OR_CSV: "TEXT_OR_CSV";
38
- };
39
- /**
40
- * @public
41
- */
42
- export type FormatOption = (typeof FormatOption)[keyof typeof FormatOption];
43
- /**
44
- * @public
45
- * @enum
46
- */
47
- export declare const S3OutputType: {
48
- readonly CUSTOM: "CUSTOM";
49
- };
50
- /**
51
- * @public
52
- */
53
- export type S3OutputType = (typeof S3OutputType)[keyof typeof S3OutputType];
54
- /**
55
- * @public
56
- * @enum
57
- */
58
- export declare const OverwriteOption: {
59
- readonly CREATE_NEW_REPORT: "CREATE_NEW_REPORT";
60
- readonly OVERWRITE_REPORT: "OVERWRITE_REPORT";
61
- };
62
- /**
63
- * @public
64
- */
65
- export type OverwriteOption = (typeof OverwriteOption)[keyof typeof OverwriteOption];
66
18
  /**
67
19
  * <p>The compression type, file format, and overwrite preference for the data export.</p>
68
20
  * @public
@@ -130,17 +82,6 @@ export interface DestinationConfigurations {
130
82
  */
131
83
  S3Destination: S3Destination | undefined;
132
84
  }
133
- /**
134
- * @public
135
- * @enum
136
- */
137
- export declare const FrequencyOption: {
138
- readonly SYNCHRONOUS: "SYNCHRONOUS";
139
- };
140
- /**
141
- * @public
142
- */
143
- export type FrequencyOption = (typeof FrequencyOption)[keyof typeof FrequencyOption];
144
85
  /**
145
86
  * <p>The cadence for Amazon Web Services to update the data export in your S3 bucket.</p>
146
87
  * @public
@@ -232,79 +173,6 @@ export interface CreateExportResponse {
232
173
  */
233
174
  ExportArn?: string | undefined;
234
175
  }
235
- /**
236
- * <p>An error on the server occurred during the processing of your request. Try again
237
- * later.</p>
238
- * @public
239
- */
240
- export declare class InternalServerException extends __BaseException {
241
- readonly name: "InternalServerException";
242
- readonly $fault: "server";
243
- Message: string | undefined;
244
- /**
245
- * @internal
246
- */
247
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
248
- }
249
- /**
250
- * <p>You've reached the limit on the number of resources you can create, or exceeded the size
251
- * of an individual resource.</p>
252
- * @public
253
- */
254
- export declare class ServiceQuotaExceededException extends __BaseException {
255
- readonly name: "ServiceQuotaExceededException";
256
- readonly $fault: "client";
257
- Message: string | undefined;
258
- /**
259
- * <p>The identifier of the resource that exceeded quota.</p>
260
- * @public
261
- */
262
- ResourceId?: string | undefined;
263
- /**
264
- * <p>The type of the resource that exceeded quota.</p>
265
- * @public
266
- */
267
- ResourceType?: string | undefined;
268
- /**
269
- * <p>The quota code that was exceeded.</p>
270
- * @public
271
- */
272
- QuotaCode: string | undefined;
273
- /**
274
- * <p>The service code that exceeded quota. It will always be
275
- * “AWSBillingAndCostManagementDataExports”.</p>
276
- * @public
277
- */
278
- ServiceCode: string | undefined;
279
- /**
280
- * @internal
281
- */
282
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
283
- }
284
- /**
285
- * <p>The request was denied due to request throttling.</p>
286
- * @public
287
- */
288
- export declare class ThrottlingException extends __BaseException {
289
- readonly name: "ThrottlingException";
290
- readonly $fault: "client";
291
- Message: string | undefined;
292
- /**
293
- * <p>The quota code that exceeded the throttling limit.</p>
294
- * @public
295
- */
296
- QuotaCode?: string | undefined;
297
- /**
298
- * <p>The service code that exceeded the throttling limit. It will always be
299
- * “AWSBillingAndCostManagementDataExports”.</p>
300
- * @public
301
- */
302
- ServiceCode?: string | undefined;
303
- /**
304
- * @internal
305
- */
306
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
307
- }
308
176
  /**
309
177
  * <p>The input failed to meet the constraints specified by the Amazon Web Services service in a
310
178
  * specified field.</p>
@@ -322,44 +190,6 @@ export interface ValidationExceptionField {
322
190
  */
323
191
  Message: string | undefined;
324
192
  }
325
- /**
326
- * @public
327
- * @enum
328
- */
329
- export declare const ValidationExceptionReason: {
330
- readonly CANNOT_PARSE: "cannotParse";
331
- readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
332
- readonly OTHER: "other";
333
- readonly UNKNOWN_OPERATION: "unknownOperation";
334
- };
335
- /**
336
- * @public
337
- */
338
- export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
339
- /**
340
- * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
341
- * service.</p>
342
- * @public
343
- */
344
- export declare class ValidationException extends __BaseException {
345
- readonly name: "ValidationException";
346
- readonly $fault: "client";
347
- Message: string | undefined;
348
- /**
349
- * <p>The reason for the validation exception.</p>
350
- * @public
351
- */
352
- Reason?: ValidationExceptionReason | undefined;
353
- /**
354
- * <p>The list of fields that are invalid.</p>
355
- * @public
356
- */
357
- Fields?: ValidationExceptionField[] | undefined;
358
- /**
359
- * @internal
360
- */
361
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
362
- }
363
193
  /**
364
194
  * @public
365
195
  */
@@ -380,29 +210,6 @@ export interface DeleteExportResponse {
380
210
  */
381
211
  ExportArn?: string | undefined;
382
212
  }
383
- /**
384
- * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
385
- * @public
386
- */
387
- export declare class ResourceNotFoundException extends __BaseException {
388
- readonly name: "ResourceNotFoundException";
389
- readonly $fault: "client";
390
- Message: string | undefined;
391
- /**
392
- * <p>The identifier of the resource that was not found.</p>
393
- * @public
394
- */
395
- ResourceId: string | undefined;
396
- /**
397
- * <p>The type of the resource that was not found.</p>
398
- * @public
399
- */
400
- ResourceType: string | undefined;
401
- /**
402
- * @internal
403
- */
404
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
405
- }
406
213
  /**
407
214
  * @public
408
215
  */
@@ -419,36 +226,6 @@ export interface GetExecutionRequest {
419
226
  */
420
227
  ExecutionId: string | undefined;
421
228
  }
422
- /**
423
- * @public
424
- * @enum
425
- */
426
- export declare const ExecutionStatusCode: {
427
- readonly DELIVERY_FAILURE: "DELIVERY_FAILURE";
428
- readonly DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS";
429
- readonly DELIVERY_SUCCESS: "DELIVERY_SUCCESS";
430
- readonly INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS";
431
- readonly QUERY_FAILURE: "QUERY_FAILURE";
432
- readonly QUERY_IN_PROCESS: "QUERY_IN_PROCESS";
433
- readonly QUERY_QUEUED: "QUERY_QUEUED";
434
- };
435
- /**
436
- * @public
437
- */
438
- export type ExecutionStatusCode = (typeof ExecutionStatusCode)[keyof typeof ExecutionStatusCode];
439
- /**
440
- * @public
441
- * @enum
442
- */
443
- export declare const ExecutionStatusReason: {
444
- readonly BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED";
445
- readonly INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION";
446
- readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
447
- };
448
- /**
449
- * @public
450
- */
451
- export type ExecutionStatusReason = (typeof ExecutionStatusReason)[keyof typeof ExecutionStatusReason];
452
229
  /**
453
230
  * <p>The status of the execution.</p>
454
231
  * @public
@@ -512,18 +289,6 @@ export interface GetExportRequest {
512
289
  */
513
290
  ExportArn: string | undefined;
514
291
  }
515
- /**
516
- * @public
517
- * @enum
518
- */
519
- export declare const ExportStatusCode: {
520
- readonly HEALTHY: "HEALTHY";
521
- readonly UNHEALTHY: "UNHEALTHY";
522
- };
523
- /**
524
- * @public
525
- */
526
- export type ExportStatusCode = (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
527
292
  /**
528
293
  * <p>The status of the data export.</p>
529
294
  * @public
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { BCMDataExportsExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { BCMDataExportsServiceException } from "./models/BCMDataExportsServiceException";
@@ -0,0 +1,58 @@
1
+ export declare const CompressionOption: {
2
+ readonly GZIP: "GZIP";
3
+ readonly PARQUET: "PARQUET";
4
+ };
5
+ export type CompressionOption =
6
+ (typeof CompressionOption)[keyof typeof CompressionOption];
7
+ export declare const FormatOption: {
8
+ readonly PARQUET: "PARQUET";
9
+ readonly TEXT_OR_CSV: "TEXT_OR_CSV";
10
+ };
11
+ export type FormatOption = (typeof FormatOption)[keyof typeof FormatOption];
12
+ export declare const S3OutputType: {
13
+ readonly CUSTOM: "CUSTOM";
14
+ };
15
+ export type S3OutputType = (typeof S3OutputType)[keyof typeof S3OutputType];
16
+ export declare const OverwriteOption: {
17
+ readonly CREATE_NEW_REPORT: "CREATE_NEW_REPORT";
18
+ readonly OVERWRITE_REPORT: "OVERWRITE_REPORT";
19
+ };
20
+ export type OverwriteOption =
21
+ (typeof OverwriteOption)[keyof typeof OverwriteOption];
22
+ export declare const FrequencyOption: {
23
+ readonly SYNCHRONOUS: "SYNCHRONOUS";
24
+ };
25
+ export type FrequencyOption =
26
+ (typeof FrequencyOption)[keyof typeof FrequencyOption];
27
+ export declare const ValidationExceptionReason: {
28
+ readonly CANNOT_PARSE: "cannotParse";
29
+ readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
30
+ readonly OTHER: "other";
31
+ readonly UNKNOWN_OPERATION: "unknownOperation";
32
+ };
33
+ export type ValidationExceptionReason =
34
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
35
+ export declare const ExecutionStatusCode: {
36
+ readonly DELIVERY_FAILURE: "DELIVERY_FAILURE";
37
+ readonly DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS";
38
+ readonly DELIVERY_SUCCESS: "DELIVERY_SUCCESS";
39
+ readonly INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS";
40
+ readonly QUERY_FAILURE: "QUERY_FAILURE";
41
+ readonly QUERY_IN_PROCESS: "QUERY_IN_PROCESS";
42
+ readonly QUERY_QUEUED: "QUERY_QUEUED";
43
+ };
44
+ export type ExecutionStatusCode =
45
+ (typeof ExecutionStatusCode)[keyof typeof ExecutionStatusCode];
46
+ export declare const ExecutionStatusReason: {
47
+ readonly BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED";
48
+ readonly INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION";
49
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
50
+ };
51
+ export type ExecutionStatusReason =
52
+ (typeof ExecutionStatusReason)[keyof typeof ExecutionStatusReason];
53
+ export declare const ExportStatusCode: {
54
+ readonly HEALTHY: "HEALTHY";
55
+ readonly UNHEALTHY: "UNHEALTHY";
56
+ };
57
+ export type ExportStatusCode =
58
+ (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
@@ -0,0 +1,54 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException";
3
+ import { ValidationExceptionReason } from "./enums";
4
+ import { ValidationExceptionField } from "./models_0";
5
+ export declare class InternalServerException extends __BaseException {
6
+ readonly name: "InternalServerException";
7
+ readonly $fault: "server";
8
+ Message: string | undefined;
9
+ constructor(
10
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
11
+ );
12
+ }
13
+ export declare class ServiceQuotaExceededException extends __BaseException {
14
+ readonly name: "ServiceQuotaExceededException";
15
+ readonly $fault: "client";
16
+ Message: string | undefined;
17
+ ResourceId?: string | undefined;
18
+ ResourceType?: string | undefined;
19
+ QuotaCode: string | undefined;
20
+ ServiceCode: string | undefined;
21
+ constructor(
22
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
23
+ );
24
+ }
25
+ export declare class ThrottlingException extends __BaseException {
26
+ readonly name: "ThrottlingException";
27
+ readonly $fault: "client";
28
+ Message: string | undefined;
29
+ QuotaCode?: string | undefined;
30
+ ServiceCode?: string | undefined;
31
+ constructor(
32
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
33
+ );
34
+ }
35
+ export declare class ValidationException extends __BaseException {
36
+ readonly name: "ValidationException";
37
+ readonly $fault: "client";
38
+ Message: string | undefined;
39
+ Reason?: ValidationExceptionReason | undefined;
40
+ Fields?: ValidationExceptionField[] | undefined;
41
+ constructor(
42
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
43
+ );
44
+ }
45
+ export declare class ResourceNotFoundException extends __BaseException {
46
+ readonly name: "ResourceNotFoundException";
47
+ readonly $fault: "client";
48
+ Message: string | undefined;
49
+ ResourceId: string | undefined;
50
+ ResourceType: string | undefined;
51
+ constructor(
52
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
53
+ );
54
+ }
@@ -1,30 +1,17 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException";
1
+ import {
2
+ CompressionOption,
3
+ ExecutionStatusCode,
4
+ ExecutionStatusReason,
5
+ ExportStatusCode,
6
+ FormatOption,
7
+ FrequencyOption,
8
+ OverwriteOption,
9
+ S3OutputType,
10
+ } from "./enums";
3
11
  export interface DataQuery {
4
12
  QueryStatement: string | undefined;
5
13
  TableConfigurations?: Record<string, Record<string, string>> | undefined;
6
14
  }
7
- export declare const CompressionOption: {
8
- readonly GZIP: "GZIP";
9
- readonly PARQUET: "PARQUET";
10
- };
11
- export type CompressionOption =
12
- (typeof CompressionOption)[keyof typeof CompressionOption];
13
- export declare const FormatOption: {
14
- readonly PARQUET: "PARQUET";
15
- readonly TEXT_OR_CSV: "TEXT_OR_CSV";
16
- };
17
- export type FormatOption = (typeof FormatOption)[keyof typeof FormatOption];
18
- export declare const S3OutputType: {
19
- readonly CUSTOM: "CUSTOM";
20
- };
21
- export type S3OutputType = (typeof S3OutputType)[keyof typeof S3OutputType];
22
- export declare const OverwriteOption: {
23
- readonly CREATE_NEW_REPORT: "CREATE_NEW_REPORT";
24
- readonly OVERWRITE_REPORT: "OVERWRITE_REPORT";
25
- };
26
- export type OverwriteOption =
27
- (typeof OverwriteOption)[keyof typeof OverwriteOption];
28
15
  export interface S3OutputConfigurations {
29
16
  OutputType: S3OutputType | undefined;
30
17
  Format: FormatOption | undefined;
@@ -40,11 +27,6 @@ export interface S3Destination {
40
27
  export interface DestinationConfigurations {
41
28
  S3Destination: S3Destination | undefined;
42
29
  }
43
- export declare const FrequencyOption: {
44
- readonly SYNCHRONOUS: "SYNCHRONOUS";
45
- };
46
- export type FrequencyOption =
47
- (typeof FrequencyOption)[keyof typeof FrequencyOption];
48
30
  export interface RefreshCadence {
49
31
  Frequency: FrequencyOption | undefined;
50
32
  }
@@ -67,96 +49,20 @@ export interface CreateExportRequest {
67
49
  export interface CreateExportResponse {
68
50
  ExportArn?: string | undefined;
69
51
  }
70
- export declare class InternalServerException extends __BaseException {
71
- readonly name: "InternalServerException";
72
- readonly $fault: "server";
73
- Message: string | undefined;
74
- constructor(
75
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
76
- );
77
- }
78
- export declare class ServiceQuotaExceededException extends __BaseException {
79
- readonly name: "ServiceQuotaExceededException";
80
- readonly $fault: "client";
81
- Message: string | undefined;
82
- ResourceId?: string | undefined;
83
- ResourceType?: string | undefined;
84
- QuotaCode: string | undefined;
85
- ServiceCode: string | undefined;
86
- constructor(
87
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
88
- );
89
- }
90
- export declare class ThrottlingException extends __BaseException {
91
- readonly name: "ThrottlingException";
92
- readonly $fault: "client";
93
- Message: string | undefined;
94
- QuotaCode?: string | undefined;
95
- ServiceCode?: string | undefined;
96
- constructor(
97
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
98
- );
99
- }
100
52
  export interface ValidationExceptionField {
101
53
  Name: string | undefined;
102
54
  Message: string | undefined;
103
55
  }
104
- export declare const ValidationExceptionReason: {
105
- readonly CANNOT_PARSE: "cannotParse";
106
- readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
107
- readonly OTHER: "other";
108
- readonly UNKNOWN_OPERATION: "unknownOperation";
109
- };
110
- export type ValidationExceptionReason =
111
- (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
112
- export declare class ValidationException extends __BaseException {
113
- readonly name: "ValidationException";
114
- readonly $fault: "client";
115
- Message: string | undefined;
116
- Reason?: ValidationExceptionReason | undefined;
117
- Fields?: ValidationExceptionField[] | undefined;
118
- constructor(
119
- opts: __ExceptionOptionType<ValidationException, __BaseException>
120
- );
121
- }
122
56
  export interface DeleteExportRequest {
123
57
  ExportArn: string | undefined;
124
58
  }
125
59
  export interface DeleteExportResponse {
126
60
  ExportArn?: string | undefined;
127
61
  }
128
- export declare class ResourceNotFoundException extends __BaseException {
129
- readonly name: "ResourceNotFoundException";
130
- readonly $fault: "client";
131
- Message: string | undefined;
132
- ResourceId: string | undefined;
133
- ResourceType: string | undefined;
134
- constructor(
135
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
136
- );
137
- }
138
62
  export interface GetExecutionRequest {
139
63
  ExportArn: string | undefined;
140
64
  ExecutionId: string | undefined;
141
65
  }
142
- export declare const ExecutionStatusCode: {
143
- readonly DELIVERY_FAILURE: "DELIVERY_FAILURE";
144
- readonly DELIVERY_IN_PROCESS: "DELIVERY_IN_PROCESS";
145
- readonly DELIVERY_SUCCESS: "DELIVERY_SUCCESS";
146
- readonly INITIATION_IN_PROCESS: "INITIATION_IN_PROCESS";
147
- readonly QUERY_FAILURE: "QUERY_FAILURE";
148
- readonly QUERY_IN_PROCESS: "QUERY_IN_PROCESS";
149
- readonly QUERY_QUEUED: "QUERY_QUEUED";
150
- };
151
- export type ExecutionStatusCode =
152
- (typeof ExecutionStatusCode)[keyof typeof ExecutionStatusCode];
153
- export declare const ExecutionStatusReason: {
154
- readonly BILL_OWNER_CHANGED: "BILL_OWNER_CHANGED";
155
- readonly INSUFFICIENT_PERMISSION: "INSUFFICIENT_PERMISSION";
156
- readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
157
- };
158
- export type ExecutionStatusReason =
159
- (typeof ExecutionStatusReason)[keyof typeof ExecutionStatusReason];
160
66
  export interface ExecutionStatus {
161
67
  StatusCode?: ExecutionStatusCode | undefined;
162
68
  StatusReason?: ExecutionStatusReason | undefined;
@@ -172,12 +78,6 @@ export interface GetExecutionResponse {
172
78
  export interface GetExportRequest {
173
79
  ExportArn: string | undefined;
174
80
  }
175
- export declare const ExportStatusCode: {
176
- readonly HEALTHY: "HEALTHY";
177
- readonly UNHEALTHY: "UNHEALTHY";
178
- };
179
- export type ExportStatusCode =
180
- (typeof ExportStatusCode)[keyof typeof ExportStatusCode];
181
81
  export interface ExportStatus {
182
82
  StatusCode?: ExportStatusCode | undefined;
183
83
  StatusReason?: ExecutionStatusReason | undefined;
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.934.0",
4
+ "version": "3.935.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-bcm-data-exports",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";