@depup/aws-sdk__client-dynamodb 3.1005.0-depup.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/LICENSE +201 -0
- package/README.md +31 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/endpointResolver.js +27 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1667 -0
- package/dist-cjs/models/DynamoDBServiceException.js +12 -0
- package/dist-cjs/models/errors.js +478 -0
- package/dist-cjs/runtimeConfig.browser.js +41 -0
- package/dist-cjs/runtimeConfig.js +57 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +46 -0
- package/dist-cjs/schemas/schemas_0.js +2390 -0
- package/dist-es/DynamoDB.js +149 -0
- package/dist-es/DynamoDBClient.js +55 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/BatchExecuteStatementCommand.js +16 -0
- package/dist-es/commands/BatchGetItemCommand.js +19 -0
- package/dist-es/commands/BatchWriteItemCommand.js +19 -0
- package/dist-es/commands/CreateBackupCommand.js +19 -0
- package/dist-es/commands/CreateGlobalTableCommand.js +19 -0
- package/dist-es/commands/CreateTableCommand.js +19 -0
- package/dist-es/commands/DeleteBackupCommand.js +19 -0
- package/dist-es/commands/DeleteItemCommand.js +19 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +19 -0
- package/dist-es/commands/DeleteTableCommand.js +19 -0
- package/dist-es/commands/DescribeBackupCommand.js +19 -0
- package/dist-es/commands/DescribeContinuousBackupsCommand.js +19 -0
- package/dist-es/commands/DescribeContributorInsightsCommand.js +19 -0
- package/dist-es/commands/DescribeEndpointsCommand.js +16 -0
- package/dist-es/commands/DescribeExportCommand.js +19 -0
- package/dist-es/commands/DescribeGlobalTableCommand.js +19 -0
- package/dist-es/commands/DescribeGlobalTableSettingsCommand.js +19 -0
- package/dist-es/commands/DescribeImportCommand.js +19 -0
- package/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +19 -0
- package/dist-es/commands/DescribeLimitsCommand.js +16 -0
- package/dist-es/commands/DescribeTableCommand.js +19 -0
- package/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +19 -0
- package/dist-es/commands/DescribeTimeToLiveCommand.js +19 -0
- package/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +19 -0
- package/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +19 -0
- package/dist-es/commands/ExecuteStatementCommand.js +16 -0
- package/dist-es/commands/ExecuteTransactionCommand.js +16 -0
- package/dist-es/commands/ExportTableToPointInTimeCommand.js +19 -0
- package/dist-es/commands/GetItemCommand.js +19 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +19 -0
- package/dist-es/commands/ImportTableCommand.js +19 -0
- package/dist-es/commands/ListBackupsCommand.js +19 -0
- package/dist-es/commands/ListContributorInsightsCommand.js +19 -0
- package/dist-es/commands/ListExportsCommand.js +19 -0
- package/dist-es/commands/ListGlobalTablesCommand.js +16 -0
- package/dist-es/commands/ListImportsCommand.js +19 -0
- package/dist-es/commands/ListTablesCommand.js +16 -0
- package/dist-es/commands/ListTagsOfResourceCommand.js +19 -0
- package/dist-es/commands/PutItemCommand.js +19 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +19 -0
- package/dist-es/commands/QueryCommand.js +19 -0
- package/dist-es/commands/RestoreTableFromBackupCommand.js +19 -0
- package/dist-es/commands/RestoreTableToPointInTimeCommand.js +19 -0
- package/dist-es/commands/ScanCommand.js +19 -0
- package/dist-es/commands/TagResourceCommand.js +19 -0
- package/dist-es/commands/TransactGetItemsCommand.js +19 -0
- package/dist-es/commands/TransactWriteItemsCommand.js +19 -0
- package/dist-es/commands/UntagResourceCommand.js +19 -0
- package/dist-es/commands/UpdateContinuousBackupsCommand.js +19 -0
- package/dist-es/commands/UpdateContributorInsightsCommand.js +19 -0
- package/dist-es/commands/UpdateGlobalTableCommand.js +19 -0
- package/dist-es/commands/UpdateGlobalTableSettingsCommand.js +19 -0
- package/dist-es/commands/UpdateItemCommand.js +19 -0
- package/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +19 -0
- package/dist-es/commands/UpdateTableCommand.js +19 -0
- package/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +19 -0
- package/dist-es/commands/UpdateTimeToLiveCommand.js +19 -0
- package/dist-es/commands/index.js +57 -0
- package/dist-es/endpoint/EndpointParameters.js +15 -0
- package/dist-es/endpoint/endpointResolver.js +23 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +10 -0
- package/dist-es/models/DynamoDBServiceException.js +8 -0
- package/dist-es/models/enums.js +245 -0
- package/dist-es/models/errors.js +440 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListContributorInsightsPaginator.js +4 -0
- package/dist-es/pagination/ListExportsPaginator.js +4 -0
- package/dist-es/pagination/ListImportsPaginator.js +4 -0
- package/dist-es/pagination/ListTablesPaginator.js +4 -0
- package/dist-es/pagination/QueryPaginator.js +4 -0
- package/dist-es/pagination/ScanPaginator.js +4 -0
- package/dist-es/pagination/index.js +7 -0
- package/dist-es/runtimeConfig.browser.js +36 -0
- package/dist-es/runtimeConfig.js +52 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +42 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +2381 -0
- package/dist-es/waiters/index.js +6 -0
- package/dist-es/waiters/waitForContributorInsightsEnabled.js +40 -0
- package/dist-es/waiters/waitForExportCompleted.js +40 -0
- package/dist-es/waiters/waitForImportCompleted.js +49 -0
- package/dist-es/waiters/waitForKinesisStreamingDestinationActive.js +49 -0
- package/dist-es/waiters/waitForTableExists.js +34 -0
- package/dist-es/waiters/waitForTableNotExists.js +25 -0
- package/dist-types/DynamoDB.d.ts +512 -0
- package/dist-types/DynamoDBClient.d.ts +272 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/BatchExecuteStatementCommand.d.ts +234 -0
- package/dist-types/commands/BatchGetItemCommand.d.ts +366 -0
- package/dist-types/commands/BatchWriteItemCommand.d.ts +414 -0
- package/dist-types/commands/CreateBackupCommand.d.ts +151 -0
- package/dist-types/commands/CreateGlobalTableCommand.d.ts +211 -0
- package/dist-types/commands/CreateTableCommand.d.ts +394 -0
- package/dist-types/commands/DeleteBackupCommand.d.ts +197 -0
- package/dist-types/commands/DeleteItemCommand.d.ts +296 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +145 -0
- package/dist-types/commands/DeleteTableCommand.d.ts +338 -0
- package/dist-types/commands/DescribeBackupCommand.d.ts +175 -0
- package/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +104 -0
- package/dist-types/commands/DescribeContributorInsightsCommand.d.ts +94 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +78 -0
- package/dist-types/commands/DescribeExportCommand.d.ts +124 -0
- package/dist-types/commands/DescribeGlobalTableCommand.d.ts +133 -0
- package/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +178 -0
- package/dist-types/commands/DescribeImportCommand.d.ts +165 -0
- package/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +91 -0
- package/dist-types/commands/DescribeLimitsCommand.d.ts +165 -0
- package/dist-types/commands/DescribeTableCommand.d.ts +269 -0
- package/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +164 -0
- package/dist-types/commands/DescribeTimeToLiveCommand.d.ts +86 -0
- package/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +128 -0
- package/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +130 -0
- package/dist-types/commands/ExecuteStatementCommand.d.ts +251 -0
- package/dist-types/commands/ExecuteTransactionCommand.d.ts +534 -0
- package/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +152 -0
- package/dist-types/commands/GetItemCommand.d.ts +264 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +124 -0
- package/dist-types/commands/ImportTableCommand.d.ts +275 -0
- package/dist-types/commands/ListBackupsCommand.d.ts +109 -0
- package/dist-types/commands/ListContributorInsightsCommand.d.ts +92 -0
- package/dist-types/commands/ListExportsCommand.d.ts +104 -0
- package/dist-types/commands/ListGlobalTablesCommand.d.ts +95 -0
- package/dist-types/commands/ListImportsCommand.d.ts +110 -0
- package/dist-types/commands/ListTablesCommand.d.ts +103 -0
- package/dist-types/commands/ListTagsOfResourceCommand.d.ts +93 -0
- package/dist-types/commands/PutItemCommand.d.ts +315 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +147 -0
- package/dist-types/commands/QueryCommand.d.ts +338 -0
- package/dist-types/commands/RestoreTableFromBackupCommand.d.ts +373 -0
- package/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +407 -0
- package/dist-types/commands/ScanCommand.d.ts +337 -0
- package/dist-types/commands/TagResourceCommand.d.ts +145 -0
- package/dist-types/commands/TransactGetItemsCommand.d.ts +496 -0
- package/dist-types/commands/TransactWriteItemsCommand.d.ts +659 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +140 -0
- package/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +111 -0
- package/dist-types/commands/UpdateContributorInsightsCommand.d.ts +93 -0
- package/dist-types/commands/UpdateGlobalTableCommand.d.ts +179 -0
- package/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +286 -0
- package/dist-types/commands/UpdateItemCommand.d.ts +323 -0
- package/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +127 -0
- package/dist-types/commands/UpdateTableCommand.d.ts +458 -0
- package/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +246 -0
- package/dist-types/commands/UpdateTimeToLiveCommand.d.ts +149 -0
- package/dist-types/commands/index.d.ts +57 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +64 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +34 -0
- package/dist-types/models/DynamoDBServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +589 -0
- package/dist-types/models/errors.d.ts +803 -0
- package/dist-types/models/models_0.d.ts +10010 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListContributorInsightsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListImportsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
- package/dist-types/pagination/QueryPaginator.d.ts +7 -0
- package/dist-types/pagination/ScanPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +7 -0
- package/dist-types/runtimeConfig.browser.d.ts +60 -0
- package/dist-types/runtimeConfig.d.ts +60 -0
- package/dist-types/runtimeConfig.native.d.ts +59 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +325 -0
- package/dist-types/ts3.4/DynamoDB.d.ts +1102 -0
- package/dist-types/ts3.4/DynamoDBClient.d.ts +472 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetItemCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ImportTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListImportsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutItemCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ScanCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateKinesisStreamingDestinationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +57 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +65 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +13 -0
- package/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +313 -0
- package/dist-types/ts3.4/models/errors.d.ts +286 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1557 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +114 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +111 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +118 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +325 -0
- package/dist-types/ts3.4/waiters/index.d.ts +6 -0
- package/dist-types/ts3.4/waiters/waitForContributorInsightsEnabled.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForExportCompleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForImportCompleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForKinesisStreamingDestinationActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +6 -0
- package/dist-types/waiters/waitForContributorInsightsEnabled.d.ts +14 -0
- package/dist-types/waiters/waitForExportCompleted.d.ts +14 -0
- package/dist-types/waiters/waitForImportCompleted.d.ts +14 -0
- package/dist-types/waiters/waitForKinesisStreamingDestinationActive.d.ts +14 -0
- package/dist-types/waiters/waitForTableExists.d.ts +14 -0
- package/dist-types/waiters/waitForTableNotExists.d.ts +14 -0
- package/package.json +130 -0
|
@@ -0,0 +1,2381 @@
|
|
|
1
|
+
const _A = "Action";
|
|
2
|
+
const _ABA = "ArchivalBackupArn";
|
|
3
|
+
const _ACDTP = "ApproximateCreationDateTimePrecision";
|
|
4
|
+
const _AD = "AttributeDefinition";
|
|
5
|
+
const _ADT = "ArchivalDateTime";
|
|
6
|
+
const _ADt = "AttributeDefinitions";
|
|
7
|
+
const _AM = "AttributeMap";
|
|
8
|
+
const _AMRCU = "AccountMaxReadCapacityUnits";
|
|
9
|
+
const _AMWCU = "AccountMaxWriteCapacityUnits";
|
|
10
|
+
const _AN = "AttributeName";
|
|
11
|
+
const _AR = "ArchivalReason";
|
|
12
|
+
const _AS = "ArchivalSummary";
|
|
13
|
+
const _ASD = "AutoScalingDisabled";
|
|
14
|
+
const _ASPD = "AutoScalingPolicyDescription";
|
|
15
|
+
const _ASPDL = "AutoScalingPolicyDescriptionList";
|
|
16
|
+
const _ASPU = "AutoScalingPolicyUpdate";
|
|
17
|
+
const _ASRA = "AutoScalingRoleArn";
|
|
18
|
+
const _ASSD = "AutoScalingSettingsDescription";
|
|
19
|
+
const _ASSU = "AutoScalingSettingsUpdate";
|
|
20
|
+
const _ASTTSPCD = "AutoScalingTargetTrackingScalingPolicyConfigurationDescription";
|
|
21
|
+
const _ASTTSPCU = "AutoScalingTargetTrackingScalingPolicyConfigurationUpdate";
|
|
22
|
+
const _AT = "AttributeType";
|
|
23
|
+
const _ATG = "AttributesToGet";
|
|
24
|
+
const _AU = "AttributeUpdates";
|
|
25
|
+
const _AV = "AttributeValue";
|
|
26
|
+
const _AVL = "AttributeValueList";
|
|
27
|
+
const _AVU = "AttributeValueUpdate";
|
|
28
|
+
const _Ad = "Address";
|
|
29
|
+
const _At = "Attributes";
|
|
30
|
+
const _B = "Backfilling";
|
|
31
|
+
const _BA = "BackupArn";
|
|
32
|
+
const _BCDT = "BackupCreationDateTime";
|
|
33
|
+
const _BD = "BackupDescription";
|
|
34
|
+
const _BDa = "BackupDetails";
|
|
35
|
+
const _BEDT = "BackupExpiryDateTime";
|
|
36
|
+
const _BES = "BatchExecuteStatement";
|
|
37
|
+
const _BESI = "BatchExecuteStatementInput";
|
|
38
|
+
const _BESO = "BatchExecuteStatementOutput";
|
|
39
|
+
const _BGI = "BatchGetItem";
|
|
40
|
+
const _BGII = "BatchGetItemInput";
|
|
41
|
+
const _BGIO = "BatchGetItemOutput";
|
|
42
|
+
const _BGRM = "BatchGetResponseMap";
|
|
43
|
+
const _BGRMa = "BatchGetRequestMap";
|
|
44
|
+
const _BIUE = "BackupInUseException";
|
|
45
|
+
const _BM = "BillingMode";
|
|
46
|
+
const _BMO = "BillingModeOverride";
|
|
47
|
+
const _BMS = "BillingModeSummary";
|
|
48
|
+
const _BN = "BackupName";
|
|
49
|
+
const _BNFE = "BackupNotFoundException";
|
|
50
|
+
const _BOOL = "BOOL";
|
|
51
|
+
const _BS = "BackupStatus";
|
|
52
|
+
const _BSB = "BackupSizeBytes";
|
|
53
|
+
const _BSBi = "BilledSizeBytes";
|
|
54
|
+
const _BSE = "BatchStatementError";
|
|
55
|
+
const _BSR = "BatchStatementRequest";
|
|
56
|
+
const _BSRa = "BatchStatementResponse";
|
|
57
|
+
const _BS_ = "BS";
|
|
58
|
+
const _BSa = "BackupSummary";
|
|
59
|
+
const _BSac = "BackupSummaries";
|
|
60
|
+
const _BT = "BackupType";
|
|
61
|
+
const _BWI = "BatchWriteItem";
|
|
62
|
+
const _BWII = "BatchWriteItemInput";
|
|
63
|
+
const _BWIO = "BatchWriteItemOutput";
|
|
64
|
+
const _BWIRM = "BatchWriteItemRequestMap";
|
|
65
|
+
const _B_ = "B";
|
|
66
|
+
const _C = "Code";
|
|
67
|
+
const _CB = "CreateBackup";
|
|
68
|
+
const _CBD = "ContinuousBackupsDescription";
|
|
69
|
+
const _CBI = "CreateBackupInput";
|
|
70
|
+
const _CBO = "CreateBackupOutput";
|
|
71
|
+
const _CBS = "ContinuousBackupsStatus";
|
|
72
|
+
const _CBUE = "ContinuousBackupsUnavailableException";
|
|
73
|
+
const _CC = "ConsumedCapacity";
|
|
74
|
+
const _CCFE = "ConditionalCheckFailedException";
|
|
75
|
+
const _CCM = "ConsumedCapacityMultiple";
|
|
76
|
+
const _CCo = "ConditionCheck";
|
|
77
|
+
const _CDT = "CreationDateTime";
|
|
78
|
+
const _CE = "ConditionExpression";
|
|
79
|
+
const _CGSIA = "CreateGlobalSecondaryIndexAction";
|
|
80
|
+
const _CGT = "CreateGlobalTable";
|
|
81
|
+
const _CGTI = "CreateGlobalTableInput";
|
|
82
|
+
const _CGTO = "CreateGlobalTableOutput";
|
|
83
|
+
const _CGTWGMA = "CreateGlobalTableWitnessGroupMemberAction";
|
|
84
|
+
const _CIA = "ContributorInsightsAction";
|
|
85
|
+
const _CIM = "ContributorInsightsMode";
|
|
86
|
+
const _CIRL = "ContributorInsightsRuleList";
|
|
87
|
+
const _CIS = "ContributorInsightsSummary";
|
|
88
|
+
const _CISo = "ContributorInsightsStatus";
|
|
89
|
+
const _CISon = "ContributorInsightsSummaries";
|
|
90
|
+
const _CO = "ComparisonOperator";
|
|
91
|
+
const _COo = "ConditionalOperator";
|
|
92
|
+
const _COs = "CsvOptions";
|
|
93
|
+
const _CPIM = "CachePeriodInMinutes";
|
|
94
|
+
const _CR = "CancellationReasons";
|
|
95
|
+
const _CRA = "CreateReplicaAction";
|
|
96
|
+
const _CRGMA = "CreateReplicationGroupMemberAction";
|
|
97
|
+
const _CRL = "CancellationReasonList";
|
|
98
|
+
const _CRSRA = "ConfirmRemoveSelfResourceAccess";
|
|
99
|
+
const _CRT = "ClientRequestToken";
|
|
100
|
+
const _CRa = "CancellationReason";
|
|
101
|
+
const _CRo = "ConsistentRead";
|
|
102
|
+
const _CT = "ClientToken";
|
|
103
|
+
const _CTI = "CreateTableInput";
|
|
104
|
+
const _CTO = "CreateTableOutput";
|
|
105
|
+
const _CTr = "CreateTable";
|
|
106
|
+
const _CU = "CapacityUnits";
|
|
107
|
+
const _CWLGA = "CloudWatchLogGroupArn";
|
|
108
|
+
const _Ca = "Capacity";
|
|
109
|
+
const _Co = "Condition";
|
|
110
|
+
const _Cou = "Count";
|
|
111
|
+
const _Cr = "Create";
|
|
112
|
+
const _Cs = "Csv";
|
|
113
|
+
const _D = "Delimiter";
|
|
114
|
+
const _DB = "DeleteBackup";
|
|
115
|
+
const _DBI = "DeleteBackupInput";
|
|
116
|
+
const _DBIe = "DescribeBackupInput";
|
|
117
|
+
const _DBO = "DeleteBackupOutput";
|
|
118
|
+
const _DBOe = "DescribeBackupOutput";
|
|
119
|
+
const _DBe = "DescribeBackup";
|
|
120
|
+
const _DCB = "DescribeContinuousBackups";
|
|
121
|
+
const _DCBI = "DescribeContinuousBackupsInput";
|
|
122
|
+
const _DCBO = "DescribeContinuousBackupsOutput";
|
|
123
|
+
const _DCI = "DescribeContributorInsights";
|
|
124
|
+
const _DCII = "DescribeContributorInsightsInput";
|
|
125
|
+
const _DCIO = "DescribeContributorInsightsOutput";
|
|
126
|
+
const _DE = "DescribeEndpoints";
|
|
127
|
+
const _DEI = "DescribeExportInput";
|
|
128
|
+
const _DEO = "DescribeExportOutput";
|
|
129
|
+
const _DER = "DescribeEndpointsRequest";
|
|
130
|
+
const _DERe = "DescribeEndpointsResponse";
|
|
131
|
+
const _DEe = "DescribeExport";
|
|
132
|
+
const _DGSIA = "DeleteGlobalSecondaryIndexAction";
|
|
133
|
+
const _DGT = "DescribeGlobalTable";
|
|
134
|
+
const _DGTI = "DescribeGlobalTableInput";
|
|
135
|
+
const _DGTO = "DescribeGlobalTableOutput";
|
|
136
|
+
const _DGTS = "DescribeGlobalTableSettings";
|
|
137
|
+
const _DGTSI = "DescribeGlobalTableSettingsInput";
|
|
138
|
+
const _DGTSO = "DescribeGlobalTableSettingsOutput";
|
|
139
|
+
const _DGTWGMA = "DeleteGlobalTableWitnessGroupMemberAction";
|
|
140
|
+
const _DI = "DeleteItem";
|
|
141
|
+
const _DIE = "DuplicateItemException";
|
|
142
|
+
const _DII = "DeleteItemInput";
|
|
143
|
+
const _DIIe = "DescribeImportInput";
|
|
144
|
+
const _DIO = "DeleteItemOutput";
|
|
145
|
+
const _DIOe = "DescribeImportOutput";
|
|
146
|
+
const _DIe = "DescribeImport";
|
|
147
|
+
const _DKSD = "DescribeKinesisStreamingDestination";
|
|
148
|
+
const _DKSDI = "DescribeKinesisStreamingDestinationInput";
|
|
149
|
+
const _DKSDO = "DescribeKinesisStreamingDestinationOutput";
|
|
150
|
+
const _DKSDi = "DisableKinesisStreamingDestination";
|
|
151
|
+
const _DL = "DescribeLimits";
|
|
152
|
+
const _DLI = "DescribeLimitsInput";
|
|
153
|
+
const _DLO = "DescribeLimitsOutput";
|
|
154
|
+
const _DPE = "DeletionProtectionEnabled";
|
|
155
|
+
const _DR = "DeleteRequest";
|
|
156
|
+
const _DRA = "DeleteReplicaAction";
|
|
157
|
+
const _DRGMA = "DeleteReplicationGroupMemberAction";
|
|
158
|
+
const _DRP = "DeleteResourcePolicy";
|
|
159
|
+
const _DRPI = "DeleteResourcePolicyInput";
|
|
160
|
+
const _DRPO = "DeleteResourcePolicyOutput";
|
|
161
|
+
const _DS = "DestinationStatus";
|
|
162
|
+
const _DSD = "DestinationStatusDescription";
|
|
163
|
+
const _DSI = "DisableScaleIn";
|
|
164
|
+
const _DT = "DeleteTable";
|
|
165
|
+
const _DTI = "DeleteTableInput";
|
|
166
|
+
const _DTIe = "DescribeTableInput";
|
|
167
|
+
const _DTO = "DeleteTableOutput";
|
|
168
|
+
const _DTOe = "DescribeTableOutput";
|
|
169
|
+
const _DTRAS = "DescribeTableReplicaAutoScaling";
|
|
170
|
+
const _DTRASI = "DescribeTableReplicaAutoScalingInput";
|
|
171
|
+
const _DTRASO = "DescribeTableReplicaAutoScalingOutput";
|
|
172
|
+
const _DTTL = "DescribeTimeToLive";
|
|
173
|
+
const _DTTLI = "DescribeTimeToLiveInput";
|
|
174
|
+
const _DTTLO = "DescribeTimeToLiveOutput";
|
|
175
|
+
const _DTe = "DescribeTable";
|
|
176
|
+
const _De = "Delete";
|
|
177
|
+
const _E = "Error";
|
|
178
|
+
const _EA = "ExportArn";
|
|
179
|
+
const _EAM = "ExpectedAttributeMap";
|
|
180
|
+
const _EAN = "ExpressionAttributeNames";
|
|
181
|
+
const _EAV = "ExpressionAttributeValues";
|
|
182
|
+
const _EAVM = "ExpressionAttributeValueMap";
|
|
183
|
+
const _EAVx = "ExpectedAttributeValue";
|
|
184
|
+
const _EC = "ErrorCount";
|
|
185
|
+
const _ECE = "ExportConflictException";
|
|
186
|
+
const _ED = "ExportDescription";
|
|
187
|
+
const _EDx = "ExceptionDescription";
|
|
188
|
+
const _EF = "ExportFormat";
|
|
189
|
+
const _EFT = "ExportFromTime";
|
|
190
|
+
const _EKSC = "EnableKinesisStreamingConfiguration";
|
|
191
|
+
const _EKSD = "EnableKinesisStreamingDestination";
|
|
192
|
+
const _EM = "ExportManifest";
|
|
193
|
+
const _EN = "ExceptionName";
|
|
194
|
+
const _ENFE = "ExportNotFoundException";
|
|
195
|
+
const _ERDT = "EarliestRestorableDateTime";
|
|
196
|
+
const _ERI = "ExpectedRevisionId";
|
|
197
|
+
const _ES = "ExportStatus";
|
|
198
|
+
const _ESBA = "ExclusiveStartBackupArn";
|
|
199
|
+
const _ESGTN = "ExclusiveStartGlobalTableName";
|
|
200
|
+
const _ESI = "ExecuteStatementInput";
|
|
201
|
+
const _ESK = "ExclusiveStartKey";
|
|
202
|
+
const _ESO = "ExecuteStatementOutput";
|
|
203
|
+
const _ESTN = "ExclusiveStartTableName";
|
|
204
|
+
const _ESx = "ExportSummary";
|
|
205
|
+
const _ESxe = "ExecuteStatement";
|
|
206
|
+
const _ESxp = "ExportSummaries";
|
|
207
|
+
const _ET = "EndTime";
|
|
208
|
+
const _ETI = "ExecuteTransactionInput";
|
|
209
|
+
const _ETO = "ExecuteTransactionOutput";
|
|
210
|
+
const _ETT = "ExportToTime";
|
|
211
|
+
const _ETTPIT = "ExportTableToPointInTime";
|
|
212
|
+
const _ETTPITI = "ExportTableToPointInTimeInput";
|
|
213
|
+
const _ETTPITO = "ExportTableToPointInTimeOutput";
|
|
214
|
+
const _ETx = "ExportTime";
|
|
215
|
+
const _ETxe = "ExecuteTransaction";
|
|
216
|
+
const _ETxp = "ExportType";
|
|
217
|
+
const _EVT = "ExportViewType";
|
|
218
|
+
const _En = "Endpoints";
|
|
219
|
+
const _Ena = "Enabled";
|
|
220
|
+
const _End = "Endpoint";
|
|
221
|
+
const _Ex = "Expected";
|
|
222
|
+
const _Exi = "Exists";
|
|
223
|
+
const _FC = "FailureCode";
|
|
224
|
+
const _FCM = "FilterConditionMap";
|
|
225
|
+
const _FE = "FailureException";
|
|
226
|
+
const _FEi = "FilterExpression";
|
|
227
|
+
const _FM = "FailureMessage";
|
|
228
|
+
const _G = "Get";
|
|
229
|
+
const _GI = "GetItem";
|
|
230
|
+
const _GII = "GetItemInput";
|
|
231
|
+
const _GIO = "GetItemOutput";
|
|
232
|
+
const _GRP = "GetResourcePolicy";
|
|
233
|
+
const _GRPI = "GetResourcePolicyInput";
|
|
234
|
+
const _GRPO = "GetResourcePolicyOutput";
|
|
235
|
+
const _GSI = "GlobalSecondaryIndexes";
|
|
236
|
+
const _GSIASU = "GlobalSecondaryIndexAutoScalingUpdate";
|
|
237
|
+
const _GSIASUL = "GlobalSecondaryIndexAutoScalingUpdateList";
|
|
238
|
+
const _GSID = "GlobalSecondaryIndexDescription";
|
|
239
|
+
const _GSIDL = "GlobalSecondaryIndexDescriptionList";
|
|
240
|
+
const _GSII = "GlobalSecondaryIndexInfo";
|
|
241
|
+
const _GSIL = "GlobalSecondaryIndexList";
|
|
242
|
+
const _GSIO = "GlobalSecondaryIndexOverride";
|
|
243
|
+
const _GSIU = "GlobalSecondaryIndexUpdate";
|
|
244
|
+
const _GSIUL = "GlobalSecondaryIndexUpdateList";
|
|
245
|
+
const _GSIUl = "GlobalSecondaryIndexUpdates";
|
|
246
|
+
const _GSIWTD = "GlobalSecondaryIndexWarmThroughputDescription";
|
|
247
|
+
const _GSIl = "GlobalSecondaryIndex";
|
|
248
|
+
const _GT = "GlobalTable";
|
|
249
|
+
const _GTA = "GlobalTableArn";
|
|
250
|
+
const _GTAEE = "GlobalTableAlreadyExistsException";
|
|
251
|
+
const _GTBM = "GlobalTableBillingMode";
|
|
252
|
+
const _GTD = "GlobalTableDescription";
|
|
253
|
+
const _GTGSISU = "GlobalTableGlobalSecondaryIndexSettingsUpdate";
|
|
254
|
+
const _GTGSISUL = "GlobalTableGlobalSecondaryIndexSettingsUpdateList";
|
|
255
|
+
const _GTL = "GlobalTableList";
|
|
256
|
+
const _GTN = "GlobalTableName";
|
|
257
|
+
const _GTNFE = "GlobalTableNotFoundException";
|
|
258
|
+
const _GTPWCASSU = "GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate";
|
|
259
|
+
const _GTPWCU = "GlobalTableProvisionedWriteCapacityUnits";
|
|
260
|
+
const _GTS = "GlobalTableStatus";
|
|
261
|
+
const _GTSA = "GlobalTableSourceArn";
|
|
262
|
+
const _GTSRM = "GlobalTableSettingsReplicationMode";
|
|
263
|
+
const _GTV = "GlobalTableVersion";
|
|
264
|
+
const _GTW = "GlobalTableWitnesses";
|
|
265
|
+
const _GTWD = "GlobalTableWitnessDescription";
|
|
266
|
+
const _GTWDL = "GlobalTableWitnessDescriptionList";
|
|
267
|
+
const _GTWGU = "GlobalTableWitnessGroupUpdate";
|
|
268
|
+
const _GTWGUL = "GlobalTableWitnessGroupUpdateList";
|
|
269
|
+
const _GTWU = "GlobalTableWitnessUpdates";
|
|
270
|
+
const _GTl = "GlobalTables";
|
|
271
|
+
const _HL = "HeaderList";
|
|
272
|
+
const _I = "Item";
|
|
273
|
+
const _IA = "ImportArn";
|
|
274
|
+
const _IAn = "IndexArn";
|
|
275
|
+
const _IC = "ItemCount";
|
|
276
|
+
const _ICE = "ImportConflictException";
|
|
277
|
+
const _ICK = "ItemCollectionKey";
|
|
278
|
+
const _ICKAM = "ItemCollectionKeyAttributeMap";
|
|
279
|
+
const _ICM = "ItemCollectionMetrics";
|
|
280
|
+
const _ICMM = "ItemCollectionMetricsMultiple";
|
|
281
|
+
const _ICMPT = "ItemCollectionMetricsPerTable";
|
|
282
|
+
const _ICSLEE = "ItemCollectionSizeLimitExceededException";
|
|
283
|
+
const _ICT = "InputCompressionType";
|
|
284
|
+
const _IEDT = "InaccessibleEncryptionDateTime";
|
|
285
|
+
const _IEE = "InvalidEndpointException";
|
|
286
|
+
const _IES = "IncrementalExportSpecification";
|
|
287
|
+
const _IETE = "InvalidExportTimeException";
|
|
288
|
+
const _IF = "InputFormat";
|
|
289
|
+
const _IFO = "InputFormatOptions";
|
|
290
|
+
const _IIC = "ImportedItemCount";
|
|
291
|
+
const _IL = "ItemList";
|
|
292
|
+
const _IN = "IndexName";
|
|
293
|
+
const _INFE = "ImportNotFoundException";
|
|
294
|
+
const _INFEn = "IndexNotFoundException";
|
|
295
|
+
const _IPME = "IdempotentParameterMismatchException";
|
|
296
|
+
const _IR = "ItemResponse";
|
|
297
|
+
const _IRL = "ItemResponseList";
|
|
298
|
+
const _IRTE = "InvalidRestoreTimeException";
|
|
299
|
+
const _IS = "IndexStatus";
|
|
300
|
+
const _ISB = "IndexSizeBytes";
|
|
301
|
+
const _ISE = "InternalServerError";
|
|
302
|
+
const _ISL = "ImportSummaryList";
|
|
303
|
+
const _ISm = "ImportSummary";
|
|
304
|
+
const _ISmp = "ImportStatus";
|
|
305
|
+
const _IT = "ImportTable";
|
|
306
|
+
const _ITD = "ImportTableDescription";
|
|
307
|
+
const _ITI = "ImportTableInput";
|
|
308
|
+
const _ITO = "ImportTableOutput";
|
|
309
|
+
const _It = "Items";
|
|
310
|
+
const _K = "Key";
|
|
311
|
+
const _KAA = "KeysAndAttributes";
|
|
312
|
+
const _KC = "KeyConditions";
|
|
313
|
+
const _KCE = "KeyConditionExpression";
|
|
314
|
+
const _KDSD = "KinesisDataStreamDestinations";
|
|
315
|
+
const _KDSDi = "KinesisDataStreamDestination";
|
|
316
|
+
const _KL = "KeyList";
|
|
317
|
+
const _KMSMKA = "KMSMasterKeyArn";
|
|
318
|
+
const _KMSMKI = "KMSMasterKeyId";
|
|
319
|
+
const _KS = "KeySchema";
|
|
320
|
+
const _KSDI = "KinesisStreamingDestinationInput";
|
|
321
|
+
const _KSDO = "KinesisStreamingDestinationOutput";
|
|
322
|
+
const _KSE = "KeySchemaElement";
|
|
323
|
+
const _KT = "KeyType";
|
|
324
|
+
const _Ke = "Keys";
|
|
325
|
+
const _L = "Limit";
|
|
326
|
+
const _LAV = "ListAttributeValue";
|
|
327
|
+
const _LB = "ListBackups";
|
|
328
|
+
const _LBI = "ListBackupsInput";
|
|
329
|
+
const _LBO = "ListBackupsOutput";
|
|
330
|
+
const _LCI = "ListContributorInsights";
|
|
331
|
+
const _LCII = "ListContributorInsightsInput";
|
|
332
|
+
const _LCIO = "ListContributorInsightsOutput";
|
|
333
|
+
const _LDDT = "LastDecreaseDateTime";
|
|
334
|
+
const _LE = "ListExports";
|
|
335
|
+
const _LEBA = "LastEvaluatedBackupArn";
|
|
336
|
+
const _LEE = "LimitExceededException";
|
|
337
|
+
const _LEGTN = "LastEvaluatedGlobalTableName";
|
|
338
|
+
const _LEI = "ListExportsInput";
|
|
339
|
+
const _LEK = "LastEvaluatedKey";
|
|
340
|
+
const _LEO = "ListExportsOutput";
|
|
341
|
+
const _LETN = "LastEvaluatedTableName";
|
|
342
|
+
const _LGT = "ListGlobalTables";
|
|
343
|
+
const _LGTI = "ListGlobalTablesInput";
|
|
344
|
+
const _LGTO = "ListGlobalTablesOutput";
|
|
345
|
+
const _LI = "ListImports";
|
|
346
|
+
const _LIDT = "LastIncreaseDateTime";
|
|
347
|
+
const _LII = "ListImportsInput";
|
|
348
|
+
const _LIO = "ListImportsOutput";
|
|
349
|
+
const _LRDT = "LatestRestorableDateTime";
|
|
350
|
+
const _LSA = "LatestStreamArn";
|
|
351
|
+
const _LSI = "LocalSecondaryIndexes";
|
|
352
|
+
const _LSID = "LocalSecondaryIndexDescription";
|
|
353
|
+
const _LSIDL = "LocalSecondaryIndexDescriptionList";
|
|
354
|
+
const _LSII = "LocalSecondaryIndexInfo";
|
|
355
|
+
const _LSIL = "LocalSecondaryIndexList";
|
|
356
|
+
const _LSIO = "LocalSecondaryIndexOverride";
|
|
357
|
+
const _LSIo = "LocalSecondaryIndex";
|
|
358
|
+
const _LSL = "LatestStreamLabel";
|
|
359
|
+
const _LT = "ListTables";
|
|
360
|
+
const _LTI = "ListTablesInput";
|
|
361
|
+
const _LTO = "ListTablesOutput";
|
|
362
|
+
const _LTOR = "ListTagsOfResource";
|
|
363
|
+
const _LTORI = "ListTagsOfResourceInput";
|
|
364
|
+
const _LTORO = "ListTagsOfResourceOutput";
|
|
365
|
+
const _LUDT = "LastUpdateDateTime";
|
|
366
|
+
const _LUTPPRDT = "LastUpdateToPayPerRequestDateTime";
|
|
367
|
+
const _L_ = "L";
|
|
368
|
+
const _M = "Message";
|
|
369
|
+
const _MAV = "MapAttributeValue";
|
|
370
|
+
const _MR = "MaxResults";
|
|
371
|
+
const _MRC = "MultiRegionConsistency";
|
|
372
|
+
const _MRRU = "MaxReadRequestUnits";
|
|
373
|
+
const _MU = "MinimumUnits";
|
|
374
|
+
const _MUa = "MaximumUnits";
|
|
375
|
+
const _MWRU = "MaxWriteRequestUnits";
|
|
376
|
+
const _M_ = "M";
|
|
377
|
+
const _N = "N";
|
|
378
|
+
const _NKA = "NonKeyAttributes";
|
|
379
|
+
const _NODT = "NumberOfDecreasesToday";
|
|
380
|
+
const _NS = "NS";
|
|
381
|
+
const _NT = "NextToken";
|
|
382
|
+
const _NULL = "NULL";
|
|
383
|
+
const _ODT = "OnDemandThroughput";
|
|
384
|
+
const _ODTO = "OnDemandThroughputOverride";
|
|
385
|
+
const _P = "Parameters";
|
|
386
|
+
const _PE = "ProjectionExpression";
|
|
387
|
+
const _PI = "PutItem";
|
|
388
|
+
const _PIC = "ProcessedItemCount";
|
|
389
|
+
const _PII = "PutItemInput";
|
|
390
|
+
const _PIIAM = "PutItemInputAttributeMap";
|
|
391
|
+
const _PIO = "PutItemOutput";
|
|
392
|
+
const _PITRD = "PointInTimeRecoveryDescription";
|
|
393
|
+
const _PITRE = "PointInTimeRecoveryEnabled";
|
|
394
|
+
const _PITRS = "PointInTimeRecoveryStatus";
|
|
395
|
+
const _PITRSo = "PointInTimeRecoverySpecification";
|
|
396
|
+
const _PITRUE = "PointInTimeRecoveryUnavailableException";
|
|
397
|
+
const _PN = "PolicyName";
|
|
398
|
+
const _PNFE = "PolicyNotFoundException";
|
|
399
|
+
const _PQLBR = "PartiQLBatchRequest";
|
|
400
|
+
const _PQLBRa = "PartiQLBatchResponse";
|
|
401
|
+
const _PR = "PutRequest";
|
|
402
|
+
const _PRCASS = "ProvisionedReadCapacityAutoScalingSettings";
|
|
403
|
+
const _PRCASSU = "ProvisionedReadCapacityAutoScalingSettingsUpdate";
|
|
404
|
+
const _PRCASU = "ProvisionedReadCapacityAutoScalingUpdate";
|
|
405
|
+
const _PRCU = "ProvisionedReadCapacityUnits";
|
|
406
|
+
const _PRP = "PutResourcePolicy";
|
|
407
|
+
const _PRPI = "PutResourcePolicyInput";
|
|
408
|
+
const _PRPO = "PutResourcePolicyOutput";
|
|
409
|
+
const _PS = "PageSize";
|
|
410
|
+
const _PSB = "ProcessedSizeBytes";
|
|
411
|
+
const _PSP = "PreparedStatementParameters";
|
|
412
|
+
const _PSa = "ParameterizedStatement";
|
|
413
|
+
const _PSar = "ParameterizedStatements";
|
|
414
|
+
const _PT = "ProvisionedThroughput";
|
|
415
|
+
const _PTD = "ProvisionedThroughputDescription";
|
|
416
|
+
const _PTEE = "ProvisionedThroughputExceededException";
|
|
417
|
+
const _PTO = "ProvisionedThroughputOverride";
|
|
418
|
+
const _PTr = "ProjectionType";
|
|
419
|
+
const _PWCASS = "ProvisionedWriteCapacityAutoScalingSettings";
|
|
420
|
+
const _PWCASSU = "ProvisionedWriteCapacityAutoScalingSettingsUpdate";
|
|
421
|
+
const _PWCASU = "ProvisionedWriteCapacityAutoScalingUpdate";
|
|
422
|
+
const _PWCU = "ProvisionedWriteCapacityUnits";
|
|
423
|
+
const _Po = "Policy";
|
|
424
|
+
const _Pr = "Projection";
|
|
425
|
+
const _Pu = "Put";
|
|
426
|
+
const _Q = "Query";
|
|
427
|
+
const _QF = "QueryFilter";
|
|
428
|
+
const _QI = "QueryInput";
|
|
429
|
+
const _QO = "QueryOutput";
|
|
430
|
+
const _R = "Responses";
|
|
431
|
+
const _RA = "ResourceArn";
|
|
432
|
+
const _RAEE = "ReplicaAlreadyExistsException";
|
|
433
|
+
const _RASD = "ReplicaAutoScalingDescription";
|
|
434
|
+
const _RASDL = "ReplicaAutoScalingDescriptionList";
|
|
435
|
+
const _RASU = "ReplicaAutoScalingUpdate";
|
|
436
|
+
const _RASUL = "ReplicaAutoScalingUpdateList";
|
|
437
|
+
const _RBMS = "ReplicaBillingModeSummary";
|
|
438
|
+
const _RCC = "ReturnConsumedCapacity";
|
|
439
|
+
const _RCU = "ReadCapacityUnits";
|
|
440
|
+
const _RD = "ReplicaDescription";
|
|
441
|
+
const _RDL = "ReplicaDescriptionList";
|
|
442
|
+
const _RDT = "RestoreDateTime";
|
|
443
|
+
const _RG = "ReplicationGroup";
|
|
444
|
+
const _RGSI = "ReplicaGlobalSecondaryIndex";
|
|
445
|
+
const _RGSIASD = "ReplicaGlobalSecondaryIndexAutoScalingDescription";
|
|
446
|
+
const _RGSIASDL = "ReplicaGlobalSecondaryIndexAutoScalingDescriptionList";
|
|
447
|
+
const _RGSIASU = "ReplicaGlobalSecondaryIndexAutoScalingUpdate";
|
|
448
|
+
const _RGSIASUL = "ReplicaGlobalSecondaryIndexAutoScalingUpdateList";
|
|
449
|
+
const _RGSID = "ReplicaGlobalSecondaryIndexDescription";
|
|
450
|
+
const _RGSIDL = "ReplicaGlobalSecondaryIndexDescriptionList";
|
|
451
|
+
const _RGSIL = "ReplicaGlobalSecondaryIndexList";
|
|
452
|
+
const _RGSIS = "ReplicaGlobalSecondaryIndexSettings";
|
|
453
|
+
const _RGSISD = "ReplicaGlobalSecondaryIndexSettingsDescription";
|
|
454
|
+
const _RGSISDL = "ReplicaGlobalSecondaryIndexSettingsDescriptionList";
|
|
455
|
+
const _RGSISU = "ReplicaGlobalSecondaryIndexSettingsUpdate";
|
|
456
|
+
const _RGSISUL = "ReplicaGlobalSecondaryIndexSettingsUpdateList";
|
|
457
|
+
const _RGSIU = "ReplicaGlobalSecondaryIndexUpdates";
|
|
458
|
+
const _RGU = "ReplicationGroupUpdate";
|
|
459
|
+
const _RGUL = "ReplicationGroupUpdateList";
|
|
460
|
+
const _RI = "RequestItems";
|
|
461
|
+
const _RICM = "ReturnItemCollectionMetrics";
|
|
462
|
+
const _RIDT = "ReplicaInaccessibleDateTime";
|
|
463
|
+
const _RIP = "RestoreInProgress";
|
|
464
|
+
const _RIUE = "ResourceInUseException";
|
|
465
|
+
const _RIe = "RevisionId";
|
|
466
|
+
const _RL = "ReplicaList";
|
|
467
|
+
const _RLE = "RequestLimitExceeded";
|
|
468
|
+
const _RN = "RegionName";
|
|
469
|
+
const _RNFE = "ReplicaNotFoundException";
|
|
470
|
+
const _RNFEe = "ResourceNotFoundException";
|
|
471
|
+
const _RP = "ResourcePolicy";
|
|
472
|
+
const _RPID = "RecoveryPeriodInDays";
|
|
473
|
+
const _RPRCASS = "ReplicaProvisionedReadCapacityAutoScalingSettings";
|
|
474
|
+
const _RPRCASSU = "ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate";
|
|
475
|
+
const _RPRCASU = "ReplicaProvisionedReadCapacityAutoScalingUpdate";
|
|
476
|
+
const _RPRCU = "ReplicaProvisionedReadCapacityUnits";
|
|
477
|
+
const _RPWCASS = "ReplicaProvisionedWriteCapacityAutoScalingSettings";
|
|
478
|
+
const _RPWCU = "ReplicaProvisionedWriteCapacityUnits";
|
|
479
|
+
const _RS = "ReplicaSettings";
|
|
480
|
+
const _RSD = "ReplicaStatusDescription";
|
|
481
|
+
const _RSDL = "ReplicaSettingsDescriptionList";
|
|
482
|
+
const _RSDe = "ReplicaSettingsDescription";
|
|
483
|
+
const _RSPP = "ReplicaStatusPercentProgress";
|
|
484
|
+
const _RSU = "ReplicaSettingsUpdate";
|
|
485
|
+
const _RSUL = "ReplicaSettingsUpdateList";
|
|
486
|
+
const _RSe = "ReplicaStatus";
|
|
487
|
+
const _RSes = "RestoreSummary";
|
|
488
|
+
const _RTC = "ReplicaTableClass";
|
|
489
|
+
const _RTCS = "ReplicaTableClassSummary";
|
|
490
|
+
const _RTFB = "RestoreTableFromBackup";
|
|
491
|
+
const _RTFBI = "RestoreTableFromBackupInput";
|
|
492
|
+
const _RTFBO = "RestoreTableFromBackupOutput";
|
|
493
|
+
const _RTTPIT = "RestoreTableToPointInTime";
|
|
494
|
+
const _RTTPITI = "RestoreTableToPointInTimeInput";
|
|
495
|
+
const _RTTPITO = "RestoreTableToPointInTimeOutput";
|
|
496
|
+
const _RU = "ReplicaUpdate";
|
|
497
|
+
const _RUL = "ReplicaUpdateList";
|
|
498
|
+
const _RUPS = "ReadUnitsPerSecond";
|
|
499
|
+
const _RUe = "ReplicaUpdates";
|
|
500
|
+
const _RV = "ReturnValues";
|
|
501
|
+
const _RVOCCF = "ReturnValuesOnConditionCheckFailure";
|
|
502
|
+
const _RWCE = "ReplicatedWriteConflictException";
|
|
503
|
+
const _Re = "Replica";
|
|
504
|
+
const _Rep = "Replicas";
|
|
505
|
+
const _S = "Statements";
|
|
506
|
+
const _SA = "StreamArn";
|
|
507
|
+
const _SB = "S3Bucket";
|
|
508
|
+
const _SBA = "SourceBackupArn";
|
|
509
|
+
const _SBO = "S3BucketOwner";
|
|
510
|
+
const _SBS = "S3BucketSource";
|
|
511
|
+
const _SC = "ScannedCount";
|
|
512
|
+
const _SD = "StreamDescription";
|
|
513
|
+
const _SE = "StreamEnabled";
|
|
514
|
+
const _SERGB = "SizeEstimateRangeGB";
|
|
515
|
+
const _SF = "ScanFilter";
|
|
516
|
+
const _SI = "ScanInput";
|
|
517
|
+
const _SIC = "ScaleInCooldown";
|
|
518
|
+
const _SICM = "SecondaryIndexesCapacityMap";
|
|
519
|
+
const _SIF = "ScanIndexForward";
|
|
520
|
+
const _SKP = "S3KeyPrefix";
|
|
521
|
+
const _SO = "ScanOutput";
|
|
522
|
+
const _SOC = "ScaleOutCooldown";
|
|
523
|
+
const _SP = "ScalingPolicies";
|
|
524
|
+
const _SPU = "ScalingPolicyUpdate";
|
|
525
|
+
const _SPr = "S3Prefix";
|
|
526
|
+
const _SS = "StreamSpecification";
|
|
527
|
+
const _SSA = "S3SseAlgorithm";
|
|
528
|
+
const _SSED = "SSEDescription";
|
|
529
|
+
const _SSES = "SSESpecification";
|
|
530
|
+
const _SSESO = "SSESpecificationOverride";
|
|
531
|
+
const _SSET = "SSEType";
|
|
532
|
+
const _SSKKI = "S3SseKmsKeyId";
|
|
533
|
+
const _SS_ = "SS";
|
|
534
|
+
const _ST = "StartTime";
|
|
535
|
+
const _STA = "SourceTableArn";
|
|
536
|
+
const _STD = "SourceTableDetails";
|
|
537
|
+
const _STFD = "SourceTableFeatureDetails";
|
|
538
|
+
const _STN = "SourceTableName";
|
|
539
|
+
const _SVT = "StreamViewType";
|
|
540
|
+
const _S_ = "S";
|
|
541
|
+
const _Sc = "Scan";
|
|
542
|
+
const _Se = "Select";
|
|
543
|
+
const _Seg = "Segment";
|
|
544
|
+
const _St = "Statement";
|
|
545
|
+
const _Sta = "Status";
|
|
546
|
+
const _T = "Table";
|
|
547
|
+
const _TA = "TableArn";
|
|
548
|
+
const _TAEE = "TableAlreadyExistsException";
|
|
549
|
+
const _TASD = "TableAutoScalingDescription";
|
|
550
|
+
const _TC = "TableClass";
|
|
551
|
+
const _TCDT = "TableCreationDateTime";
|
|
552
|
+
const _TCE = "TransactionCanceledException";
|
|
553
|
+
const _TCEr = "TransactionConflictException";
|
|
554
|
+
const _TCO = "TableClassOverride";
|
|
555
|
+
const _TCP = "TableCreationParameters";
|
|
556
|
+
const _TCS = "TableClassSummary";
|
|
557
|
+
const _TD = "TableDescription";
|
|
558
|
+
const _TE = "ThrottlingException";
|
|
559
|
+
const _TGI = "TransactGetItem";
|
|
560
|
+
const _TGII = "TransactGetItemsInput";
|
|
561
|
+
const _TGIL = "TransactGetItemList";
|
|
562
|
+
const _TGIO = "TransactGetItemsOutput";
|
|
563
|
+
const _TGIr = "TransactGetItems";
|
|
564
|
+
const _TI = "TableId";
|
|
565
|
+
const _TIPE = "TransactionInProgressException";
|
|
566
|
+
const _TIUE = "TableInUseException";
|
|
567
|
+
const _TIr = "TransactItems";
|
|
568
|
+
const _TK = "TagKeys";
|
|
569
|
+
const _TL = "TagList";
|
|
570
|
+
const _TMRCU = "TableMaxReadCapacityUnits";
|
|
571
|
+
const _TMWCU = "TableMaxWriteCapacityUnits";
|
|
572
|
+
const _TN = "TableName";
|
|
573
|
+
const _TNFE = "TableNotFoundException";
|
|
574
|
+
const _TNa = "TableNames";
|
|
575
|
+
const _TR = "ThrottlingReasons";
|
|
576
|
+
const _TRI = "TagResourceInput";
|
|
577
|
+
const _TRL = "ThrottlingReasonList";
|
|
578
|
+
const _TRLB = "TimeRangeLowerBound";
|
|
579
|
+
const _TRUB = "TimeRangeUpperBound";
|
|
580
|
+
const _TRa = "TagResource";
|
|
581
|
+
const _TRh = "ThrottlingReason";
|
|
582
|
+
const _TS = "TransactStatements";
|
|
583
|
+
const _TSB = "TableSizeBytes";
|
|
584
|
+
const _TSa = "TableStatus";
|
|
585
|
+
const _TSo = "TotalSegments";
|
|
586
|
+
const _TTLD = "TimeToLiveDescription";
|
|
587
|
+
const _TTLS = "TimeToLiveStatus";
|
|
588
|
+
const _TTLSi = "TimeToLiveSpecification";
|
|
589
|
+
const _TTN = "TargetTableName";
|
|
590
|
+
const _TTSPC = "TargetTrackingScalingPolicyConfiguration";
|
|
591
|
+
const _TV = "TargetValue";
|
|
592
|
+
const _TWI = "TransactWriteItem";
|
|
593
|
+
const _TWII = "TransactWriteItemsInput";
|
|
594
|
+
const _TWIL = "TransactWriteItemList";
|
|
595
|
+
const _TWIO = "TransactWriteItemsOutput";
|
|
596
|
+
const _TWIr = "TransactWriteItems";
|
|
597
|
+
const _TWTD = "TableWarmThroughputDescription";
|
|
598
|
+
const _Ta = "Tags";
|
|
599
|
+
const _Tag = "Tag";
|
|
600
|
+
const _U = "Update";
|
|
601
|
+
const _UCB = "UpdateContinuousBackups";
|
|
602
|
+
const _UCBI = "UpdateContinuousBackupsInput";
|
|
603
|
+
const _UCBO = "UpdateContinuousBackupsOutput";
|
|
604
|
+
const _UCI = "UpdateContributorInsights";
|
|
605
|
+
const _UCII = "UpdateContributorInsightsInput";
|
|
606
|
+
const _UCIO = "UpdateContributorInsightsOutput";
|
|
607
|
+
const _UE = "UpdateExpression";
|
|
608
|
+
const _UGSIA = "UpdateGlobalSecondaryIndexAction";
|
|
609
|
+
const _UGT = "UpdateGlobalTable";
|
|
610
|
+
const _UGTI = "UpdateGlobalTableInput";
|
|
611
|
+
const _UGTO = "UpdateGlobalTableOutput";
|
|
612
|
+
const _UGTS = "UpdateGlobalTableSettings";
|
|
613
|
+
const _UGTSI = "UpdateGlobalTableSettingsInput";
|
|
614
|
+
const _UGTSO = "UpdateGlobalTableSettingsOutput";
|
|
615
|
+
const _UI = "UnprocessedItems";
|
|
616
|
+
const _UII = "UpdateItemInput";
|
|
617
|
+
const _UIO = "UpdateItemOutput";
|
|
618
|
+
const _UIp = "UpdateItem";
|
|
619
|
+
const _UK = "UnprocessedKeys";
|
|
620
|
+
const _UKSC = "UpdateKinesisStreamingConfiguration";
|
|
621
|
+
const _UKSD = "UpdateKinesisStreamingDestination";
|
|
622
|
+
const _UKSDI = "UpdateKinesisStreamingDestinationInput";
|
|
623
|
+
const _UKSDO = "UpdateKinesisStreamingDestinationOutput";
|
|
624
|
+
const _ULRT = "UseLatestRestorableTime";
|
|
625
|
+
const _UR = "UntagResource";
|
|
626
|
+
const _URGMA = "UpdateReplicationGroupMemberAction";
|
|
627
|
+
const _URI = "UntagResourceInput";
|
|
628
|
+
const _UT = "UpdateTable";
|
|
629
|
+
const _UTI = "UpdateTableInput";
|
|
630
|
+
const _UTO = "UpdateTableOutput";
|
|
631
|
+
const _UTRAS = "UpdateTableReplicaAutoScaling";
|
|
632
|
+
const _UTRASI = "UpdateTableReplicaAutoScalingInput";
|
|
633
|
+
const _UTRASO = "UpdateTableReplicaAutoScalingOutput";
|
|
634
|
+
const _UTTL = "UpdateTimeToLive";
|
|
635
|
+
const _UTTLI = "UpdateTimeToLiveInput";
|
|
636
|
+
const _UTTLO = "UpdateTimeToLiveOutput";
|
|
637
|
+
const _V = "Value";
|
|
638
|
+
const _WCU = "WriteCapacityUnits";
|
|
639
|
+
const _WR = "WriteRequest";
|
|
640
|
+
const _WRr = "WriteRequests";
|
|
641
|
+
const _WS = "WitnessStatus";
|
|
642
|
+
const _WT = "WarmThroughput";
|
|
643
|
+
const _WUPS = "WriteUnitsPerSecond";
|
|
644
|
+
const _aQE = "awsQueryError";
|
|
645
|
+
const _c = "client";
|
|
646
|
+
const _e = "error";
|
|
647
|
+
const _hE = "httpError";
|
|
648
|
+
const _hH = "httpHeader";
|
|
649
|
+
const _m = "message";
|
|
650
|
+
const _r = "reason";
|
|
651
|
+
const _re = "resource";
|
|
652
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.dynamodb";
|
|
653
|
+
const _se = "server";
|
|
654
|
+
const _tR = "throttlingReasons";
|
|
655
|
+
const _xacrsra = "x-amz-confirm-remove-self-resource-access";
|
|
656
|
+
const n0 = "com.amazonaws.dynamodb";
|
|
657
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
658
|
+
import { DynamoDBServiceException } from "../models/DynamoDBServiceException";
|
|
659
|
+
import { BackupInUseException, BackupNotFoundException, ConditionalCheckFailedException, ContinuousBackupsUnavailableException, DuplicateItemException, ExportConflictException, ExportNotFoundException, GlobalTableAlreadyExistsException, GlobalTableNotFoundException, IdempotentParameterMismatchException, ImportConflictException, ImportNotFoundException, IndexNotFoundException, InternalServerError, InvalidEndpointException, InvalidExportTimeException, InvalidRestoreTimeException, ItemCollectionSizeLimitExceededException, LimitExceededException, PointInTimeRecoveryUnavailableException, PolicyNotFoundException, ProvisionedThroughputExceededException, ReplicaAlreadyExistsException, ReplicaNotFoundException, ReplicatedWriteConflictException, RequestLimitExceeded, ResourceInUseException, ResourceNotFoundException, TableAlreadyExistsException, TableInUseException, TableNotFoundException, ThrottlingException, TransactionCanceledException, TransactionConflictException, TransactionInProgressException, } from "../models/errors";
|
|
660
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
661
|
+
export var DynamoDBServiceException$ = [-3, _s, "DynamoDBServiceException", 0, [], []];
|
|
662
|
+
_s_registry.registerError(DynamoDBServiceException$, DynamoDBServiceException);
|
|
663
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
664
|
+
export var BackupInUseException$ = [-3, n0, _BIUE,
|
|
665
|
+
{ [_e]: _c },
|
|
666
|
+
[_m],
|
|
667
|
+
[0]
|
|
668
|
+
];
|
|
669
|
+
n0_registry.registerError(BackupInUseException$, BackupInUseException);
|
|
670
|
+
export var BackupNotFoundException$ = [-3, n0, _BNFE,
|
|
671
|
+
{ [_e]: _c },
|
|
672
|
+
[_m],
|
|
673
|
+
[0]
|
|
674
|
+
];
|
|
675
|
+
n0_registry.registerError(BackupNotFoundException$, BackupNotFoundException);
|
|
676
|
+
export var ConditionalCheckFailedException$ = [-3, n0, _CCFE,
|
|
677
|
+
{ [_e]: _c },
|
|
678
|
+
[_m, _I],
|
|
679
|
+
[0, () => AttributeMap]
|
|
680
|
+
];
|
|
681
|
+
n0_registry.registerError(ConditionalCheckFailedException$, ConditionalCheckFailedException);
|
|
682
|
+
export var ContinuousBackupsUnavailableException$ = [-3, n0, _CBUE,
|
|
683
|
+
{ [_e]: _c },
|
|
684
|
+
[_m],
|
|
685
|
+
[0]
|
|
686
|
+
];
|
|
687
|
+
n0_registry.registerError(ContinuousBackupsUnavailableException$, ContinuousBackupsUnavailableException);
|
|
688
|
+
export var DuplicateItemException$ = [-3, n0, _DIE,
|
|
689
|
+
{ [_e]: _c },
|
|
690
|
+
[_m],
|
|
691
|
+
[0]
|
|
692
|
+
];
|
|
693
|
+
n0_registry.registerError(DuplicateItemException$, DuplicateItemException);
|
|
694
|
+
export var ExportConflictException$ = [-3, n0, _ECE,
|
|
695
|
+
{ [_e]: _c },
|
|
696
|
+
[_m],
|
|
697
|
+
[0]
|
|
698
|
+
];
|
|
699
|
+
n0_registry.registerError(ExportConflictException$, ExportConflictException);
|
|
700
|
+
export var ExportNotFoundException$ = [-3, n0, _ENFE,
|
|
701
|
+
{ [_e]: _c },
|
|
702
|
+
[_m],
|
|
703
|
+
[0]
|
|
704
|
+
];
|
|
705
|
+
n0_registry.registerError(ExportNotFoundException$, ExportNotFoundException);
|
|
706
|
+
export var GlobalTableAlreadyExistsException$ = [-3, n0, _GTAEE,
|
|
707
|
+
{ [_e]: _c },
|
|
708
|
+
[_m],
|
|
709
|
+
[0]
|
|
710
|
+
];
|
|
711
|
+
n0_registry.registerError(GlobalTableAlreadyExistsException$, GlobalTableAlreadyExistsException);
|
|
712
|
+
export var GlobalTableNotFoundException$ = [-3, n0, _GTNFE,
|
|
713
|
+
{ [_e]: _c },
|
|
714
|
+
[_m],
|
|
715
|
+
[0]
|
|
716
|
+
];
|
|
717
|
+
n0_registry.registerError(GlobalTableNotFoundException$, GlobalTableNotFoundException);
|
|
718
|
+
export var IdempotentParameterMismatchException$ = [-3, n0, _IPME,
|
|
719
|
+
{ [_e]: _c },
|
|
720
|
+
[_M],
|
|
721
|
+
[0]
|
|
722
|
+
];
|
|
723
|
+
n0_registry.registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
724
|
+
export var ImportConflictException$ = [-3, n0, _ICE,
|
|
725
|
+
{ [_e]: _c },
|
|
726
|
+
[_m],
|
|
727
|
+
[0]
|
|
728
|
+
];
|
|
729
|
+
n0_registry.registerError(ImportConflictException$, ImportConflictException);
|
|
730
|
+
export var ImportNotFoundException$ = [-3, n0, _INFE,
|
|
731
|
+
{ [_e]: _c },
|
|
732
|
+
[_m],
|
|
733
|
+
[0]
|
|
734
|
+
];
|
|
735
|
+
n0_registry.registerError(ImportNotFoundException$, ImportNotFoundException);
|
|
736
|
+
export var IndexNotFoundException$ = [-3, n0, _INFEn,
|
|
737
|
+
{ [_e]: _c },
|
|
738
|
+
[_m],
|
|
739
|
+
[0]
|
|
740
|
+
];
|
|
741
|
+
n0_registry.registerError(IndexNotFoundException$, IndexNotFoundException);
|
|
742
|
+
export var InternalServerError$ = [-3, n0, _ISE,
|
|
743
|
+
{ [_e]: _se },
|
|
744
|
+
[_m],
|
|
745
|
+
[0]
|
|
746
|
+
];
|
|
747
|
+
n0_registry.registerError(InternalServerError$, InternalServerError);
|
|
748
|
+
export var InvalidEndpointException$ = [-3, n0, _IEE,
|
|
749
|
+
{ [_e]: _c, [_hE]: 421 },
|
|
750
|
+
[_M],
|
|
751
|
+
[0]
|
|
752
|
+
];
|
|
753
|
+
n0_registry.registerError(InvalidEndpointException$, InvalidEndpointException);
|
|
754
|
+
export var InvalidExportTimeException$ = [-3, n0, _IETE,
|
|
755
|
+
{ [_e]: _c },
|
|
756
|
+
[_m],
|
|
757
|
+
[0]
|
|
758
|
+
];
|
|
759
|
+
n0_registry.registerError(InvalidExportTimeException$, InvalidExportTimeException);
|
|
760
|
+
export var InvalidRestoreTimeException$ = [-3, n0, _IRTE,
|
|
761
|
+
{ [_e]: _c },
|
|
762
|
+
[_m],
|
|
763
|
+
[0]
|
|
764
|
+
];
|
|
765
|
+
n0_registry.registerError(InvalidRestoreTimeException$, InvalidRestoreTimeException);
|
|
766
|
+
export var ItemCollectionSizeLimitExceededException$ = [-3, n0, _ICSLEE,
|
|
767
|
+
{ [_e]: _c },
|
|
768
|
+
[_m],
|
|
769
|
+
[0]
|
|
770
|
+
];
|
|
771
|
+
n0_registry.registerError(ItemCollectionSizeLimitExceededException$, ItemCollectionSizeLimitExceededException);
|
|
772
|
+
export var LimitExceededException$ = [-3, n0, _LEE,
|
|
773
|
+
{ [_e]: _c },
|
|
774
|
+
[_m],
|
|
775
|
+
[0]
|
|
776
|
+
];
|
|
777
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
778
|
+
export var PointInTimeRecoveryUnavailableException$ = [-3, n0, _PITRUE,
|
|
779
|
+
{ [_e]: _c },
|
|
780
|
+
[_m],
|
|
781
|
+
[0]
|
|
782
|
+
];
|
|
783
|
+
n0_registry.registerError(PointInTimeRecoveryUnavailableException$, PointInTimeRecoveryUnavailableException);
|
|
784
|
+
export var PolicyNotFoundException$ = [-3, n0, _PNFE,
|
|
785
|
+
{ [_e]: _c },
|
|
786
|
+
[_m],
|
|
787
|
+
[0]
|
|
788
|
+
];
|
|
789
|
+
n0_registry.registerError(PolicyNotFoundException$, PolicyNotFoundException);
|
|
790
|
+
export var ProvisionedThroughputExceededException$ = [-3, n0, _PTEE,
|
|
791
|
+
{ [_e]: _c },
|
|
792
|
+
[_m, _TR],
|
|
793
|
+
[0, () => ThrottlingReasonList]
|
|
794
|
+
];
|
|
795
|
+
n0_registry.registerError(ProvisionedThroughputExceededException$, ProvisionedThroughputExceededException);
|
|
796
|
+
export var ReplicaAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
797
|
+
{ [_e]: _c },
|
|
798
|
+
[_m],
|
|
799
|
+
[0]
|
|
800
|
+
];
|
|
801
|
+
n0_registry.registerError(ReplicaAlreadyExistsException$, ReplicaAlreadyExistsException);
|
|
802
|
+
export var ReplicaNotFoundException$ = [-3, n0, _RNFE,
|
|
803
|
+
{ [_e]: _c },
|
|
804
|
+
[_m],
|
|
805
|
+
[0]
|
|
806
|
+
];
|
|
807
|
+
n0_registry.registerError(ReplicaNotFoundException$, ReplicaNotFoundException);
|
|
808
|
+
export var ReplicatedWriteConflictException$ = [-3, n0, _RWCE,
|
|
809
|
+
{ [_e]: _c },
|
|
810
|
+
[_m],
|
|
811
|
+
[0]
|
|
812
|
+
];
|
|
813
|
+
n0_registry.registerError(ReplicatedWriteConflictException$, ReplicatedWriteConflictException);
|
|
814
|
+
export var RequestLimitExceeded$ = [-3, n0, _RLE,
|
|
815
|
+
{ [_e]: _c },
|
|
816
|
+
[_m, _TR],
|
|
817
|
+
[0, () => ThrottlingReasonList]
|
|
818
|
+
];
|
|
819
|
+
n0_registry.registerError(RequestLimitExceeded$, RequestLimitExceeded);
|
|
820
|
+
export var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
821
|
+
{ [_e]: _c },
|
|
822
|
+
[_m],
|
|
823
|
+
[0]
|
|
824
|
+
];
|
|
825
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
826
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFEe,
|
|
827
|
+
{ [_e]: _c },
|
|
828
|
+
[_m],
|
|
829
|
+
[0]
|
|
830
|
+
];
|
|
831
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
832
|
+
export var TableAlreadyExistsException$ = [-3, n0, _TAEE,
|
|
833
|
+
{ [_e]: _c },
|
|
834
|
+
[_m],
|
|
835
|
+
[0]
|
|
836
|
+
];
|
|
837
|
+
n0_registry.registerError(TableAlreadyExistsException$, TableAlreadyExistsException);
|
|
838
|
+
export var TableInUseException$ = [-3, n0, _TIUE,
|
|
839
|
+
{ [_e]: _c },
|
|
840
|
+
[_m],
|
|
841
|
+
[0]
|
|
842
|
+
];
|
|
843
|
+
n0_registry.registerError(TableInUseException$, TableInUseException);
|
|
844
|
+
export var TableNotFoundException$ = [-3, n0, _TNFE,
|
|
845
|
+
{ [_e]: _c },
|
|
846
|
+
[_m],
|
|
847
|
+
[0]
|
|
848
|
+
];
|
|
849
|
+
n0_registry.registerError(TableNotFoundException$, TableNotFoundException);
|
|
850
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
851
|
+
{ [_aQE]: [`Throttling`, 400], [_e]: _c, [_hE]: 400 },
|
|
852
|
+
[_m, _tR],
|
|
853
|
+
[0, () => ThrottlingReasonList]
|
|
854
|
+
];
|
|
855
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
856
|
+
export var TransactionCanceledException$ = [-3, n0, _TCE,
|
|
857
|
+
{ [_e]: _c },
|
|
858
|
+
[_M, _CR],
|
|
859
|
+
[0, () => CancellationReasonList]
|
|
860
|
+
];
|
|
861
|
+
n0_registry.registerError(TransactionCanceledException$, TransactionCanceledException);
|
|
862
|
+
export var TransactionConflictException$ = [-3, n0, _TCEr,
|
|
863
|
+
{ [_e]: _c },
|
|
864
|
+
[_m],
|
|
865
|
+
[0]
|
|
866
|
+
];
|
|
867
|
+
n0_registry.registerError(TransactionConflictException$, TransactionConflictException);
|
|
868
|
+
export var TransactionInProgressException$ = [-3, n0, _TIPE,
|
|
869
|
+
{ [_e]: _c },
|
|
870
|
+
[_M],
|
|
871
|
+
[0]
|
|
872
|
+
];
|
|
873
|
+
n0_registry.registerError(TransactionInProgressException$, TransactionInProgressException);
|
|
874
|
+
export const errorTypeRegistries = [
|
|
875
|
+
_s_registry,
|
|
876
|
+
n0_registry,
|
|
877
|
+
];
|
|
878
|
+
export var ArchivalSummary$ = [3, n0, _AS,
|
|
879
|
+
0,
|
|
880
|
+
[_ADT, _AR, _ABA],
|
|
881
|
+
[4, 0, 0]
|
|
882
|
+
];
|
|
883
|
+
export var AttributeDefinition$ = [3, n0, _AD,
|
|
884
|
+
0,
|
|
885
|
+
[_AN, _AT],
|
|
886
|
+
[0, 0], 2
|
|
887
|
+
];
|
|
888
|
+
export var AttributeValueUpdate$ = [3, n0, _AVU,
|
|
889
|
+
0,
|
|
890
|
+
[_V, _A],
|
|
891
|
+
[() => AttributeValue$, 0]
|
|
892
|
+
];
|
|
893
|
+
export var AutoScalingPolicyDescription$ = [3, n0, _ASPD,
|
|
894
|
+
0,
|
|
895
|
+
[_PN, _TTSPC],
|
|
896
|
+
[0, () => AutoScalingTargetTrackingScalingPolicyConfigurationDescription$]
|
|
897
|
+
];
|
|
898
|
+
export var AutoScalingPolicyUpdate$ = [3, n0, _ASPU,
|
|
899
|
+
0,
|
|
900
|
+
[_TTSPC, _PN],
|
|
901
|
+
[() => AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$, 0], 1
|
|
902
|
+
];
|
|
903
|
+
export var AutoScalingSettingsDescription$ = [3, n0, _ASSD,
|
|
904
|
+
0,
|
|
905
|
+
[_MU, _MUa, _ASD, _ASRA, _SP],
|
|
906
|
+
[1, 1, 2, 0, () => AutoScalingPolicyDescriptionList]
|
|
907
|
+
];
|
|
908
|
+
export var AutoScalingSettingsUpdate$ = [3, n0, _ASSU,
|
|
909
|
+
0,
|
|
910
|
+
[_MU, _MUa, _ASD, _ASRA, _SPU],
|
|
911
|
+
[1, 1, 2, 0, () => AutoScalingPolicyUpdate$]
|
|
912
|
+
];
|
|
913
|
+
export var AutoScalingTargetTrackingScalingPolicyConfigurationDescription$ = [3, n0, _ASTTSPCD,
|
|
914
|
+
0,
|
|
915
|
+
[_TV, _DSI, _SIC, _SOC],
|
|
916
|
+
[1, 2, 1, 1], 1
|
|
917
|
+
];
|
|
918
|
+
export var AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$ = [3, n0, _ASTTSPCU,
|
|
919
|
+
0,
|
|
920
|
+
[_TV, _DSI, _SIC, _SOC],
|
|
921
|
+
[1, 2, 1, 1], 1
|
|
922
|
+
];
|
|
923
|
+
export var BackupDescription$ = [3, n0, _BD,
|
|
924
|
+
0,
|
|
925
|
+
[_BDa, _STD, _STFD],
|
|
926
|
+
[() => BackupDetails$, () => SourceTableDetails$, () => SourceTableFeatureDetails$]
|
|
927
|
+
];
|
|
928
|
+
export var BackupDetails$ = [3, n0, _BDa,
|
|
929
|
+
0,
|
|
930
|
+
[_BA, _BN, _BS, _BT, _BCDT, _BSB, _BEDT],
|
|
931
|
+
[0, 0, 0, 0, 4, 1, 4], 5
|
|
932
|
+
];
|
|
933
|
+
export var BackupSummary$ = [3, n0, _BSa,
|
|
934
|
+
0,
|
|
935
|
+
[_TN, _TI, _TA, _BA, _BN, _BCDT, _BEDT, _BS, _BT, _BSB],
|
|
936
|
+
[0, 0, 0, 0, 0, 4, 4, 0, 0, 1]
|
|
937
|
+
];
|
|
938
|
+
export var BatchExecuteStatementInput$ = [3, n0, _BESI,
|
|
939
|
+
0,
|
|
940
|
+
[_S, _RCC],
|
|
941
|
+
[() => PartiQLBatchRequest, 0], 1
|
|
942
|
+
];
|
|
943
|
+
export var BatchExecuteStatementOutput$ = [3, n0, _BESO,
|
|
944
|
+
0,
|
|
945
|
+
[_R, _CC],
|
|
946
|
+
[() => PartiQLBatchResponse, () => ConsumedCapacityMultiple]
|
|
947
|
+
];
|
|
948
|
+
export var BatchGetItemInput$ = [3, n0, _BGII,
|
|
949
|
+
0,
|
|
950
|
+
[_RI, _RCC],
|
|
951
|
+
[() => BatchGetRequestMap, 0], 1
|
|
952
|
+
];
|
|
953
|
+
export var BatchGetItemOutput$ = [3, n0, _BGIO,
|
|
954
|
+
0,
|
|
955
|
+
[_R, _UK, _CC],
|
|
956
|
+
[() => BatchGetResponseMap, () => BatchGetRequestMap, () => ConsumedCapacityMultiple]
|
|
957
|
+
];
|
|
958
|
+
export var BatchStatementError$ = [3, n0, _BSE,
|
|
959
|
+
0,
|
|
960
|
+
[_C, _M, _I],
|
|
961
|
+
[0, 0, () => AttributeMap]
|
|
962
|
+
];
|
|
963
|
+
export var BatchStatementRequest$ = [3, n0, _BSR,
|
|
964
|
+
0,
|
|
965
|
+
[_St, _P, _CRo, _RVOCCF],
|
|
966
|
+
[0, () => PreparedStatementParameters, 2, 0], 1
|
|
967
|
+
];
|
|
968
|
+
export var BatchStatementResponse$ = [3, n0, _BSRa,
|
|
969
|
+
0,
|
|
970
|
+
[_E, _TN, _I],
|
|
971
|
+
[() => BatchStatementError$, 0, () => AttributeMap]
|
|
972
|
+
];
|
|
973
|
+
export var BatchWriteItemInput$ = [3, n0, _BWII,
|
|
974
|
+
0,
|
|
975
|
+
[_RI, _RCC, _RICM],
|
|
976
|
+
[() => BatchWriteItemRequestMap, 0, 0], 1
|
|
977
|
+
];
|
|
978
|
+
export var BatchWriteItemOutput$ = [3, n0, _BWIO,
|
|
979
|
+
0,
|
|
980
|
+
[_UI, _ICM, _CC],
|
|
981
|
+
[() => BatchWriteItemRequestMap, () => ItemCollectionMetricsPerTable, () => ConsumedCapacityMultiple]
|
|
982
|
+
];
|
|
983
|
+
export var BillingModeSummary$ = [3, n0, _BMS,
|
|
984
|
+
0,
|
|
985
|
+
[_BM, _LUTPPRDT],
|
|
986
|
+
[0, 4]
|
|
987
|
+
];
|
|
988
|
+
export var CancellationReason$ = [3, n0, _CRa,
|
|
989
|
+
0,
|
|
990
|
+
[_I, _C, _M],
|
|
991
|
+
[() => AttributeMap, 0, 0]
|
|
992
|
+
];
|
|
993
|
+
export var Capacity$ = [3, n0, _Ca,
|
|
994
|
+
0,
|
|
995
|
+
[_RCU, _WCU, _CU],
|
|
996
|
+
[1, 1, 1]
|
|
997
|
+
];
|
|
998
|
+
export var Condition$ = [3, n0, _Co,
|
|
999
|
+
0,
|
|
1000
|
+
[_CO, _AVL],
|
|
1001
|
+
[0, () => AttributeValueList], 1
|
|
1002
|
+
];
|
|
1003
|
+
export var ConditionCheck$ = [3, n0, _CCo,
|
|
1004
|
+
0,
|
|
1005
|
+
[_K, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
1006
|
+
[() => Key, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 3
|
|
1007
|
+
];
|
|
1008
|
+
export var ConsumedCapacity$ = [3, n0, _CC,
|
|
1009
|
+
0,
|
|
1010
|
+
[_TN, _CU, _RCU, _WCU, _T, _LSI, _GSI],
|
|
1011
|
+
[0, 1, 1, 1, () => Capacity$, () => SecondaryIndexesCapacityMap, () => SecondaryIndexesCapacityMap]
|
|
1012
|
+
];
|
|
1013
|
+
export var ContinuousBackupsDescription$ = [3, n0, _CBD,
|
|
1014
|
+
0,
|
|
1015
|
+
[_CBS, _PITRD],
|
|
1016
|
+
[0, () => PointInTimeRecoveryDescription$], 1
|
|
1017
|
+
];
|
|
1018
|
+
export var ContributorInsightsSummary$ = [3, n0, _CIS,
|
|
1019
|
+
0,
|
|
1020
|
+
[_TN, _IN, _CISo, _CIM],
|
|
1021
|
+
[0, 0, 0, 0]
|
|
1022
|
+
];
|
|
1023
|
+
export var CreateBackupInput$ = [3, n0, _CBI,
|
|
1024
|
+
0,
|
|
1025
|
+
[_TN, _BN],
|
|
1026
|
+
[0, 0], 2
|
|
1027
|
+
];
|
|
1028
|
+
export var CreateBackupOutput$ = [3, n0, _CBO,
|
|
1029
|
+
0,
|
|
1030
|
+
[_BDa],
|
|
1031
|
+
[() => BackupDetails$]
|
|
1032
|
+
];
|
|
1033
|
+
export var CreateGlobalSecondaryIndexAction$ = [3, n0, _CGSIA,
|
|
1034
|
+
0,
|
|
1035
|
+
[_IN, _KS, _Pr, _PT, _ODT, _WT],
|
|
1036
|
+
[0, () => KeySchema, () => Projection$, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => WarmThroughput$], 3
|
|
1037
|
+
];
|
|
1038
|
+
export var CreateGlobalTableInput$ = [3, n0, _CGTI,
|
|
1039
|
+
0,
|
|
1040
|
+
[_GTN, _RG],
|
|
1041
|
+
[0, () => ReplicaList], 2
|
|
1042
|
+
];
|
|
1043
|
+
export var CreateGlobalTableOutput$ = [3, n0, _CGTO,
|
|
1044
|
+
0,
|
|
1045
|
+
[_GTD],
|
|
1046
|
+
[() => GlobalTableDescription$]
|
|
1047
|
+
];
|
|
1048
|
+
export var CreateGlobalTableWitnessGroupMemberAction$ = [3, n0, _CGTWGMA,
|
|
1049
|
+
0,
|
|
1050
|
+
[_RN],
|
|
1051
|
+
[0], 1
|
|
1052
|
+
];
|
|
1053
|
+
export var CreateReplicaAction$ = [3, n0, _CRA,
|
|
1054
|
+
0,
|
|
1055
|
+
[_RN],
|
|
1056
|
+
[0], 1
|
|
1057
|
+
];
|
|
1058
|
+
export var CreateReplicationGroupMemberAction$ = [3, n0, _CRGMA,
|
|
1059
|
+
0,
|
|
1060
|
+
[_RN, _KMSMKI, _PTO, _ODTO, _GSI, _TCO],
|
|
1061
|
+
[0, 0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$, () => ReplicaGlobalSecondaryIndexList, 0], 1
|
|
1062
|
+
];
|
|
1063
|
+
export var CreateTableInput$ = [3, n0, _CTI,
|
|
1064
|
+
0,
|
|
1065
|
+
[_TN, _ADt, _KS, _LSI, _GSI, _BM, _PT, _SS, _SSES, _Ta, _TC, _DPE, _WT, _RP, _ODT, _GTSA, _GTSRM],
|
|
1066
|
+
[0, () => AttributeDefinitions, () => KeySchema, () => LocalSecondaryIndexList, () => GlobalSecondaryIndexList, 0, () => ProvisionedThroughput$, () => StreamSpecification$, () => SSESpecification$, () => TagList, 0, 2, () => WarmThroughput$, 0, () => OnDemandThroughput$, 0, 0], 1
|
|
1067
|
+
];
|
|
1068
|
+
export var CreateTableOutput$ = [3, n0, _CTO,
|
|
1069
|
+
0,
|
|
1070
|
+
[_TD],
|
|
1071
|
+
[() => TableDescription$]
|
|
1072
|
+
];
|
|
1073
|
+
export var CsvOptions$ = [3, n0, _COs,
|
|
1074
|
+
0,
|
|
1075
|
+
[_D, _HL],
|
|
1076
|
+
[0, 64 | 0]
|
|
1077
|
+
];
|
|
1078
|
+
export var Delete$ = [3, n0, _De,
|
|
1079
|
+
0,
|
|
1080
|
+
[_K, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
1081
|
+
[() => Key, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 2
|
|
1082
|
+
];
|
|
1083
|
+
export var DeleteBackupInput$ = [3, n0, _DBI,
|
|
1084
|
+
0,
|
|
1085
|
+
[_BA],
|
|
1086
|
+
[0], 1
|
|
1087
|
+
];
|
|
1088
|
+
export var DeleteBackupOutput$ = [3, n0, _DBO,
|
|
1089
|
+
0,
|
|
1090
|
+
[_BD],
|
|
1091
|
+
[() => BackupDescription$]
|
|
1092
|
+
];
|
|
1093
|
+
export var DeleteGlobalSecondaryIndexAction$ = [3, n0, _DGSIA,
|
|
1094
|
+
0,
|
|
1095
|
+
[_IN],
|
|
1096
|
+
[0], 1
|
|
1097
|
+
];
|
|
1098
|
+
export var DeleteGlobalTableWitnessGroupMemberAction$ = [3, n0, _DGTWGMA,
|
|
1099
|
+
0,
|
|
1100
|
+
[_RN],
|
|
1101
|
+
[0], 1
|
|
1102
|
+
];
|
|
1103
|
+
export var DeleteItemInput$ = [3, n0, _DII,
|
|
1104
|
+
0,
|
|
1105
|
+
[_TN, _K, _Ex, _COo, _RV, _RCC, _RICM, _CE, _EAN, _EAV, _RVOCCF],
|
|
1106
|
+
[0, () => Key, () => ExpectedAttributeMap, 0, 0, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 2
|
|
1107
|
+
];
|
|
1108
|
+
export var DeleteItemOutput$ = [3, n0, _DIO,
|
|
1109
|
+
0,
|
|
1110
|
+
[_At, _CC, _ICM],
|
|
1111
|
+
[() => AttributeMap, () => ConsumedCapacity$, () => ItemCollectionMetrics$]
|
|
1112
|
+
];
|
|
1113
|
+
export var DeleteReplicaAction$ = [3, n0, _DRA,
|
|
1114
|
+
0,
|
|
1115
|
+
[_RN],
|
|
1116
|
+
[0], 1
|
|
1117
|
+
];
|
|
1118
|
+
export var DeleteReplicationGroupMemberAction$ = [3, n0, _DRGMA,
|
|
1119
|
+
0,
|
|
1120
|
+
[_RN],
|
|
1121
|
+
[0], 1
|
|
1122
|
+
];
|
|
1123
|
+
export var DeleteRequest$ = [3, n0, _DR,
|
|
1124
|
+
0,
|
|
1125
|
+
[_K],
|
|
1126
|
+
[() => Key], 1
|
|
1127
|
+
];
|
|
1128
|
+
export var DeleteResourcePolicyInput$ = [3, n0, _DRPI,
|
|
1129
|
+
0,
|
|
1130
|
+
[_RA, _ERI],
|
|
1131
|
+
[0, 0], 1
|
|
1132
|
+
];
|
|
1133
|
+
export var DeleteResourcePolicyOutput$ = [3, n0, _DRPO,
|
|
1134
|
+
0,
|
|
1135
|
+
[_RIe],
|
|
1136
|
+
[0]
|
|
1137
|
+
];
|
|
1138
|
+
export var DeleteTableInput$ = [3, n0, _DTI,
|
|
1139
|
+
0,
|
|
1140
|
+
[_TN],
|
|
1141
|
+
[0], 1
|
|
1142
|
+
];
|
|
1143
|
+
export var DeleteTableOutput$ = [3, n0, _DTO,
|
|
1144
|
+
0,
|
|
1145
|
+
[_TD],
|
|
1146
|
+
[() => TableDescription$]
|
|
1147
|
+
];
|
|
1148
|
+
export var DescribeBackupInput$ = [3, n0, _DBIe,
|
|
1149
|
+
0,
|
|
1150
|
+
[_BA],
|
|
1151
|
+
[0], 1
|
|
1152
|
+
];
|
|
1153
|
+
export var DescribeBackupOutput$ = [3, n0, _DBOe,
|
|
1154
|
+
0,
|
|
1155
|
+
[_BD],
|
|
1156
|
+
[() => BackupDescription$]
|
|
1157
|
+
];
|
|
1158
|
+
export var DescribeContinuousBackupsInput$ = [3, n0, _DCBI,
|
|
1159
|
+
0,
|
|
1160
|
+
[_TN],
|
|
1161
|
+
[0], 1
|
|
1162
|
+
];
|
|
1163
|
+
export var DescribeContinuousBackupsOutput$ = [3, n0, _DCBO,
|
|
1164
|
+
0,
|
|
1165
|
+
[_CBD],
|
|
1166
|
+
[() => ContinuousBackupsDescription$]
|
|
1167
|
+
];
|
|
1168
|
+
export var DescribeContributorInsightsInput$ = [3, n0, _DCII,
|
|
1169
|
+
0,
|
|
1170
|
+
[_TN, _IN],
|
|
1171
|
+
[0, 0], 1
|
|
1172
|
+
];
|
|
1173
|
+
export var DescribeContributorInsightsOutput$ = [3, n0, _DCIO,
|
|
1174
|
+
0,
|
|
1175
|
+
[_TN, _IN, _CIRL, _CISo, _LUDT, _FE, _CIM],
|
|
1176
|
+
[0, 0, 64 | 0, 0, 4, () => FailureException$, 0]
|
|
1177
|
+
];
|
|
1178
|
+
export var DescribeEndpointsRequest$ = [3, n0, _DER,
|
|
1179
|
+
0,
|
|
1180
|
+
[],
|
|
1181
|
+
[]
|
|
1182
|
+
];
|
|
1183
|
+
export var DescribeEndpointsResponse$ = [3, n0, _DERe,
|
|
1184
|
+
0,
|
|
1185
|
+
[_En],
|
|
1186
|
+
[() => Endpoints], 1
|
|
1187
|
+
];
|
|
1188
|
+
export var DescribeExportInput$ = [3, n0, _DEI,
|
|
1189
|
+
0,
|
|
1190
|
+
[_EA],
|
|
1191
|
+
[0], 1
|
|
1192
|
+
];
|
|
1193
|
+
export var DescribeExportOutput$ = [3, n0, _DEO,
|
|
1194
|
+
0,
|
|
1195
|
+
[_ED],
|
|
1196
|
+
[() => ExportDescription$]
|
|
1197
|
+
];
|
|
1198
|
+
export var DescribeGlobalTableInput$ = [3, n0, _DGTI,
|
|
1199
|
+
0,
|
|
1200
|
+
[_GTN],
|
|
1201
|
+
[0], 1
|
|
1202
|
+
];
|
|
1203
|
+
export var DescribeGlobalTableOutput$ = [3, n0, _DGTO,
|
|
1204
|
+
0,
|
|
1205
|
+
[_GTD],
|
|
1206
|
+
[() => GlobalTableDescription$]
|
|
1207
|
+
];
|
|
1208
|
+
export var DescribeGlobalTableSettingsInput$ = [3, n0, _DGTSI,
|
|
1209
|
+
0,
|
|
1210
|
+
[_GTN],
|
|
1211
|
+
[0], 1
|
|
1212
|
+
];
|
|
1213
|
+
export var DescribeGlobalTableSettingsOutput$ = [3, n0, _DGTSO,
|
|
1214
|
+
0,
|
|
1215
|
+
[_GTN, _RS],
|
|
1216
|
+
[0, () => ReplicaSettingsDescriptionList]
|
|
1217
|
+
];
|
|
1218
|
+
export var DescribeImportInput$ = [3, n0, _DIIe,
|
|
1219
|
+
0,
|
|
1220
|
+
[_IA],
|
|
1221
|
+
[0], 1
|
|
1222
|
+
];
|
|
1223
|
+
export var DescribeImportOutput$ = [3, n0, _DIOe,
|
|
1224
|
+
0,
|
|
1225
|
+
[_ITD],
|
|
1226
|
+
[() => ImportTableDescription$], 1
|
|
1227
|
+
];
|
|
1228
|
+
export var DescribeKinesisStreamingDestinationInput$ = [3, n0, _DKSDI,
|
|
1229
|
+
0,
|
|
1230
|
+
[_TN],
|
|
1231
|
+
[0], 1
|
|
1232
|
+
];
|
|
1233
|
+
export var DescribeKinesisStreamingDestinationOutput$ = [3, n0, _DKSDO,
|
|
1234
|
+
0,
|
|
1235
|
+
[_TN, _KDSD],
|
|
1236
|
+
[0, () => KinesisDataStreamDestinations]
|
|
1237
|
+
];
|
|
1238
|
+
export var DescribeLimitsInput$ = [3, n0, _DLI,
|
|
1239
|
+
0,
|
|
1240
|
+
[],
|
|
1241
|
+
[]
|
|
1242
|
+
];
|
|
1243
|
+
export var DescribeLimitsOutput$ = [3, n0, _DLO,
|
|
1244
|
+
0,
|
|
1245
|
+
[_AMRCU, _AMWCU, _TMRCU, _TMWCU],
|
|
1246
|
+
[1, 1, 1, 1]
|
|
1247
|
+
];
|
|
1248
|
+
export var DescribeTableInput$ = [3, n0, _DTIe,
|
|
1249
|
+
0,
|
|
1250
|
+
[_TN],
|
|
1251
|
+
[0], 1
|
|
1252
|
+
];
|
|
1253
|
+
export var DescribeTableOutput$ = [3, n0, _DTOe,
|
|
1254
|
+
0,
|
|
1255
|
+
[_T],
|
|
1256
|
+
[() => TableDescription$]
|
|
1257
|
+
];
|
|
1258
|
+
export var DescribeTableReplicaAutoScalingInput$ = [3, n0, _DTRASI,
|
|
1259
|
+
0,
|
|
1260
|
+
[_TN],
|
|
1261
|
+
[0], 1
|
|
1262
|
+
];
|
|
1263
|
+
export var DescribeTableReplicaAutoScalingOutput$ = [3, n0, _DTRASO,
|
|
1264
|
+
0,
|
|
1265
|
+
[_TASD],
|
|
1266
|
+
[() => TableAutoScalingDescription$]
|
|
1267
|
+
];
|
|
1268
|
+
export var DescribeTimeToLiveInput$ = [3, n0, _DTTLI,
|
|
1269
|
+
0,
|
|
1270
|
+
[_TN],
|
|
1271
|
+
[0], 1
|
|
1272
|
+
];
|
|
1273
|
+
export var DescribeTimeToLiveOutput$ = [3, n0, _DTTLO,
|
|
1274
|
+
0,
|
|
1275
|
+
[_TTLD],
|
|
1276
|
+
[() => TimeToLiveDescription$]
|
|
1277
|
+
];
|
|
1278
|
+
export var EnableKinesisStreamingConfiguration$ = [3, n0, _EKSC,
|
|
1279
|
+
0,
|
|
1280
|
+
[_ACDTP],
|
|
1281
|
+
[0]
|
|
1282
|
+
];
|
|
1283
|
+
export var Endpoint$ = [3, n0, _End,
|
|
1284
|
+
0,
|
|
1285
|
+
[_Ad, _CPIM],
|
|
1286
|
+
[0, 1], 2
|
|
1287
|
+
];
|
|
1288
|
+
export var ExecuteStatementInput$ = [3, n0, _ESI,
|
|
1289
|
+
0,
|
|
1290
|
+
[_St, _P, _CRo, _NT, _RCC, _L, _RVOCCF],
|
|
1291
|
+
[0, () => PreparedStatementParameters, 2, 0, 0, 1, 0], 1
|
|
1292
|
+
];
|
|
1293
|
+
export var ExecuteStatementOutput$ = [3, n0, _ESO,
|
|
1294
|
+
0,
|
|
1295
|
+
[_It, _NT, _CC, _LEK],
|
|
1296
|
+
[() => ItemList, 0, () => ConsumedCapacity$, () => Key]
|
|
1297
|
+
];
|
|
1298
|
+
export var ExecuteTransactionInput$ = [3, n0, _ETI,
|
|
1299
|
+
0,
|
|
1300
|
+
[_TS, _CRT, _RCC],
|
|
1301
|
+
[() => ParameterizedStatements, [0, 4], 0], 1
|
|
1302
|
+
];
|
|
1303
|
+
export var ExecuteTransactionOutput$ = [3, n0, _ETO,
|
|
1304
|
+
0,
|
|
1305
|
+
[_R, _CC],
|
|
1306
|
+
[() => ItemResponseList, () => ConsumedCapacityMultiple]
|
|
1307
|
+
];
|
|
1308
|
+
export var ExpectedAttributeValue$ = [3, n0, _EAVx,
|
|
1309
|
+
0,
|
|
1310
|
+
[_V, _Exi, _CO, _AVL],
|
|
1311
|
+
[() => AttributeValue$, 2, 0, () => AttributeValueList]
|
|
1312
|
+
];
|
|
1313
|
+
export var ExportDescription$ = [3, n0, _ED,
|
|
1314
|
+
0,
|
|
1315
|
+
[_EA, _ES, _ST, _ET, _EM, _TA, _TI, _ETx, _CT, _SB, _SBO, _SPr, _SSA, _SSKKI, _FC, _FM, _EF, _BSBi, _IC, _ETxp, _IES],
|
|
1316
|
+
[0, 0, 4, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, () => IncrementalExportSpecification$]
|
|
1317
|
+
];
|
|
1318
|
+
export var ExportSummary$ = [3, n0, _ESx,
|
|
1319
|
+
0,
|
|
1320
|
+
[_EA, _ES, _ETxp],
|
|
1321
|
+
[0, 0, 0]
|
|
1322
|
+
];
|
|
1323
|
+
export var ExportTableToPointInTimeInput$ = [3, n0, _ETTPITI,
|
|
1324
|
+
0,
|
|
1325
|
+
[_TA, _SB, _ETx, _CT, _SBO, _SPr, _SSA, _SSKKI, _EF, _ETxp, _IES],
|
|
1326
|
+
[0, 0, 4, [0, 4], 0, 0, 0, 0, 0, 0, () => IncrementalExportSpecification$], 2
|
|
1327
|
+
];
|
|
1328
|
+
export var ExportTableToPointInTimeOutput$ = [3, n0, _ETTPITO,
|
|
1329
|
+
0,
|
|
1330
|
+
[_ED],
|
|
1331
|
+
[() => ExportDescription$]
|
|
1332
|
+
];
|
|
1333
|
+
export var FailureException$ = [3, n0, _FE,
|
|
1334
|
+
0,
|
|
1335
|
+
[_EN, _EDx],
|
|
1336
|
+
[0, 0]
|
|
1337
|
+
];
|
|
1338
|
+
export var Get$ = [3, n0, _G,
|
|
1339
|
+
0,
|
|
1340
|
+
[_K, _TN, _PE, _EAN],
|
|
1341
|
+
[() => Key, 0, 0, 128 | 0], 2
|
|
1342
|
+
];
|
|
1343
|
+
export var GetItemInput$ = [3, n0, _GII,
|
|
1344
|
+
0,
|
|
1345
|
+
[_TN, _K, _ATG, _CRo, _RCC, _PE, _EAN],
|
|
1346
|
+
[0, () => Key, 64 | 0, 2, 0, 0, 128 | 0], 2
|
|
1347
|
+
];
|
|
1348
|
+
export var GetItemOutput$ = [3, n0, _GIO,
|
|
1349
|
+
0,
|
|
1350
|
+
[_I, _CC],
|
|
1351
|
+
[() => AttributeMap, () => ConsumedCapacity$]
|
|
1352
|
+
];
|
|
1353
|
+
export var GetResourcePolicyInput$ = [3, n0, _GRPI,
|
|
1354
|
+
0,
|
|
1355
|
+
[_RA],
|
|
1356
|
+
[0], 1
|
|
1357
|
+
];
|
|
1358
|
+
export var GetResourcePolicyOutput$ = [3, n0, _GRPO,
|
|
1359
|
+
0,
|
|
1360
|
+
[_Po, _RIe],
|
|
1361
|
+
[0, 0]
|
|
1362
|
+
];
|
|
1363
|
+
export var GlobalSecondaryIndex$ = [3, n0, _GSIl,
|
|
1364
|
+
0,
|
|
1365
|
+
[_IN, _KS, _Pr, _PT, _ODT, _WT],
|
|
1366
|
+
[0, () => KeySchema, () => Projection$, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => WarmThroughput$], 3
|
|
1367
|
+
];
|
|
1368
|
+
export var GlobalSecondaryIndexAutoScalingUpdate$ = [3, n0, _GSIASU,
|
|
1369
|
+
0,
|
|
1370
|
+
[_IN, _PWCASU],
|
|
1371
|
+
[0, () => AutoScalingSettingsUpdate$]
|
|
1372
|
+
];
|
|
1373
|
+
export var GlobalSecondaryIndexDescription$ = [3, n0, _GSID,
|
|
1374
|
+
0,
|
|
1375
|
+
[_IN, _KS, _Pr, _IS, _B, _PT, _ISB, _IC, _IAn, _ODT, _WT],
|
|
1376
|
+
[0, () => KeySchema, () => Projection$, 0, 2, () => ProvisionedThroughputDescription$, 1, 1, 0, () => OnDemandThroughput$, () => GlobalSecondaryIndexWarmThroughputDescription$]
|
|
1377
|
+
];
|
|
1378
|
+
export var GlobalSecondaryIndexInfo$ = [3, n0, _GSII,
|
|
1379
|
+
0,
|
|
1380
|
+
[_IN, _KS, _Pr, _PT, _ODT],
|
|
1381
|
+
[0, () => KeySchema, () => Projection$, () => ProvisionedThroughput$, () => OnDemandThroughput$]
|
|
1382
|
+
];
|
|
1383
|
+
export var GlobalSecondaryIndexUpdate$ = [3, n0, _GSIU,
|
|
1384
|
+
0,
|
|
1385
|
+
[_U, _Cr, _De],
|
|
1386
|
+
[() => UpdateGlobalSecondaryIndexAction$, () => CreateGlobalSecondaryIndexAction$, () => DeleteGlobalSecondaryIndexAction$]
|
|
1387
|
+
];
|
|
1388
|
+
export var GlobalSecondaryIndexWarmThroughputDescription$ = [3, n0, _GSIWTD,
|
|
1389
|
+
0,
|
|
1390
|
+
[_RUPS, _WUPS, _Sta],
|
|
1391
|
+
[1, 1, 0]
|
|
1392
|
+
];
|
|
1393
|
+
export var GlobalTable$ = [3, n0, _GT,
|
|
1394
|
+
0,
|
|
1395
|
+
[_GTN, _RG],
|
|
1396
|
+
[0, () => ReplicaList]
|
|
1397
|
+
];
|
|
1398
|
+
export var GlobalTableDescription$ = [3, n0, _GTD,
|
|
1399
|
+
0,
|
|
1400
|
+
[_RG, _GTA, _CDT, _GTS, _GTN],
|
|
1401
|
+
[() => ReplicaDescriptionList, 0, 4, 0, 0]
|
|
1402
|
+
];
|
|
1403
|
+
export var GlobalTableGlobalSecondaryIndexSettingsUpdate$ = [3, n0, _GTGSISU,
|
|
1404
|
+
0,
|
|
1405
|
+
[_IN, _PWCU, _PWCASSU],
|
|
1406
|
+
[0, 1, () => AutoScalingSettingsUpdate$], 1
|
|
1407
|
+
];
|
|
1408
|
+
export var GlobalTableWitnessDescription$ = [3, n0, _GTWD,
|
|
1409
|
+
0,
|
|
1410
|
+
[_RN, _WS],
|
|
1411
|
+
[0, 0]
|
|
1412
|
+
];
|
|
1413
|
+
export var GlobalTableWitnessGroupUpdate$ = [3, n0, _GTWGU,
|
|
1414
|
+
0,
|
|
1415
|
+
[_Cr, _De],
|
|
1416
|
+
[() => CreateGlobalTableWitnessGroupMemberAction$, () => DeleteGlobalTableWitnessGroupMemberAction$]
|
|
1417
|
+
];
|
|
1418
|
+
export var ImportSummary$ = [3, n0, _ISm,
|
|
1419
|
+
0,
|
|
1420
|
+
[_IA, _ISmp, _TA, _SBS, _CWLGA, _IF, _ST, _ET],
|
|
1421
|
+
[0, 0, 0, () => S3BucketSource$, 0, 0, 4, 4]
|
|
1422
|
+
];
|
|
1423
|
+
export var ImportTableDescription$ = [3, n0, _ITD,
|
|
1424
|
+
0,
|
|
1425
|
+
[_IA, _ISmp, _TA, _TI, _CT, _SBS, _EC, _CWLGA, _IF, _IFO, _ICT, _TCP, _ST, _ET, _PSB, _PIC, _IIC, _FC, _FM],
|
|
1426
|
+
[0, 0, 0, 0, 0, () => S3BucketSource$, 1, 0, 0, () => InputFormatOptions$, 0, () => TableCreationParameters$, 4, 4, 1, 1, 1, 0, 0]
|
|
1427
|
+
];
|
|
1428
|
+
export var ImportTableInput$ = [3, n0, _ITI,
|
|
1429
|
+
0,
|
|
1430
|
+
[_SBS, _IF, _TCP, _CT, _IFO, _ICT],
|
|
1431
|
+
[() => S3BucketSource$, 0, () => TableCreationParameters$, [0, 4], () => InputFormatOptions$, 0], 3
|
|
1432
|
+
];
|
|
1433
|
+
export var ImportTableOutput$ = [3, n0, _ITO,
|
|
1434
|
+
0,
|
|
1435
|
+
[_ITD],
|
|
1436
|
+
[() => ImportTableDescription$], 1
|
|
1437
|
+
];
|
|
1438
|
+
export var IncrementalExportSpecification$ = [3, n0, _IES,
|
|
1439
|
+
0,
|
|
1440
|
+
[_EFT, _ETT, _EVT],
|
|
1441
|
+
[4, 4, 0]
|
|
1442
|
+
];
|
|
1443
|
+
export var InputFormatOptions$ = [3, n0, _IFO,
|
|
1444
|
+
0,
|
|
1445
|
+
[_Cs],
|
|
1446
|
+
[() => CsvOptions$]
|
|
1447
|
+
];
|
|
1448
|
+
export var ItemCollectionMetrics$ = [3, n0, _ICM,
|
|
1449
|
+
0,
|
|
1450
|
+
[_ICK, _SERGB],
|
|
1451
|
+
[() => ItemCollectionKeyAttributeMap, 64 | 1]
|
|
1452
|
+
];
|
|
1453
|
+
export var ItemResponse$ = [3, n0, _IR,
|
|
1454
|
+
0,
|
|
1455
|
+
[_I],
|
|
1456
|
+
[() => AttributeMap]
|
|
1457
|
+
];
|
|
1458
|
+
export var KeysAndAttributes$ = [3, n0, _KAA,
|
|
1459
|
+
0,
|
|
1460
|
+
[_Ke, _ATG, _CRo, _PE, _EAN],
|
|
1461
|
+
[() => KeyList, 64 | 0, 2, 0, 128 | 0], 1
|
|
1462
|
+
];
|
|
1463
|
+
export var KeySchemaElement$ = [3, n0, _KSE,
|
|
1464
|
+
0,
|
|
1465
|
+
[_AN, _KT],
|
|
1466
|
+
[0, 0], 2
|
|
1467
|
+
];
|
|
1468
|
+
export var KinesisDataStreamDestination$ = [3, n0, _KDSDi,
|
|
1469
|
+
0,
|
|
1470
|
+
[_SA, _DS, _DSD, _ACDTP],
|
|
1471
|
+
[0, 0, 0, 0]
|
|
1472
|
+
];
|
|
1473
|
+
export var KinesisStreamingDestinationInput$ = [3, n0, _KSDI,
|
|
1474
|
+
0,
|
|
1475
|
+
[_TN, _SA, _EKSC],
|
|
1476
|
+
[0, 0, () => EnableKinesisStreamingConfiguration$], 2
|
|
1477
|
+
];
|
|
1478
|
+
export var KinesisStreamingDestinationOutput$ = [3, n0, _KSDO,
|
|
1479
|
+
0,
|
|
1480
|
+
[_TN, _SA, _DS, _EKSC],
|
|
1481
|
+
[0, 0, 0, () => EnableKinesisStreamingConfiguration$]
|
|
1482
|
+
];
|
|
1483
|
+
export var ListBackupsInput$ = [3, n0, _LBI,
|
|
1484
|
+
0,
|
|
1485
|
+
[_TN, _L, _TRLB, _TRUB, _ESBA, _BT],
|
|
1486
|
+
[0, 1, 4, 4, 0, 0]
|
|
1487
|
+
];
|
|
1488
|
+
export var ListBackupsOutput$ = [3, n0, _LBO,
|
|
1489
|
+
0,
|
|
1490
|
+
[_BSac, _LEBA],
|
|
1491
|
+
[() => BackupSummaries, 0]
|
|
1492
|
+
];
|
|
1493
|
+
export var ListContributorInsightsInput$ = [3, n0, _LCII,
|
|
1494
|
+
0,
|
|
1495
|
+
[_TN, _NT, _MR],
|
|
1496
|
+
[0, 0, 1]
|
|
1497
|
+
];
|
|
1498
|
+
export var ListContributorInsightsOutput$ = [3, n0, _LCIO,
|
|
1499
|
+
0,
|
|
1500
|
+
[_CISon, _NT],
|
|
1501
|
+
[() => ContributorInsightsSummaries, 0]
|
|
1502
|
+
];
|
|
1503
|
+
export var ListExportsInput$ = [3, n0, _LEI,
|
|
1504
|
+
0,
|
|
1505
|
+
[_TA, _MR, _NT],
|
|
1506
|
+
[0, 1, 0]
|
|
1507
|
+
];
|
|
1508
|
+
export var ListExportsOutput$ = [3, n0, _LEO,
|
|
1509
|
+
0,
|
|
1510
|
+
[_ESxp, _NT],
|
|
1511
|
+
[() => ExportSummaries, 0]
|
|
1512
|
+
];
|
|
1513
|
+
export var ListGlobalTablesInput$ = [3, n0, _LGTI,
|
|
1514
|
+
0,
|
|
1515
|
+
[_ESGTN, _L, _RN],
|
|
1516
|
+
[0, 1, 0]
|
|
1517
|
+
];
|
|
1518
|
+
export var ListGlobalTablesOutput$ = [3, n0, _LGTO,
|
|
1519
|
+
0,
|
|
1520
|
+
[_GTl, _LEGTN],
|
|
1521
|
+
[() => GlobalTableList, 0]
|
|
1522
|
+
];
|
|
1523
|
+
export var ListImportsInput$ = [3, n0, _LII,
|
|
1524
|
+
0,
|
|
1525
|
+
[_TA, _PS, _NT],
|
|
1526
|
+
[0, 1, 0]
|
|
1527
|
+
];
|
|
1528
|
+
export var ListImportsOutput$ = [3, n0, _LIO,
|
|
1529
|
+
0,
|
|
1530
|
+
[_ISL, _NT],
|
|
1531
|
+
[() => ImportSummaryList, 0]
|
|
1532
|
+
];
|
|
1533
|
+
export var ListTablesInput$ = [3, n0, _LTI,
|
|
1534
|
+
0,
|
|
1535
|
+
[_ESTN, _L],
|
|
1536
|
+
[0, 1]
|
|
1537
|
+
];
|
|
1538
|
+
export var ListTablesOutput$ = [3, n0, _LTO,
|
|
1539
|
+
0,
|
|
1540
|
+
[_TNa, _LETN],
|
|
1541
|
+
[64 | 0, 0]
|
|
1542
|
+
];
|
|
1543
|
+
export var ListTagsOfResourceInput$ = [3, n0, _LTORI,
|
|
1544
|
+
0,
|
|
1545
|
+
[_RA, _NT],
|
|
1546
|
+
[0, 0], 1
|
|
1547
|
+
];
|
|
1548
|
+
export var ListTagsOfResourceOutput$ = [3, n0, _LTORO,
|
|
1549
|
+
0,
|
|
1550
|
+
[_Ta, _NT],
|
|
1551
|
+
[() => TagList, 0]
|
|
1552
|
+
];
|
|
1553
|
+
export var LocalSecondaryIndex$ = [3, n0, _LSIo,
|
|
1554
|
+
0,
|
|
1555
|
+
[_IN, _KS, _Pr],
|
|
1556
|
+
[0, () => KeySchema, () => Projection$], 3
|
|
1557
|
+
];
|
|
1558
|
+
export var LocalSecondaryIndexDescription$ = [3, n0, _LSID,
|
|
1559
|
+
0,
|
|
1560
|
+
[_IN, _KS, _Pr, _ISB, _IC, _IAn],
|
|
1561
|
+
[0, () => KeySchema, () => Projection$, 1, 1, 0]
|
|
1562
|
+
];
|
|
1563
|
+
export var LocalSecondaryIndexInfo$ = [3, n0, _LSII,
|
|
1564
|
+
0,
|
|
1565
|
+
[_IN, _KS, _Pr],
|
|
1566
|
+
[0, () => KeySchema, () => Projection$]
|
|
1567
|
+
];
|
|
1568
|
+
export var OnDemandThroughput$ = [3, n0, _ODT,
|
|
1569
|
+
0,
|
|
1570
|
+
[_MRRU, _MWRU],
|
|
1571
|
+
[1, 1]
|
|
1572
|
+
];
|
|
1573
|
+
export var OnDemandThroughputOverride$ = [3, n0, _ODTO,
|
|
1574
|
+
0,
|
|
1575
|
+
[_MRRU],
|
|
1576
|
+
[1]
|
|
1577
|
+
];
|
|
1578
|
+
export var ParameterizedStatement$ = [3, n0, _PSa,
|
|
1579
|
+
0,
|
|
1580
|
+
[_St, _P, _RVOCCF],
|
|
1581
|
+
[0, () => PreparedStatementParameters, 0], 1
|
|
1582
|
+
];
|
|
1583
|
+
export var PointInTimeRecoveryDescription$ = [3, n0, _PITRD,
|
|
1584
|
+
0,
|
|
1585
|
+
[_PITRS, _RPID, _ERDT, _LRDT],
|
|
1586
|
+
[0, 1, 4, 4]
|
|
1587
|
+
];
|
|
1588
|
+
export var PointInTimeRecoverySpecification$ = [3, n0, _PITRSo,
|
|
1589
|
+
0,
|
|
1590
|
+
[_PITRE, _RPID],
|
|
1591
|
+
[2, 1], 1
|
|
1592
|
+
];
|
|
1593
|
+
export var Projection$ = [3, n0, _Pr,
|
|
1594
|
+
0,
|
|
1595
|
+
[_PTr, _NKA],
|
|
1596
|
+
[0, 64 | 0]
|
|
1597
|
+
];
|
|
1598
|
+
export var ProvisionedThroughput$ = [3, n0, _PT,
|
|
1599
|
+
0,
|
|
1600
|
+
[_RCU, _WCU],
|
|
1601
|
+
[1, 1], 2
|
|
1602
|
+
];
|
|
1603
|
+
export var ProvisionedThroughputDescription$ = [3, n0, _PTD,
|
|
1604
|
+
0,
|
|
1605
|
+
[_LIDT, _LDDT, _NODT, _RCU, _WCU],
|
|
1606
|
+
[4, 4, 1, 1, 1]
|
|
1607
|
+
];
|
|
1608
|
+
export var ProvisionedThroughputOverride$ = [3, n0, _PTO,
|
|
1609
|
+
0,
|
|
1610
|
+
[_RCU],
|
|
1611
|
+
[1]
|
|
1612
|
+
];
|
|
1613
|
+
export var Put$ = [3, n0, _Pu,
|
|
1614
|
+
0,
|
|
1615
|
+
[_I, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
1616
|
+
[() => PutItemInputAttributeMap, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 2
|
|
1617
|
+
];
|
|
1618
|
+
export var PutItemInput$ = [3, n0, _PII,
|
|
1619
|
+
0,
|
|
1620
|
+
[_TN, _I, _Ex, _RV, _RCC, _RICM, _COo, _CE, _EAN, _EAV, _RVOCCF],
|
|
1621
|
+
[0, () => PutItemInputAttributeMap, () => ExpectedAttributeMap, 0, 0, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 2
|
|
1622
|
+
];
|
|
1623
|
+
export var PutItemOutput$ = [3, n0, _PIO,
|
|
1624
|
+
0,
|
|
1625
|
+
[_At, _CC, _ICM],
|
|
1626
|
+
[() => AttributeMap, () => ConsumedCapacity$, () => ItemCollectionMetrics$]
|
|
1627
|
+
];
|
|
1628
|
+
export var PutRequest$ = [3, n0, _PR,
|
|
1629
|
+
0,
|
|
1630
|
+
[_I],
|
|
1631
|
+
[() => PutItemInputAttributeMap], 1
|
|
1632
|
+
];
|
|
1633
|
+
export var PutResourcePolicyInput$ = [3, n0, _PRPI,
|
|
1634
|
+
0,
|
|
1635
|
+
[_RA, _Po, _ERI, _CRSRA],
|
|
1636
|
+
[0, 0, 0, [2, { [_hH]: _xacrsra }]], 2
|
|
1637
|
+
];
|
|
1638
|
+
export var PutResourcePolicyOutput$ = [3, n0, _PRPO,
|
|
1639
|
+
0,
|
|
1640
|
+
[_RIe],
|
|
1641
|
+
[0]
|
|
1642
|
+
];
|
|
1643
|
+
export var QueryInput$ = [3, n0, _QI,
|
|
1644
|
+
0,
|
|
1645
|
+
[_TN, _IN, _Se, _ATG, _L, _CRo, _KC, _QF, _COo, _SIF, _ESK, _RCC, _PE, _FEi, _KCE, _EAN, _EAV],
|
|
1646
|
+
[0, 0, 0, 64 | 0, 1, 2, () => KeyConditions, () => FilterConditionMap, 0, 2, () => Key, 0, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap], 1
|
|
1647
|
+
];
|
|
1648
|
+
export var QueryOutput$ = [3, n0, _QO,
|
|
1649
|
+
0,
|
|
1650
|
+
[_It, _Cou, _SC, _LEK, _CC],
|
|
1651
|
+
[() => ItemList, 1, 1, () => Key, () => ConsumedCapacity$]
|
|
1652
|
+
];
|
|
1653
|
+
export var Replica$ = [3, n0, _Re,
|
|
1654
|
+
0,
|
|
1655
|
+
[_RN],
|
|
1656
|
+
[0]
|
|
1657
|
+
];
|
|
1658
|
+
export var ReplicaAutoScalingDescription$ = [3, n0, _RASD,
|
|
1659
|
+
0,
|
|
1660
|
+
[_RN, _GSI, _RPRCASS, _RPWCASS, _RSe],
|
|
1661
|
+
[0, () => ReplicaGlobalSecondaryIndexAutoScalingDescriptionList, () => AutoScalingSettingsDescription$, () => AutoScalingSettingsDescription$, 0]
|
|
1662
|
+
];
|
|
1663
|
+
export var ReplicaAutoScalingUpdate$ = [3, n0, _RASU,
|
|
1664
|
+
0,
|
|
1665
|
+
[_RN, _RGSIU, _RPRCASU],
|
|
1666
|
+
[0, () => ReplicaGlobalSecondaryIndexAutoScalingUpdateList, () => AutoScalingSettingsUpdate$], 1
|
|
1667
|
+
];
|
|
1668
|
+
export var ReplicaDescription$ = [3, n0, _RD,
|
|
1669
|
+
0,
|
|
1670
|
+
[_RN, _RSe, _RSD, _RSPP, _KMSMKI, _PTO, _ODTO, _WT, _GSI, _RIDT, _RTCS, _GTSRM],
|
|
1671
|
+
[0, 0, 0, 0, 0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$, () => TableWarmThroughputDescription$, () => ReplicaGlobalSecondaryIndexDescriptionList, 4, () => TableClassSummary$, 0]
|
|
1672
|
+
];
|
|
1673
|
+
export var ReplicaGlobalSecondaryIndex$ = [3, n0, _RGSI,
|
|
1674
|
+
0,
|
|
1675
|
+
[_IN, _PTO, _ODTO],
|
|
1676
|
+
[0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$], 1
|
|
1677
|
+
];
|
|
1678
|
+
export var ReplicaGlobalSecondaryIndexAutoScalingDescription$ = [3, n0, _RGSIASD,
|
|
1679
|
+
0,
|
|
1680
|
+
[_IN, _IS, _PRCASS, _PWCASS],
|
|
1681
|
+
[0, 0, () => AutoScalingSettingsDescription$, () => AutoScalingSettingsDescription$]
|
|
1682
|
+
];
|
|
1683
|
+
export var ReplicaGlobalSecondaryIndexAutoScalingUpdate$ = [3, n0, _RGSIASU,
|
|
1684
|
+
0,
|
|
1685
|
+
[_IN, _PRCASU],
|
|
1686
|
+
[0, () => AutoScalingSettingsUpdate$]
|
|
1687
|
+
];
|
|
1688
|
+
export var ReplicaGlobalSecondaryIndexDescription$ = [3, n0, _RGSID,
|
|
1689
|
+
0,
|
|
1690
|
+
[_IN, _PTO, _ODTO, _WT],
|
|
1691
|
+
[0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$, () => GlobalSecondaryIndexWarmThroughputDescription$]
|
|
1692
|
+
];
|
|
1693
|
+
export var ReplicaGlobalSecondaryIndexSettingsDescription$ = [3, n0, _RGSISD,
|
|
1694
|
+
0,
|
|
1695
|
+
[_IN, _IS, _PRCU, _PRCASS, _PWCU, _PWCASS],
|
|
1696
|
+
[0, 0, 1, () => AutoScalingSettingsDescription$, 1, () => AutoScalingSettingsDescription$], 1
|
|
1697
|
+
];
|
|
1698
|
+
export var ReplicaGlobalSecondaryIndexSettingsUpdate$ = [3, n0, _RGSISU,
|
|
1699
|
+
0,
|
|
1700
|
+
[_IN, _PRCU, _PRCASSU],
|
|
1701
|
+
[0, 1, () => AutoScalingSettingsUpdate$], 1
|
|
1702
|
+
];
|
|
1703
|
+
export var ReplicaSettingsDescription$ = [3, n0, _RSDe,
|
|
1704
|
+
0,
|
|
1705
|
+
[_RN, _RSe, _RBMS, _RPRCU, _RPRCASS, _RPWCU, _RPWCASS, _RGSIS, _RTCS],
|
|
1706
|
+
[0, 0, () => BillingModeSummary$, 1, () => AutoScalingSettingsDescription$, 1, () => AutoScalingSettingsDescription$, () => ReplicaGlobalSecondaryIndexSettingsDescriptionList, () => TableClassSummary$], 1
|
|
1707
|
+
];
|
|
1708
|
+
export var ReplicaSettingsUpdate$ = [3, n0, _RSU,
|
|
1709
|
+
0,
|
|
1710
|
+
[_RN, _RPRCU, _RPRCASSU, _RGSISU, _RTC],
|
|
1711
|
+
[0, 1, () => AutoScalingSettingsUpdate$, () => ReplicaGlobalSecondaryIndexSettingsUpdateList, 0], 1
|
|
1712
|
+
];
|
|
1713
|
+
export var ReplicationGroupUpdate$ = [3, n0, _RGU,
|
|
1714
|
+
0,
|
|
1715
|
+
[_Cr, _U, _De],
|
|
1716
|
+
[() => CreateReplicationGroupMemberAction$, () => UpdateReplicationGroupMemberAction$, () => DeleteReplicationGroupMemberAction$]
|
|
1717
|
+
];
|
|
1718
|
+
export var ReplicaUpdate$ = [3, n0, _RU,
|
|
1719
|
+
0,
|
|
1720
|
+
[_Cr, _De],
|
|
1721
|
+
[() => CreateReplicaAction$, () => DeleteReplicaAction$]
|
|
1722
|
+
];
|
|
1723
|
+
export var RestoreSummary$ = [3, n0, _RSes,
|
|
1724
|
+
0,
|
|
1725
|
+
[_RDT, _RIP, _SBA, _STA],
|
|
1726
|
+
[4, 2, 0, 0], 2
|
|
1727
|
+
];
|
|
1728
|
+
export var RestoreTableFromBackupInput$ = [3, n0, _RTFBI,
|
|
1729
|
+
0,
|
|
1730
|
+
[_TTN, _BA, _BMO, _GSIO, _LSIO, _PTO, _ODTO, _SSESO],
|
|
1731
|
+
[0, 0, 0, () => GlobalSecondaryIndexList, () => LocalSecondaryIndexList, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => SSESpecification$], 2
|
|
1732
|
+
];
|
|
1733
|
+
export var RestoreTableFromBackupOutput$ = [3, n0, _RTFBO,
|
|
1734
|
+
0,
|
|
1735
|
+
[_TD],
|
|
1736
|
+
[() => TableDescription$]
|
|
1737
|
+
];
|
|
1738
|
+
export var RestoreTableToPointInTimeInput$ = [3, n0, _RTTPITI,
|
|
1739
|
+
0,
|
|
1740
|
+
[_TTN, _STA, _STN, _ULRT, _RDT, _BMO, _GSIO, _LSIO, _PTO, _ODTO, _SSESO],
|
|
1741
|
+
[0, 0, 0, 2, 4, 0, () => GlobalSecondaryIndexList, () => LocalSecondaryIndexList, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => SSESpecification$], 1
|
|
1742
|
+
];
|
|
1743
|
+
export var RestoreTableToPointInTimeOutput$ = [3, n0, _RTTPITO,
|
|
1744
|
+
0,
|
|
1745
|
+
[_TD],
|
|
1746
|
+
[() => TableDescription$]
|
|
1747
|
+
];
|
|
1748
|
+
export var S3BucketSource$ = [3, n0, _SBS,
|
|
1749
|
+
0,
|
|
1750
|
+
[_SB, _SBO, _SKP],
|
|
1751
|
+
[0, 0, 0], 1
|
|
1752
|
+
];
|
|
1753
|
+
export var ScanInput$ = [3, n0, _SI,
|
|
1754
|
+
0,
|
|
1755
|
+
[_TN, _IN, _ATG, _L, _Se, _SF, _COo, _ESK, _RCC, _TSo, _Seg, _PE, _FEi, _EAN, _EAV, _CRo],
|
|
1756
|
+
[0, 0, 64 | 0, 1, 0, () => FilterConditionMap, 0, () => Key, 0, 1, 1, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 2], 1
|
|
1757
|
+
];
|
|
1758
|
+
export var ScanOutput$ = [3, n0, _SO,
|
|
1759
|
+
0,
|
|
1760
|
+
[_It, _Cou, _SC, _LEK, _CC],
|
|
1761
|
+
[() => ItemList, 1, 1, () => Key, () => ConsumedCapacity$]
|
|
1762
|
+
];
|
|
1763
|
+
export var SourceTableDetails$ = [3, n0, _STD,
|
|
1764
|
+
0,
|
|
1765
|
+
[_TN, _TI, _KS, _TCDT, _PT, _TA, _TSB, _ODT, _IC, _BM],
|
|
1766
|
+
[0, 0, () => KeySchema, 4, () => ProvisionedThroughput$, 0, 1, () => OnDemandThroughput$, 1, 0], 5
|
|
1767
|
+
];
|
|
1768
|
+
export var SourceTableFeatureDetails$ = [3, n0, _STFD,
|
|
1769
|
+
0,
|
|
1770
|
+
[_LSI, _GSI, _SD, _TTLD, _SSED],
|
|
1771
|
+
[() => LocalSecondaryIndexes, () => GlobalSecondaryIndexes, () => StreamSpecification$, () => TimeToLiveDescription$, () => SSEDescription$]
|
|
1772
|
+
];
|
|
1773
|
+
export var SSEDescription$ = [3, n0, _SSED,
|
|
1774
|
+
0,
|
|
1775
|
+
[_Sta, _SSET, _KMSMKA, _IEDT],
|
|
1776
|
+
[0, 0, 0, 4]
|
|
1777
|
+
];
|
|
1778
|
+
export var SSESpecification$ = [3, n0, _SSES,
|
|
1779
|
+
0,
|
|
1780
|
+
[_Ena, _SSET, _KMSMKI],
|
|
1781
|
+
[2, 0, 0]
|
|
1782
|
+
];
|
|
1783
|
+
export var StreamSpecification$ = [3, n0, _SS,
|
|
1784
|
+
0,
|
|
1785
|
+
[_SE, _SVT],
|
|
1786
|
+
[2, 0], 1
|
|
1787
|
+
];
|
|
1788
|
+
export var TableAutoScalingDescription$ = [3, n0, _TASD,
|
|
1789
|
+
0,
|
|
1790
|
+
[_TN, _TSa, _Rep],
|
|
1791
|
+
[0, 0, () => ReplicaAutoScalingDescriptionList]
|
|
1792
|
+
];
|
|
1793
|
+
export var TableClassSummary$ = [3, n0, _TCS,
|
|
1794
|
+
0,
|
|
1795
|
+
[_TC, _LUDT],
|
|
1796
|
+
[0, 4]
|
|
1797
|
+
];
|
|
1798
|
+
export var TableCreationParameters$ = [3, n0, _TCP,
|
|
1799
|
+
0,
|
|
1800
|
+
[_TN, _ADt, _KS, _BM, _PT, _ODT, _SSES, _GSI],
|
|
1801
|
+
[0, () => AttributeDefinitions, () => KeySchema, 0, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => SSESpecification$, () => GlobalSecondaryIndexList], 3
|
|
1802
|
+
];
|
|
1803
|
+
export var TableDescription$ = [3, n0, _TD,
|
|
1804
|
+
0,
|
|
1805
|
+
[_ADt, _TN, _KS, _TSa, _CDT, _PT, _TSB, _IC, _TA, _TI, _BMS, _LSI, _GSI, _SS, _LSL, _LSA, _GTV, _Rep, _GTW, _GTSRM, _RSes, _SSED, _AS, _TCS, _DPE, _ODT, _WT, _MRC],
|
|
1806
|
+
[() => AttributeDefinitions, 0, () => KeySchema, 0, 4, () => ProvisionedThroughputDescription$, 1, 1, 0, 0, () => BillingModeSummary$, () => LocalSecondaryIndexDescriptionList, () => GlobalSecondaryIndexDescriptionList, () => StreamSpecification$, 0, 0, 0, () => ReplicaDescriptionList, () => GlobalTableWitnessDescriptionList, 0, () => RestoreSummary$, () => SSEDescription$, () => ArchivalSummary$, () => TableClassSummary$, 2, () => OnDemandThroughput$, () => TableWarmThroughputDescription$, 0]
|
|
1807
|
+
];
|
|
1808
|
+
export var TableWarmThroughputDescription$ = [3, n0, _TWTD,
|
|
1809
|
+
0,
|
|
1810
|
+
[_RUPS, _WUPS, _Sta],
|
|
1811
|
+
[1, 1, 0]
|
|
1812
|
+
];
|
|
1813
|
+
export var Tag$ = [3, n0, _Tag,
|
|
1814
|
+
0,
|
|
1815
|
+
[_K, _V],
|
|
1816
|
+
[0, 0], 2
|
|
1817
|
+
];
|
|
1818
|
+
export var TagResourceInput$ = [3, n0, _TRI,
|
|
1819
|
+
0,
|
|
1820
|
+
[_RA, _Ta],
|
|
1821
|
+
[0, () => TagList], 2
|
|
1822
|
+
];
|
|
1823
|
+
export var ThrottlingReason$ = [3, n0, _TRh,
|
|
1824
|
+
0,
|
|
1825
|
+
[_r, _re],
|
|
1826
|
+
[0, 0]
|
|
1827
|
+
];
|
|
1828
|
+
export var TimeToLiveDescription$ = [3, n0, _TTLD,
|
|
1829
|
+
0,
|
|
1830
|
+
[_TTLS, _AN],
|
|
1831
|
+
[0, 0]
|
|
1832
|
+
];
|
|
1833
|
+
export var TimeToLiveSpecification$ = [3, n0, _TTLSi,
|
|
1834
|
+
0,
|
|
1835
|
+
[_Ena, _AN],
|
|
1836
|
+
[2, 0], 2
|
|
1837
|
+
];
|
|
1838
|
+
export var TransactGetItem$ = [3, n0, _TGI,
|
|
1839
|
+
0,
|
|
1840
|
+
[_G],
|
|
1841
|
+
[() => Get$], 1
|
|
1842
|
+
];
|
|
1843
|
+
export var TransactGetItemsInput$ = [3, n0, _TGII,
|
|
1844
|
+
0,
|
|
1845
|
+
[_TIr, _RCC],
|
|
1846
|
+
[() => TransactGetItemList, 0], 1
|
|
1847
|
+
];
|
|
1848
|
+
export var TransactGetItemsOutput$ = [3, n0, _TGIO,
|
|
1849
|
+
0,
|
|
1850
|
+
[_CC, _R],
|
|
1851
|
+
[() => ConsumedCapacityMultiple, () => ItemResponseList]
|
|
1852
|
+
];
|
|
1853
|
+
export var TransactWriteItem$ = [3, n0, _TWI,
|
|
1854
|
+
0,
|
|
1855
|
+
[_CCo, _Pu, _De, _U],
|
|
1856
|
+
[() => ConditionCheck$, () => Put$, () => Delete$, () => Update$]
|
|
1857
|
+
];
|
|
1858
|
+
export var TransactWriteItemsInput$ = [3, n0, _TWII,
|
|
1859
|
+
0,
|
|
1860
|
+
[_TIr, _RCC, _RICM, _CRT],
|
|
1861
|
+
[() => TransactWriteItemList, 0, 0, [0, 4]], 1
|
|
1862
|
+
];
|
|
1863
|
+
export var TransactWriteItemsOutput$ = [3, n0, _TWIO,
|
|
1864
|
+
0,
|
|
1865
|
+
[_CC, _ICM],
|
|
1866
|
+
[() => ConsumedCapacityMultiple, () => ItemCollectionMetricsPerTable]
|
|
1867
|
+
];
|
|
1868
|
+
export var UntagResourceInput$ = [3, n0, _URI,
|
|
1869
|
+
0,
|
|
1870
|
+
[_RA, _TK],
|
|
1871
|
+
[0, 64 | 0], 2
|
|
1872
|
+
];
|
|
1873
|
+
export var Update$ = [3, n0, _U,
|
|
1874
|
+
0,
|
|
1875
|
+
[_K, _UE, _TN, _CE, _EAN, _EAV, _RVOCCF],
|
|
1876
|
+
[() => Key, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 3
|
|
1877
|
+
];
|
|
1878
|
+
export var UpdateContinuousBackupsInput$ = [3, n0, _UCBI,
|
|
1879
|
+
0,
|
|
1880
|
+
[_TN, _PITRSo],
|
|
1881
|
+
[0, () => PointInTimeRecoverySpecification$], 2
|
|
1882
|
+
];
|
|
1883
|
+
export var UpdateContinuousBackupsOutput$ = [3, n0, _UCBO,
|
|
1884
|
+
0,
|
|
1885
|
+
[_CBD],
|
|
1886
|
+
[() => ContinuousBackupsDescription$]
|
|
1887
|
+
];
|
|
1888
|
+
export var UpdateContributorInsightsInput$ = [3, n0, _UCII,
|
|
1889
|
+
0,
|
|
1890
|
+
[_TN, _CIA, _IN, _CIM],
|
|
1891
|
+
[0, 0, 0, 0], 2
|
|
1892
|
+
];
|
|
1893
|
+
export var UpdateContributorInsightsOutput$ = [3, n0, _UCIO,
|
|
1894
|
+
0,
|
|
1895
|
+
[_TN, _IN, _CISo, _CIM],
|
|
1896
|
+
[0, 0, 0, 0]
|
|
1897
|
+
];
|
|
1898
|
+
export var UpdateGlobalSecondaryIndexAction$ = [3, n0, _UGSIA,
|
|
1899
|
+
0,
|
|
1900
|
+
[_IN, _PT, _ODT, _WT],
|
|
1901
|
+
[0, () => ProvisionedThroughput$, () => OnDemandThroughput$, () => WarmThroughput$], 1
|
|
1902
|
+
];
|
|
1903
|
+
export var UpdateGlobalTableInput$ = [3, n0, _UGTI,
|
|
1904
|
+
0,
|
|
1905
|
+
[_GTN, _RUe],
|
|
1906
|
+
[0, () => ReplicaUpdateList], 2
|
|
1907
|
+
];
|
|
1908
|
+
export var UpdateGlobalTableOutput$ = [3, n0, _UGTO,
|
|
1909
|
+
0,
|
|
1910
|
+
[_GTD],
|
|
1911
|
+
[() => GlobalTableDescription$]
|
|
1912
|
+
];
|
|
1913
|
+
export var UpdateGlobalTableSettingsInput$ = [3, n0, _UGTSI,
|
|
1914
|
+
0,
|
|
1915
|
+
[_GTN, _GTBM, _GTPWCU, _GTPWCASSU, _GTGSISU, _RSU],
|
|
1916
|
+
[0, 0, 1, () => AutoScalingSettingsUpdate$, () => GlobalTableGlobalSecondaryIndexSettingsUpdateList, () => ReplicaSettingsUpdateList], 1
|
|
1917
|
+
];
|
|
1918
|
+
export var UpdateGlobalTableSettingsOutput$ = [3, n0, _UGTSO,
|
|
1919
|
+
0,
|
|
1920
|
+
[_GTN, _RS],
|
|
1921
|
+
[0, () => ReplicaSettingsDescriptionList]
|
|
1922
|
+
];
|
|
1923
|
+
export var UpdateItemInput$ = [3, n0, _UII,
|
|
1924
|
+
0,
|
|
1925
|
+
[_TN, _K, _AU, _Ex, _COo, _RV, _RCC, _RICM, _UE, _CE, _EAN, _EAV, _RVOCCF],
|
|
1926
|
+
[0, () => Key, () => AttributeUpdates, () => ExpectedAttributeMap, 0, 0, 0, 0, 0, 0, 128 | 0, () => ExpressionAttributeValueMap, 0], 2
|
|
1927
|
+
];
|
|
1928
|
+
export var UpdateItemOutput$ = [3, n0, _UIO,
|
|
1929
|
+
0,
|
|
1930
|
+
[_At, _CC, _ICM],
|
|
1931
|
+
[() => AttributeMap, () => ConsumedCapacity$, () => ItemCollectionMetrics$]
|
|
1932
|
+
];
|
|
1933
|
+
export var UpdateKinesisStreamingConfiguration$ = [3, n0, _UKSC,
|
|
1934
|
+
0,
|
|
1935
|
+
[_ACDTP],
|
|
1936
|
+
[0]
|
|
1937
|
+
];
|
|
1938
|
+
export var UpdateKinesisStreamingDestinationInput$ = [3, n0, _UKSDI,
|
|
1939
|
+
0,
|
|
1940
|
+
[_TN, _SA, _UKSC],
|
|
1941
|
+
[0, 0, () => UpdateKinesisStreamingConfiguration$], 2
|
|
1942
|
+
];
|
|
1943
|
+
export var UpdateKinesisStreamingDestinationOutput$ = [3, n0, _UKSDO,
|
|
1944
|
+
0,
|
|
1945
|
+
[_TN, _SA, _DS, _UKSC],
|
|
1946
|
+
[0, 0, 0, () => UpdateKinesisStreamingConfiguration$]
|
|
1947
|
+
];
|
|
1948
|
+
export var UpdateReplicationGroupMemberAction$ = [3, n0, _URGMA,
|
|
1949
|
+
0,
|
|
1950
|
+
[_RN, _KMSMKI, _PTO, _ODTO, _GSI, _TCO],
|
|
1951
|
+
[0, 0, () => ProvisionedThroughputOverride$, () => OnDemandThroughputOverride$, () => ReplicaGlobalSecondaryIndexList, 0], 1
|
|
1952
|
+
];
|
|
1953
|
+
export var UpdateTableInput$ = [3, n0, _UTI,
|
|
1954
|
+
0,
|
|
1955
|
+
[_TN, _ADt, _BM, _PT, _GSIUl, _SS, _SSES, _RUe, _TC, _DPE, _MRC, _GTWU, _ODT, _WT, _GTSRM],
|
|
1956
|
+
[0, () => AttributeDefinitions, 0, () => ProvisionedThroughput$, () => GlobalSecondaryIndexUpdateList, () => StreamSpecification$, () => SSESpecification$, () => ReplicationGroupUpdateList, 0, 2, 0, () => GlobalTableWitnessGroupUpdateList, () => OnDemandThroughput$, () => WarmThroughput$, 0], 1
|
|
1957
|
+
];
|
|
1958
|
+
export var UpdateTableOutput$ = [3, n0, _UTO,
|
|
1959
|
+
0,
|
|
1960
|
+
[_TD],
|
|
1961
|
+
[() => TableDescription$]
|
|
1962
|
+
];
|
|
1963
|
+
export var UpdateTableReplicaAutoScalingInput$ = [3, n0, _UTRASI,
|
|
1964
|
+
0,
|
|
1965
|
+
[_TN, _GSIUl, _PWCASU, _RUe],
|
|
1966
|
+
[0, () => GlobalSecondaryIndexAutoScalingUpdateList, () => AutoScalingSettingsUpdate$, () => ReplicaAutoScalingUpdateList], 1
|
|
1967
|
+
];
|
|
1968
|
+
export var UpdateTableReplicaAutoScalingOutput$ = [3, n0, _UTRASO,
|
|
1969
|
+
0,
|
|
1970
|
+
[_TASD],
|
|
1971
|
+
[() => TableAutoScalingDescription$]
|
|
1972
|
+
];
|
|
1973
|
+
export var UpdateTimeToLiveInput$ = [3, n0, _UTTLI,
|
|
1974
|
+
0,
|
|
1975
|
+
[_TN, _TTLSi],
|
|
1976
|
+
[0, () => TimeToLiveSpecification$], 2
|
|
1977
|
+
];
|
|
1978
|
+
export var UpdateTimeToLiveOutput$ = [3, n0, _UTTLO,
|
|
1979
|
+
0,
|
|
1980
|
+
[_TTLSi],
|
|
1981
|
+
[() => TimeToLiveSpecification$]
|
|
1982
|
+
];
|
|
1983
|
+
export var WarmThroughput$ = [3, n0, _WT,
|
|
1984
|
+
0,
|
|
1985
|
+
[_RUPS, _WUPS],
|
|
1986
|
+
[1, 1]
|
|
1987
|
+
];
|
|
1988
|
+
export var WriteRequest$ = [3, n0, _WR,
|
|
1989
|
+
0,
|
|
1990
|
+
[_PR, _DR],
|
|
1991
|
+
[() => PutRequest$, () => DeleteRequest$]
|
|
1992
|
+
];
|
|
1993
|
+
var __Unit = "unit";
|
|
1994
|
+
var AttributeDefinitions = [1, n0, _ADt,
|
|
1995
|
+
0, () => AttributeDefinition$
|
|
1996
|
+
];
|
|
1997
|
+
var AttributeNameList = 64 | 0;
|
|
1998
|
+
var AttributeValueList = [1, n0, _AVL,
|
|
1999
|
+
0, () => AttributeValue$
|
|
2000
|
+
];
|
|
2001
|
+
var AutoScalingPolicyDescriptionList = [1, n0, _ASPDL,
|
|
2002
|
+
0, () => AutoScalingPolicyDescription$
|
|
2003
|
+
];
|
|
2004
|
+
var BackupSummaries = [1, n0, _BSac,
|
|
2005
|
+
0, () => BackupSummary$
|
|
2006
|
+
];
|
|
2007
|
+
var BinarySetAttributeValue = 64 | 21;
|
|
2008
|
+
var CancellationReasonList = [1, n0, _CRL,
|
|
2009
|
+
0, () => CancellationReason$
|
|
2010
|
+
];
|
|
2011
|
+
var ConsumedCapacityMultiple = [1, n0, _CCM,
|
|
2012
|
+
0, () => ConsumedCapacity$
|
|
2013
|
+
];
|
|
2014
|
+
var ContributorInsightsRuleList = 64 | 0;
|
|
2015
|
+
var ContributorInsightsSummaries = [1, n0, _CISon,
|
|
2016
|
+
0, () => ContributorInsightsSummary$
|
|
2017
|
+
];
|
|
2018
|
+
var CsvHeaderList = 64 | 0;
|
|
2019
|
+
var Endpoints = [1, n0, _En,
|
|
2020
|
+
0, () => Endpoint$
|
|
2021
|
+
];
|
|
2022
|
+
var ExportSummaries = [1, n0, _ESxp,
|
|
2023
|
+
0, () => ExportSummary$
|
|
2024
|
+
];
|
|
2025
|
+
var GlobalSecondaryIndexAutoScalingUpdateList = [1, n0, _GSIASUL,
|
|
2026
|
+
0, () => GlobalSecondaryIndexAutoScalingUpdate$
|
|
2027
|
+
];
|
|
2028
|
+
var GlobalSecondaryIndexDescriptionList = [1, n0, _GSIDL,
|
|
2029
|
+
0, () => GlobalSecondaryIndexDescription$
|
|
2030
|
+
];
|
|
2031
|
+
var GlobalSecondaryIndexes = [1, n0, _GSI,
|
|
2032
|
+
0, () => GlobalSecondaryIndexInfo$
|
|
2033
|
+
];
|
|
2034
|
+
var GlobalSecondaryIndexList = [1, n0, _GSIL,
|
|
2035
|
+
0, () => GlobalSecondaryIndex$
|
|
2036
|
+
];
|
|
2037
|
+
var GlobalSecondaryIndexUpdateList = [1, n0, _GSIUL,
|
|
2038
|
+
0, () => GlobalSecondaryIndexUpdate$
|
|
2039
|
+
];
|
|
2040
|
+
var GlobalTableGlobalSecondaryIndexSettingsUpdateList = [1, n0, _GTGSISUL,
|
|
2041
|
+
0, () => GlobalTableGlobalSecondaryIndexSettingsUpdate$
|
|
2042
|
+
];
|
|
2043
|
+
var GlobalTableList = [1, n0, _GTL,
|
|
2044
|
+
0, () => GlobalTable$
|
|
2045
|
+
];
|
|
2046
|
+
var GlobalTableWitnessDescriptionList = [1, n0, _GTWDL,
|
|
2047
|
+
0, () => GlobalTableWitnessDescription$
|
|
2048
|
+
];
|
|
2049
|
+
var GlobalTableWitnessGroupUpdateList = [1, n0, _GTWGUL,
|
|
2050
|
+
0, () => GlobalTableWitnessGroupUpdate$
|
|
2051
|
+
];
|
|
2052
|
+
var ImportSummaryList = [1, n0, _ISL,
|
|
2053
|
+
0, () => ImportSummary$
|
|
2054
|
+
];
|
|
2055
|
+
var ItemCollectionMetricsMultiple = [1, n0, _ICMM,
|
|
2056
|
+
0, () => ItemCollectionMetrics$
|
|
2057
|
+
];
|
|
2058
|
+
var ItemCollectionSizeEstimateRange = 64 | 1;
|
|
2059
|
+
var ItemList = [1, n0, _IL,
|
|
2060
|
+
0, () => AttributeMap
|
|
2061
|
+
];
|
|
2062
|
+
var ItemResponseList = [1, n0, _IRL,
|
|
2063
|
+
0, () => ItemResponse$
|
|
2064
|
+
];
|
|
2065
|
+
var KeyList = [1, n0, _KL,
|
|
2066
|
+
0, () => Key
|
|
2067
|
+
];
|
|
2068
|
+
var KeySchema = [1, n0, _KS,
|
|
2069
|
+
0, () => KeySchemaElement$
|
|
2070
|
+
];
|
|
2071
|
+
var KinesisDataStreamDestinations = [1, n0, _KDSD,
|
|
2072
|
+
0, () => KinesisDataStreamDestination$
|
|
2073
|
+
];
|
|
2074
|
+
var ListAttributeValue = [1, n0, _LAV,
|
|
2075
|
+
0, () => AttributeValue$
|
|
2076
|
+
];
|
|
2077
|
+
var LocalSecondaryIndexDescriptionList = [1, n0, _LSIDL,
|
|
2078
|
+
0, () => LocalSecondaryIndexDescription$
|
|
2079
|
+
];
|
|
2080
|
+
var LocalSecondaryIndexes = [1, n0, _LSI,
|
|
2081
|
+
0, () => LocalSecondaryIndexInfo$
|
|
2082
|
+
];
|
|
2083
|
+
var LocalSecondaryIndexList = [1, n0, _LSIL,
|
|
2084
|
+
0, () => LocalSecondaryIndex$
|
|
2085
|
+
];
|
|
2086
|
+
var NonKeyAttributeNameList = 64 | 0;
|
|
2087
|
+
var NumberSetAttributeValue = 64 | 0;
|
|
2088
|
+
var ParameterizedStatements = [1, n0, _PSar,
|
|
2089
|
+
0, () => ParameterizedStatement$
|
|
2090
|
+
];
|
|
2091
|
+
var PartiQLBatchRequest = [1, n0, _PQLBR,
|
|
2092
|
+
0, () => BatchStatementRequest$
|
|
2093
|
+
];
|
|
2094
|
+
var PartiQLBatchResponse = [1, n0, _PQLBRa,
|
|
2095
|
+
0, () => BatchStatementResponse$
|
|
2096
|
+
];
|
|
2097
|
+
var PreparedStatementParameters = [1, n0, _PSP,
|
|
2098
|
+
0, () => AttributeValue$
|
|
2099
|
+
];
|
|
2100
|
+
var ReplicaAutoScalingDescriptionList = [1, n0, _RASDL,
|
|
2101
|
+
0, () => ReplicaAutoScalingDescription$
|
|
2102
|
+
];
|
|
2103
|
+
var ReplicaAutoScalingUpdateList = [1, n0, _RASUL,
|
|
2104
|
+
0, () => ReplicaAutoScalingUpdate$
|
|
2105
|
+
];
|
|
2106
|
+
var ReplicaDescriptionList = [1, n0, _RDL,
|
|
2107
|
+
0, () => ReplicaDescription$
|
|
2108
|
+
];
|
|
2109
|
+
var ReplicaGlobalSecondaryIndexAutoScalingDescriptionList = [1, n0, _RGSIASDL,
|
|
2110
|
+
0, () => ReplicaGlobalSecondaryIndexAutoScalingDescription$
|
|
2111
|
+
];
|
|
2112
|
+
var ReplicaGlobalSecondaryIndexAutoScalingUpdateList = [1, n0, _RGSIASUL,
|
|
2113
|
+
0, () => ReplicaGlobalSecondaryIndexAutoScalingUpdate$
|
|
2114
|
+
];
|
|
2115
|
+
var ReplicaGlobalSecondaryIndexDescriptionList = [1, n0, _RGSIDL,
|
|
2116
|
+
0, () => ReplicaGlobalSecondaryIndexDescription$
|
|
2117
|
+
];
|
|
2118
|
+
var ReplicaGlobalSecondaryIndexList = [1, n0, _RGSIL,
|
|
2119
|
+
0, () => ReplicaGlobalSecondaryIndex$
|
|
2120
|
+
];
|
|
2121
|
+
var ReplicaGlobalSecondaryIndexSettingsDescriptionList = [1, n0, _RGSISDL,
|
|
2122
|
+
0, () => ReplicaGlobalSecondaryIndexSettingsDescription$
|
|
2123
|
+
];
|
|
2124
|
+
var ReplicaGlobalSecondaryIndexSettingsUpdateList = [1, n0, _RGSISUL,
|
|
2125
|
+
0, () => ReplicaGlobalSecondaryIndexSettingsUpdate$
|
|
2126
|
+
];
|
|
2127
|
+
var ReplicaList = [1, n0, _RL,
|
|
2128
|
+
0, () => Replica$
|
|
2129
|
+
];
|
|
2130
|
+
var ReplicaSettingsDescriptionList = [1, n0, _RSDL,
|
|
2131
|
+
0, () => ReplicaSettingsDescription$
|
|
2132
|
+
];
|
|
2133
|
+
var ReplicaSettingsUpdateList = [1, n0, _RSUL,
|
|
2134
|
+
0, () => ReplicaSettingsUpdate$
|
|
2135
|
+
];
|
|
2136
|
+
var ReplicationGroupUpdateList = [1, n0, _RGUL,
|
|
2137
|
+
0, () => ReplicationGroupUpdate$
|
|
2138
|
+
];
|
|
2139
|
+
var ReplicaUpdateList = [1, n0, _RUL,
|
|
2140
|
+
0, () => ReplicaUpdate$
|
|
2141
|
+
];
|
|
2142
|
+
var StringSetAttributeValue = 64 | 0;
|
|
2143
|
+
var TableNameList = 64 | 0;
|
|
2144
|
+
var TagKeyList = 64 | 0;
|
|
2145
|
+
var TagList = [1, n0, _TL,
|
|
2146
|
+
0, () => Tag$
|
|
2147
|
+
];
|
|
2148
|
+
var ThrottlingReasonList = [1, n0, _TRL,
|
|
2149
|
+
0, () => ThrottlingReason$
|
|
2150
|
+
];
|
|
2151
|
+
var TransactGetItemList = [1, n0, _TGIL,
|
|
2152
|
+
0, () => TransactGetItem$
|
|
2153
|
+
];
|
|
2154
|
+
var TransactWriteItemList = [1, n0, _TWIL,
|
|
2155
|
+
0, () => TransactWriteItem$
|
|
2156
|
+
];
|
|
2157
|
+
var WriteRequests = [1, n0, _WRr,
|
|
2158
|
+
0, () => WriteRequest$
|
|
2159
|
+
];
|
|
2160
|
+
var AttributeMap = [2, n0, _AM,
|
|
2161
|
+
0, 0, () => AttributeValue$
|
|
2162
|
+
];
|
|
2163
|
+
var AttributeUpdates = [2, n0, _AU,
|
|
2164
|
+
0, 0, () => AttributeValueUpdate$
|
|
2165
|
+
];
|
|
2166
|
+
var BatchGetRequestMap = [2, n0, _BGRMa,
|
|
2167
|
+
0, 0, () => KeysAndAttributes$
|
|
2168
|
+
];
|
|
2169
|
+
var BatchGetResponseMap = [2, n0, _BGRM,
|
|
2170
|
+
0, 0, () => ItemList
|
|
2171
|
+
];
|
|
2172
|
+
var BatchWriteItemRequestMap = [2, n0, _BWIRM,
|
|
2173
|
+
0, 0, () => WriteRequests
|
|
2174
|
+
];
|
|
2175
|
+
var ExpectedAttributeMap = [2, n0, _EAM,
|
|
2176
|
+
0, 0, () => ExpectedAttributeValue$
|
|
2177
|
+
];
|
|
2178
|
+
var ExpressionAttributeNameMap = 128 | 0;
|
|
2179
|
+
var ExpressionAttributeValueMap = [2, n0, _EAVM,
|
|
2180
|
+
0, 0, () => AttributeValue$
|
|
2181
|
+
];
|
|
2182
|
+
var FilterConditionMap = [2, n0, _FCM,
|
|
2183
|
+
0, 0, () => Condition$
|
|
2184
|
+
];
|
|
2185
|
+
var ItemCollectionKeyAttributeMap = [2, n0, _ICKAM,
|
|
2186
|
+
0, 0, () => AttributeValue$
|
|
2187
|
+
];
|
|
2188
|
+
var ItemCollectionMetricsPerTable = [2, n0, _ICMPT,
|
|
2189
|
+
0, 0, () => ItemCollectionMetricsMultiple
|
|
2190
|
+
];
|
|
2191
|
+
var Key = [2, n0, _K,
|
|
2192
|
+
0, 0, () => AttributeValue$
|
|
2193
|
+
];
|
|
2194
|
+
var KeyConditions = [2, n0, _KC,
|
|
2195
|
+
0, 0, () => Condition$
|
|
2196
|
+
];
|
|
2197
|
+
var MapAttributeValue = [2, n0, _MAV,
|
|
2198
|
+
0, 0, () => AttributeValue$
|
|
2199
|
+
];
|
|
2200
|
+
var PutItemInputAttributeMap = [2, n0, _PIIAM,
|
|
2201
|
+
0, 0, () => AttributeValue$
|
|
2202
|
+
];
|
|
2203
|
+
var SecondaryIndexesCapacityMap = [2, n0, _SICM,
|
|
2204
|
+
0, 0, () => Capacity$
|
|
2205
|
+
];
|
|
2206
|
+
export var AttributeValue$ = [4, n0, _AV,
|
|
2207
|
+
0,
|
|
2208
|
+
[_S_, _N, _B_, _SS_, _NS, _BS_, _M_, _L_, _NULL, _BOOL],
|
|
2209
|
+
[0, 0, 21, 64 | 0, 64 | 0, 64 | 21, () => MapAttributeValue, () => ListAttributeValue, 2, 2]
|
|
2210
|
+
];
|
|
2211
|
+
export var BatchExecuteStatement$ = [9, n0, _BES,
|
|
2212
|
+
0, () => BatchExecuteStatementInput$, () => BatchExecuteStatementOutput$
|
|
2213
|
+
];
|
|
2214
|
+
export var BatchGetItem$ = [9, n0, _BGI,
|
|
2215
|
+
0, () => BatchGetItemInput$, () => BatchGetItemOutput$
|
|
2216
|
+
];
|
|
2217
|
+
export var BatchWriteItem$ = [9, n0, _BWI,
|
|
2218
|
+
0, () => BatchWriteItemInput$, () => BatchWriteItemOutput$
|
|
2219
|
+
];
|
|
2220
|
+
export var CreateBackup$ = [9, n0, _CB,
|
|
2221
|
+
0, () => CreateBackupInput$, () => CreateBackupOutput$
|
|
2222
|
+
];
|
|
2223
|
+
export var CreateGlobalTable$ = [9, n0, _CGT,
|
|
2224
|
+
0, () => CreateGlobalTableInput$, () => CreateGlobalTableOutput$
|
|
2225
|
+
];
|
|
2226
|
+
export var CreateTable$ = [9, n0, _CTr,
|
|
2227
|
+
0, () => CreateTableInput$, () => CreateTableOutput$
|
|
2228
|
+
];
|
|
2229
|
+
export var DeleteBackup$ = [9, n0, _DB,
|
|
2230
|
+
0, () => DeleteBackupInput$, () => DeleteBackupOutput$
|
|
2231
|
+
];
|
|
2232
|
+
export var DeleteItem$ = [9, n0, _DI,
|
|
2233
|
+
0, () => DeleteItemInput$, () => DeleteItemOutput$
|
|
2234
|
+
];
|
|
2235
|
+
export var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
2236
|
+
0, () => DeleteResourcePolicyInput$, () => DeleteResourcePolicyOutput$
|
|
2237
|
+
];
|
|
2238
|
+
export var DeleteTable$ = [9, n0, _DT,
|
|
2239
|
+
0, () => DeleteTableInput$, () => DeleteTableOutput$
|
|
2240
|
+
];
|
|
2241
|
+
export var DescribeBackup$ = [9, n0, _DBe,
|
|
2242
|
+
0, () => DescribeBackupInput$, () => DescribeBackupOutput$
|
|
2243
|
+
];
|
|
2244
|
+
export var DescribeContinuousBackups$ = [9, n0, _DCB,
|
|
2245
|
+
0, () => DescribeContinuousBackupsInput$, () => DescribeContinuousBackupsOutput$
|
|
2246
|
+
];
|
|
2247
|
+
export var DescribeContributorInsights$ = [9, n0, _DCI,
|
|
2248
|
+
0, () => DescribeContributorInsightsInput$, () => DescribeContributorInsightsOutput$
|
|
2249
|
+
];
|
|
2250
|
+
export var DescribeEndpoints$ = [9, n0, _DE,
|
|
2251
|
+
0, () => DescribeEndpointsRequest$, () => DescribeEndpointsResponse$
|
|
2252
|
+
];
|
|
2253
|
+
export var DescribeExport$ = [9, n0, _DEe,
|
|
2254
|
+
0, () => DescribeExportInput$, () => DescribeExportOutput$
|
|
2255
|
+
];
|
|
2256
|
+
export var DescribeGlobalTable$ = [9, n0, _DGT,
|
|
2257
|
+
0, () => DescribeGlobalTableInput$, () => DescribeGlobalTableOutput$
|
|
2258
|
+
];
|
|
2259
|
+
export var DescribeGlobalTableSettings$ = [9, n0, _DGTS,
|
|
2260
|
+
0, () => DescribeGlobalTableSettingsInput$, () => DescribeGlobalTableSettingsOutput$
|
|
2261
|
+
];
|
|
2262
|
+
export var DescribeImport$ = [9, n0, _DIe,
|
|
2263
|
+
0, () => DescribeImportInput$, () => DescribeImportOutput$
|
|
2264
|
+
];
|
|
2265
|
+
export var DescribeKinesisStreamingDestination$ = [9, n0, _DKSD,
|
|
2266
|
+
0, () => DescribeKinesisStreamingDestinationInput$, () => DescribeKinesisStreamingDestinationOutput$
|
|
2267
|
+
];
|
|
2268
|
+
export var DescribeLimits$ = [9, n0, _DL,
|
|
2269
|
+
0, () => DescribeLimitsInput$, () => DescribeLimitsOutput$
|
|
2270
|
+
];
|
|
2271
|
+
export var DescribeTable$ = [9, n0, _DTe,
|
|
2272
|
+
0, () => DescribeTableInput$, () => DescribeTableOutput$
|
|
2273
|
+
];
|
|
2274
|
+
export var DescribeTableReplicaAutoScaling$ = [9, n0, _DTRAS,
|
|
2275
|
+
0, () => DescribeTableReplicaAutoScalingInput$, () => DescribeTableReplicaAutoScalingOutput$
|
|
2276
|
+
];
|
|
2277
|
+
export var DescribeTimeToLive$ = [9, n0, _DTTL,
|
|
2278
|
+
0, () => DescribeTimeToLiveInput$, () => DescribeTimeToLiveOutput$
|
|
2279
|
+
];
|
|
2280
|
+
export var DisableKinesisStreamingDestination$ = [9, n0, _DKSDi,
|
|
2281
|
+
0, () => KinesisStreamingDestinationInput$, () => KinesisStreamingDestinationOutput$
|
|
2282
|
+
];
|
|
2283
|
+
export var EnableKinesisStreamingDestination$ = [9, n0, _EKSD,
|
|
2284
|
+
0, () => KinesisStreamingDestinationInput$, () => KinesisStreamingDestinationOutput$
|
|
2285
|
+
];
|
|
2286
|
+
export var ExecuteStatement$ = [9, n0, _ESxe,
|
|
2287
|
+
0, () => ExecuteStatementInput$, () => ExecuteStatementOutput$
|
|
2288
|
+
];
|
|
2289
|
+
export var ExecuteTransaction$ = [9, n0, _ETxe,
|
|
2290
|
+
0, () => ExecuteTransactionInput$, () => ExecuteTransactionOutput$
|
|
2291
|
+
];
|
|
2292
|
+
export var ExportTableToPointInTime$ = [9, n0, _ETTPIT,
|
|
2293
|
+
0, () => ExportTableToPointInTimeInput$, () => ExportTableToPointInTimeOutput$
|
|
2294
|
+
];
|
|
2295
|
+
export var GetItem$ = [9, n0, _GI,
|
|
2296
|
+
0, () => GetItemInput$, () => GetItemOutput$
|
|
2297
|
+
];
|
|
2298
|
+
export var GetResourcePolicy$ = [9, n0, _GRP,
|
|
2299
|
+
0, () => GetResourcePolicyInput$, () => GetResourcePolicyOutput$
|
|
2300
|
+
];
|
|
2301
|
+
export var ImportTable$ = [9, n0, _IT,
|
|
2302
|
+
0, () => ImportTableInput$, () => ImportTableOutput$
|
|
2303
|
+
];
|
|
2304
|
+
export var ListBackups$ = [9, n0, _LB,
|
|
2305
|
+
0, () => ListBackupsInput$, () => ListBackupsOutput$
|
|
2306
|
+
];
|
|
2307
|
+
export var ListContributorInsights$ = [9, n0, _LCI,
|
|
2308
|
+
0, () => ListContributorInsightsInput$, () => ListContributorInsightsOutput$
|
|
2309
|
+
];
|
|
2310
|
+
export var ListExports$ = [9, n0, _LE,
|
|
2311
|
+
0, () => ListExportsInput$, () => ListExportsOutput$
|
|
2312
|
+
];
|
|
2313
|
+
export var ListGlobalTables$ = [9, n0, _LGT,
|
|
2314
|
+
0, () => ListGlobalTablesInput$, () => ListGlobalTablesOutput$
|
|
2315
|
+
];
|
|
2316
|
+
export var ListImports$ = [9, n0, _LI,
|
|
2317
|
+
0, () => ListImportsInput$, () => ListImportsOutput$
|
|
2318
|
+
];
|
|
2319
|
+
export var ListTables$ = [9, n0, _LT,
|
|
2320
|
+
0, () => ListTablesInput$, () => ListTablesOutput$
|
|
2321
|
+
];
|
|
2322
|
+
export var ListTagsOfResource$ = [9, n0, _LTOR,
|
|
2323
|
+
0, () => ListTagsOfResourceInput$, () => ListTagsOfResourceOutput$
|
|
2324
|
+
];
|
|
2325
|
+
export var PutItem$ = [9, n0, _PI,
|
|
2326
|
+
0, () => PutItemInput$, () => PutItemOutput$
|
|
2327
|
+
];
|
|
2328
|
+
export var PutResourcePolicy$ = [9, n0, _PRP,
|
|
2329
|
+
0, () => PutResourcePolicyInput$, () => PutResourcePolicyOutput$
|
|
2330
|
+
];
|
|
2331
|
+
export var Query$ = [9, n0, _Q,
|
|
2332
|
+
0, () => QueryInput$, () => QueryOutput$
|
|
2333
|
+
];
|
|
2334
|
+
export var RestoreTableFromBackup$ = [9, n0, _RTFB,
|
|
2335
|
+
0, () => RestoreTableFromBackupInput$, () => RestoreTableFromBackupOutput$
|
|
2336
|
+
];
|
|
2337
|
+
export var RestoreTableToPointInTime$ = [9, n0, _RTTPIT,
|
|
2338
|
+
0, () => RestoreTableToPointInTimeInput$, () => RestoreTableToPointInTimeOutput$
|
|
2339
|
+
];
|
|
2340
|
+
export var Scan$ = [9, n0, _Sc,
|
|
2341
|
+
0, () => ScanInput$, () => ScanOutput$
|
|
2342
|
+
];
|
|
2343
|
+
export var TagResource$ = [9, n0, _TRa,
|
|
2344
|
+
0, () => TagResourceInput$, () => __Unit
|
|
2345
|
+
];
|
|
2346
|
+
export var TransactGetItems$ = [9, n0, _TGIr,
|
|
2347
|
+
0, () => TransactGetItemsInput$, () => TransactGetItemsOutput$
|
|
2348
|
+
];
|
|
2349
|
+
export var TransactWriteItems$ = [9, n0, _TWIr,
|
|
2350
|
+
0, () => TransactWriteItemsInput$, () => TransactWriteItemsOutput$
|
|
2351
|
+
];
|
|
2352
|
+
export var UntagResource$ = [9, n0, _UR,
|
|
2353
|
+
0, () => UntagResourceInput$, () => __Unit
|
|
2354
|
+
];
|
|
2355
|
+
export var UpdateContinuousBackups$ = [9, n0, _UCB,
|
|
2356
|
+
0, () => UpdateContinuousBackupsInput$, () => UpdateContinuousBackupsOutput$
|
|
2357
|
+
];
|
|
2358
|
+
export var UpdateContributorInsights$ = [9, n0, _UCI,
|
|
2359
|
+
0, () => UpdateContributorInsightsInput$, () => UpdateContributorInsightsOutput$
|
|
2360
|
+
];
|
|
2361
|
+
export var UpdateGlobalTable$ = [9, n0, _UGT,
|
|
2362
|
+
0, () => UpdateGlobalTableInput$, () => UpdateGlobalTableOutput$
|
|
2363
|
+
];
|
|
2364
|
+
export var UpdateGlobalTableSettings$ = [9, n0, _UGTS,
|
|
2365
|
+
0, () => UpdateGlobalTableSettingsInput$, () => UpdateGlobalTableSettingsOutput$
|
|
2366
|
+
];
|
|
2367
|
+
export var UpdateItem$ = [9, n0, _UIp,
|
|
2368
|
+
0, () => UpdateItemInput$, () => UpdateItemOutput$
|
|
2369
|
+
];
|
|
2370
|
+
export var UpdateKinesisStreamingDestination$ = [9, n0, _UKSD,
|
|
2371
|
+
0, () => UpdateKinesisStreamingDestinationInput$, () => UpdateKinesisStreamingDestinationOutput$
|
|
2372
|
+
];
|
|
2373
|
+
export var UpdateTable$ = [9, n0, _UT,
|
|
2374
|
+
0, () => UpdateTableInput$, () => UpdateTableOutput$
|
|
2375
|
+
];
|
|
2376
|
+
export var UpdateTableReplicaAutoScaling$ = [9, n0, _UTRAS,
|
|
2377
|
+
0, () => UpdateTableReplicaAutoScalingInput$, () => UpdateTableReplicaAutoScalingOutput$
|
|
2378
|
+
];
|
|
2379
|
+
export var UpdateTimeToLive$ = [9, n0, _UTTL,
|
|
2380
|
+
0, () => UpdateTimeToLiveInput$, () => UpdateTimeToLiveOutput$
|
|
2381
|
+
];
|