@aws-sdk/client-bcm-data-exports 3.458.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.
Files changed (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +308 -0
  3. package/dist-cjs/BCMDataExports.js +35 -0
  4. package/dist-cjs/BCMDataExportsClient.js +43 -0
  5. package/dist-cjs/commands/CreateExportCommand.js +50 -0
  6. package/dist-cjs/commands/DeleteExportCommand.js +50 -0
  7. package/dist-cjs/commands/GetExecutionCommand.js +50 -0
  8. package/dist-cjs/commands/GetExportCommand.js +50 -0
  9. package/dist-cjs/commands/GetTableCommand.js +50 -0
  10. package/dist-cjs/commands/ListExecutionsCommand.js +50 -0
  11. package/dist-cjs/commands/ListExportsCommand.js +50 -0
  12. package/dist-cjs/commands/ListTablesCommand.js +50 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +50 -0
  14. package/dist-cjs/commands/TagResourceCommand.js +50 -0
  15. package/dist-cjs/commands/UntagResourceCommand.js +50 -0
  16. package/dist-cjs/commands/UpdateExportCommand.js +50 -0
  17. package/dist-cjs/commands/index.js +15 -0
  18. package/dist-cjs/endpoint/EndpointParameters.js +11 -0
  19. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  20. package/dist-cjs/endpoint/ruleset.js +7 -0
  21. package/dist-cjs/extensionConfiguration.js +2 -0
  22. package/dist-cjs/index.js +12 -0
  23. package/dist-cjs/models/BCMDataExportsServiceException.js +12 -0
  24. package/dist-cjs/models/index.js +4 -0
  25. package/dist-cjs/models/models_0.js +126 -0
  26. package/dist-cjs/pagination/Interfaces.js +2 -0
  27. package/dist-cjs/pagination/ListExecutionsPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListExportsPaginator.js +29 -0
  29. package/dist-cjs/pagination/ListTablesPaginator.js +29 -0
  30. package/dist-cjs/pagination/index.js +7 -0
  31. package/dist-cjs/protocols/Aws_json1_1.js +775 -0
  32. package/dist-cjs/runtimeConfig.browser.js +39 -0
  33. package/dist-cjs/runtimeConfig.js +50 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +24 -0
  36. package/dist-cjs/runtimeExtensions.js +22 -0
  37. package/dist-es/BCMDataExports.js +31 -0
  38. package/dist-es/BCMDataExportsClient.js +39 -0
  39. package/dist-es/commands/CreateExportCommand.js +46 -0
  40. package/dist-es/commands/DeleteExportCommand.js +46 -0
  41. package/dist-es/commands/GetExecutionCommand.js +46 -0
  42. package/dist-es/commands/GetExportCommand.js +46 -0
  43. package/dist-es/commands/GetTableCommand.js +46 -0
  44. package/dist-es/commands/ListExecutionsCommand.js +46 -0
  45. package/dist-es/commands/ListExportsCommand.js +46 -0
  46. package/dist-es/commands/ListTablesCommand.js +46 -0
  47. package/dist-es/commands/ListTagsForResourceCommand.js +46 -0
  48. package/dist-es/commands/TagResourceCommand.js +46 -0
  49. package/dist-es/commands/UntagResourceCommand.js +46 -0
  50. package/dist-es/commands/UpdateExportCommand.js +46 -0
  51. package/dist-es/commands/index.js +12 -0
  52. package/dist-es/endpoint/EndpointParameters.js +7 -0
  53. package/dist-es/endpoint/endpointResolver.js +8 -0
  54. package/dist-es/endpoint/ruleset.js +4 -0
  55. package/dist-es/extensionConfiguration.js +1 -0
  56. package/dist-es/index.js +7 -0
  57. package/dist-es/models/BCMDataExportsServiceException.js +8 -0
  58. package/dist-es/models/index.js +1 -0
  59. package/dist-es/models/models_0.js +118 -0
  60. package/dist-es/pagination/Interfaces.js +1 -0
  61. package/dist-es/pagination/ListExecutionsPaginator.js +25 -0
  62. package/dist-es/pagination/ListExportsPaginator.js +25 -0
  63. package/dist-es/pagination/ListTablesPaginator.js +25 -0
  64. package/dist-es/pagination/index.js +4 -0
  65. package/dist-es/protocols/Aws_json1_1.js +748 -0
  66. package/dist-es/runtimeConfig.browser.js +34 -0
  67. package/dist-es/runtimeConfig.js +45 -0
  68. package/dist-es/runtimeConfig.native.js +11 -0
  69. package/dist-es/runtimeConfig.shared.js +20 -0
  70. package/dist-es/runtimeExtensions.js +18 -0
  71. package/dist-types/BCMDataExports.d.ts +101 -0
  72. package/dist-types/BCMDataExportsClient.d.ts +188 -0
  73. package/dist-types/commands/CreateExportCommand.d.ts +138 -0
  74. package/dist-types/commands/DeleteExportCommand.d.ts +87 -0
  75. package/dist-types/commands/GetExecutionCommand.d.ts +124 -0
  76. package/dist-types/commands/GetExportCommand.d.ts +122 -0
  77. package/dist-types/commands/GetTableCommand.d.ts +99 -0
  78. package/dist-types/commands/ListExecutionsCommand.d.ts +101 -0
  79. package/dist-types/commands/ListExportsCommand.d.ts +98 -0
  80. package/dist-types/commands/ListTablesCommand.d.ts +101 -0
  81. package/dist-types/commands/ListTagsForResourceCommand.d.ts +95 -0
  82. package/dist-types/commands/TagResourceCommand.d.ts +91 -0
  83. package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  84. package/dist-types/commands/UpdateExportCommand.d.ts +117 -0
  85. package/dist-types/commands/index.d.ts +12 -0
  86. package/dist-types/endpoint/EndpointParameters.d.ts +20 -0
  87. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  88. package/dist-types/endpoint/ruleset.d.ts +2 -0
  89. package/dist-types/extensionConfiguration.d.ts +8 -0
  90. package/dist-types/index.d.ts +22 -0
  91. package/dist-types/models/BCMDataExportsServiceException.d.ts +13 -0
  92. package/dist-types/models/index.d.ts +1 -0
  93. package/dist-types/models/models_0.d.ts +921 -0
  94. package/dist-types/pagination/Interfaces.d.ts +8 -0
  95. package/dist-types/pagination/ListExecutionsPaginator.d.ts +7 -0
  96. package/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +4 -0
  99. package/dist-types/protocols/Aws_json1_1.d.ts +110 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  101. package/dist-types/runtimeConfig.d.ts +46 -0
  102. package/dist-types/runtimeConfig.native.d.ts +45 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/BCMDataExports.d.ts +211 -0
  106. package/dist-types/ts3.4/BCMDataExportsClient.d.ts +191 -0
  107. package/dist-types/ts3.4/commands/CreateExportCommand.d.ts +35 -0
  108. package/dist-types/ts3.4/commands/DeleteExportCommand.d.ts +35 -0
  109. package/dist-types/ts3.4/commands/GetExecutionCommand.d.ts +35 -0
  110. package/dist-types/ts3.4/commands/GetExportCommand.d.ts +35 -0
  111. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +35 -0
  112. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +38 -0
  113. package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +35 -0
  114. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +35 -0
  115. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  116. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  117. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  118. package/dist-types/ts3.4/commands/UpdateExportCommand.d.ts +35 -0
  119. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  120. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +31 -0
  121. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  122. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  123. package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  124. package/dist-types/ts3.4/index.d.ts +10 -0
  125. package/dist-types/ts3.4/models/BCMDataExportsServiceException.d.ts +8 -0
  126. package/dist-types/ts3.4/models/index.d.ts +1 -0
  127. package/dist-types/ts3.4/models/models_0.d.ts +277 -0
  128. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  129. package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +11 -0
  130. package/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  133. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +149 -0
  134. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  135. package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  136. package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  137. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  138. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  139. package/package.json +102 -0
@@ -0,0 +1,95 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListTagsForResourceCommand}.
14
+ */
15
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListTagsForResourceCommand}.
21
+ */
22
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>List tags associated with an existing data export.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { BCMDataExportsClient, ListTagsForResourceCommand } from "@aws-sdk/client-bcm-data-exports"; // ES Modules import
31
+ * // const { BCMDataExportsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-bcm-data-exports"); // CommonJS import
32
+ * const client = new BCMDataExportsClient(config);
33
+ * const input = { // ListTagsForResourceRequest
34
+ * ResourceArn: "STRING_VALUE", // required
35
+ * MaxResults: Number("int"),
36
+ * NextToken: "STRING_VALUE",
37
+ * };
38
+ * const command = new ListTagsForResourceCommand(input);
39
+ * const response = await client.send(command);
40
+ * // { // ListTagsForResourceResponse
41
+ * // ResourceTags: [ // ResourceTagList
42
+ * // { // ResourceTag
43
+ * // Key: "STRING_VALUE", // required
44
+ * // Value: "STRING_VALUE", // required
45
+ * // },
46
+ * // ],
47
+ * // NextToken: "STRING_VALUE",
48
+ * // };
49
+ *
50
+ * ```
51
+ *
52
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
53
+ * @returns {@link ListTagsForResourceCommandOutput}
54
+ * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
55
+ * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
56
+ * @see {@link BCMDataExportsClientResolvedConfig | config} for BCMDataExportsClient's `config` shape.
57
+ *
58
+ * @throws {@link InternalServerException} (server fault)
59
+ * <p>An error on the server occurred during the processing of your request. Try again
60
+ * later.</p>
61
+ *
62
+ * @throws {@link ResourceNotFoundException} (client fault)
63
+ * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
64
+ *
65
+ * @throws {@link ThrottlingException} (client fault)
66
+ * <p>The request was denied due to request throttling.</p>
67
+ *
68
+ * @throws {@link ValidationException} (client fault)
69
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
70
+ * service.</p>
71
+ *
72
+ * @throws {@link BCMDataExportsServiceException}
73
+ * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
74
+ *
75
+ */
76
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BCMDataExportsClientResolvedConfig> {
77
+ readonly input: ListTagsForResourceCommandInput;
78
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
+ /**
80
+ * @public
81
+ */
82
+ constructor(input: ListTagsForResourceCommandInput);
83
+ /**
84
+ * @internal
85
+ */
86
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
87
+ /**
88
+ * @internal
89
+ */
90
+ private serialize;
91
+ /**
92
+ * @internal
93
+ */
94
+ private deserialize;
95
+ }
@@ -0,0 +1,91 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link TagResourceCommand}.
14
+ */
15
+ export interface TagResourceCommandInput extends TagResourceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link TagResourceCommand}.
21
+ */
22
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Adds tags for an existing data export definition.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { BCMDataExportsClient, TagResourceCommand } from "@aws-sdk/client-bcm-data-exports"; // ES Modules import
31
+ * // const { BCMDataExportsClient, TagResourceCommand } = require("@aws-sdk/client-bcm-data-exports"); // CommonJS import
32
+ * const client = new BCMDataExportsClient(config);
33
+ * const input = { // TagResourceRequest
34
+ * ResourceArn: "STRING_VALUE", // required
35
+ * ResourceTags: [ // ResourceTagList // required
36
+ * { // ResourceTag
37
+ * Key: "STRING_VALUE", // required
38
+ * Value: "STRING_VALUE", // required
39
+ * },
40
+ * ],
41
+ * };
42
+ * const command = new TagResourceCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
49
+ * @returns {@link TagResourceCommandOutput}
50
+ * @see {@link TagResourceCommandInput} for command's `input` shape.
51
+ * @see {@link TagResourceCommandOutput} for command's `response` shape.
52
+ * @see {@link BCMDataExportsClientResolvedConfig | config} for BCMDataExportsClient's `config` shape.
53
+ *
54
+ * @throws {@link InternalServerException} (server fault)
55
+ * <p>An error on the server occurred during the processing of your request. Try again
56
+ * later.</p>
57
+ *
58
+ * @throws {@link ResourceNotFoundException} (client fault)
59
+ * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
60
+ *
61
+ * @throws {@link ThrottlingException} (client fault)
62
+ * <p>The request was denied due to request throttling.</p>
63
+ *
64
+ * @throws {@link ValidationException} (client fault)
65
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
66
+ * service.</p>
67
+ *
68
+ * @throws {@link BCMDataExportsServiceException}
69
+ * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
70
+ *
71
+ */
72
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, BCMDataExportsClientResolvedConfig> {
73
+ readonly input: TagResourceCommandInput;
74
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
75
+ /**
76
+ * @public
77
+ */
78
+ constructor(input: TagResourceCommandInput);
79
+ /**
80
+ * @internal
81
+ */
82
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
83
+ /**
84
+ * @internal
85
+ */
86
+ private serialize;
87
+ /**
88
+ * @internal
89
+ */
90
+ private deserialize;
91
+ }
@@ -0,0 +1,88 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UntagResourceCommand}.
14
+ */
15
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UntagResourceCommand}.
21
+ */
22
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Deletes tags associated with an existing data export definition.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { BCMDataExportsClient, UntagResourceCommand } from "@aws-sdk/client-bcm-data-exports"; // ES Modules import
31
+ * // const { BCMDataExportsClient, UntagResourceCommand } = require("@aws-sdk/client-bcm-data-exports"); // CommonJS import
32
+ * const client = new BCMDataExportsClient(config);
33
+ * const input = { // UntagResourceRequest
34
+ * ResourceArn: "STRING_VALUE", // required
35
+ * ResourceTagKeys: [ // ResourceTagKeyList // required
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * };
39
+ * const command = new UntagResourceCommand(input);
40
+ * const response = await client.send(command);
41
+ * // {};
42
+ *
43
+ * ```
44
+ *
45
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
46
+ * @returns {@link UntagResourceCommandOutput}
47
+ * @see {@link UntagResourceCommandInput} for command's `input` shape.
48
+ * @see {@link UntagResourceCommandOutput} for command's `response` shape.
49
+ * @see {@link BCMDataExportsClientResolvedConfig | config} for BCMDataExportsClient's `config` shape.
50
+ *
51
+ * @throws {@link InternalServerException} (server fault)
52
+ * <p>An error on the server occurred during the processing of your request. Try again
53
+ * later.</p>
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
57
+ *
58
+ * @throws {@link ThrottlingException} (client fault)
59
+ * <p>The request was denied due to request throttling.</p>
60
+ *
61
+ * @throws {@link ValidationException} (client fault)
62
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
63
+ * service.</p>
64
+ *
65
+ * @throws {@link BCMDataExportsServiceException}
66
+ * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
67
+ *
68
+ */
69
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, BCMDataExportsClientResolvedConfig> {
70
+ readonly input: UntagResourceCommandInput;
71
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
75
+ constructor(input: UntagResourceCommandInput);
76
+ /**
77
+ * @internal
78
+ */
79
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
80
+ /**
81
+ * @internal
82
+ */
83
+ private serialize;
84
+ /**
85
+ * @internal
86
+ */
87
+ private deserialize;
88
+ }
@@ -0,0 +1,117 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
+ import { UpdateExportRequest, UpdateExportResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateExportCommand}.
14
+ */
15
+ export interface UpdateExportCommandInput extends UpdateExportRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateExportCommand}.
21
+ */
22
+ export interface UpdateExportCommandOutput extends UpdateExportResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Updates an existing data export by overwriting all export parameters. All export
27
+ * parameters must be provided in the UpdateExport request.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { BCMDataExportsClient, UpdateExportCommand } from "@aws-sdk/client-bcm-data-exports"; // ES Modules import
32
+ * // const { BCMDataExportsClient, UpdateExportCommand } = require("@aws-sdk/client-bcm-data-exports"); // CommonJS import
33
+ * const client = new BCMDataExportsClient(config);
34
+ * const input = { // UpdateExportRequest
35
+ * ExportArn: "STRING_VALUE", // required
36
+ * Export: { // Export
37
+ * ExportArn: "STRING_VALUE",
38
+ * Name: "STRING_VALUE", // required
39
+ * Description: "STRING_VALUE",
40
+ * DataQuery: { // DataQuery
41
+ * QueryStatement: "STRING_VALUE", // required
42
+ * TableConfigurations: { // TableConfigurations
43
+ * "<keys>": { // TableProperties
44
+ * "<keys>": "STRING_VALUE",
45
+ * },
46
+ * },
47
+ * },
48
+ * DestinationConfigurations: { // DestinationConfigurations
49
+ * S3Destination: { // S3Destination
50
+ * S3Bucket: "STRING_VALUE", // required
51
+ * S3Prefix: "STRING_VALUE", // required
52
+ * S3Region: "STRING_VALUE", // required
53
+ * S3OutputConfigurations: { // S3OutputConfigurations
54
+ * OutputType: "CUSTOM", // required
55
+ * Format: "TEXT_OR_CSV" || "PARQUET", // required
56
+ * Compression: "GZIP" || "PARQUET", // required
57
+ * Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
58
+ * },
59
+ * },
60
+ * },
61
+ * RefreshCadence: { // RefreshCadence
62
+ * Frequency: "SYNCHRONOUS", // required
63
+ * },
64
+ * },
65
+ * };
66
+ * const command = new UpdateExportCommand(input);
67
+ * const response = await client.send(command);
68
+ * // { // UpdateExportResponse
69
+ * // ExportArn: "STRING_VALUE",
70
+ * // };
71
+ *
72
+ * ```
73
+ *
74
+ * @param UpdateExportCommandInput - {@link UpdateExportCommandInput}
75
+ * @returns {@link UpdateExportCommandOutput}
76
+ * @see {@link UpdateExportCommandInput} for command's `input` shape.
77
+ * @see {@link UpdateExportCommandOutput} for command's `response` shape.
78
+ * @see {@link BCMDataExportsClientResolvedConfig | config} for BCMDataExportsClient's `config` shape.
79
+ *
80
+ * @throws {@link InternalServerException} (server fault)
81
+ * <p>An error on the server occurred during the processing of your request. Try again
82
+ * later.</p>
83
+ *
84
+ * @throws {@link ResourceNotFoundException} (client fault)
85
+ * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
86
+ *
87
+ * @throws {@link ThrottlingException} (client fault)
88
+ * <p>The request was denied due to request throttling.</p>
89
+ *
90
+ * @throws {@link ValidationException} (client fault)
91
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
92
+ * service.</p>
93
+ *
94
+ * @throws {@link BCMDataExportsServiceException}
95
+ * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
96
+ *
97
+ */
98
+ export declare class UpdateExportCommand extends $Command<UpdateExportCommandInput, UpdateExportCommandOutput, BCMDataExportsClientResolvedConfig> {
99
+ readonly input: UpdateExportCommandInput;
100
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
101
+ /**
102
+ * @public
103
+ */
104
+ constructor(input: UpdateExportCommandInput);
105
+ /**
106
+ * @internal
107
+ */
108
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateExportCommandInput, UpdateExportCommandOutput>;
109
+ /**
110
+ * @internal
111
+ */
112
+ private serialize;
113
+ /**
114
+ * @internal
115
+ */
116
+ private deserialize;
117
+ }
@@ -0,0 +1,12 @@
1
+ export * from "./CreateExportCommand";
2
+ export * from "./DeleteExportCommand";
3
+ export * from "./GetExecutionCommand";
4
+ export * from "./GetExportCommand";
5
+ export * from "./GetTableCommand";
6
+ export * from "./ListExecutionsCommand";
7
+ export * from "./ListExportsCommand";
8
+ export * from "./ListTablesCommand";
9
+ export * from "./ListTagsForResourceCommand";
10
+ export * from "./TagResourceCommand";
11
+ export * from "./UntagResourceCommand";
12
+ export * from "./UpdateExportCommand";
@@ -0,0 +1,20 @@
1
+ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ClientInputEndpointParameters {
6
+ region?: string | Provider<string>;
7
+ useFipsEndpoint?: boolean | Provider<boolean>;
8
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
9
+ }
10
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
11
+ defaultSigningName: string;
12
+ };
13
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
14
+ defaultSigningName: string;
15
+ };
16
+ export interface EndpointParameters extends __EndpointParameters {
17
+ Region?: string;
18
+ UseFIPS?: boolean;
19
+ Endpoint?: string;
20
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,8 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ /**
5
+ * @internal
6
+ */
7
+ export interface BCMDataExportsExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration {
8
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * <p>You can use the Data Exports API to create customized exports from multiple Amazon Web Services cost management and billing datasets, such as cost and usage data and cost
3
+ * optimization recommendations.</p>
4
+ * <p>The Data Exports API provides the following endpoint:</p>
5
+ * <ul>
6
+ * <li>
7
+ * <p>https://bcm-data-exports.us-east-1.api.aws</p>
8
+ * </li>
9
+ * </ul>
10
+ *
11
+ * @packageDocumentation
12
+ */
13
+ export * from "./BCMDataExportsClient";
14
+ export * from "./BCMDataExports";
15
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
16
+ export { RuntimeExtension } from "./runtimeExtensions";
17
+ export { BCMDataExportsExtensionConfiguration } from "./extensionConfiguration";
18
+ export * from "./commands";
19
+ export * from "./pagination";
20
+ export * from "./models";
21
+ import "@aws-sdk/util-endpoints";
22
+ export { BCMDataExportsServiceException } from "./models/BCMDataExportsServiceException";
@@ -0,0 +1,13 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
2
+ export { __ServiceException, __ServiceExceptionOptions };
3
+ /**
4
+ * @public
5
+ *
6
+ * Base exception class for all service exceptions from BCMDataExports service.
7
+ */
8
+ export declare class BCMDataExportsServiceException extends __ServiceException {
9
+ /**
10
+ * @internal
11
+ */
12
+ constructor(options: __ServiceExceptionOptions);
13
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";