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