aws-sdk 2.569.0 → 2.570.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.
@@ -196,6 +196,7 @@ export abstract class ConfigurationServicePlaceholders {
196
196
  savingsplans?: AWS.SavingsPlans.Types.ClientConfiguration;
197
197
  sso?: AWS.SSO.Types.ClientConfiguration;
198
198
  ssooidc?: AWS.SSOOIDC.Types.ClientConfiguration;
199
+ marketplacecatalog?: AWS.MarketplaceCatalog.Types.ClientConfiguration;
199
200
  }
200
201
  export interface ConfigurationServiceApiVersions {
201
202
  acm?: AWS.ACM.Types.apiVersion;
@@ -394,4 +395,5 @@ export interface ConfigurationServiceApiVersions {
394
395
  savingsplans?: AWS.SavingsPlans.Types.apiVersion;
395
396
  sso?: AWS.SSO.Types.apiVersion;
396
397
  ssooidc?: AWS.SSOOIDC.Types.apiVersion;
398
+ marketplacecatalog?: AWS.MarketplaceCatalog.Types.apiVersion;
397
399
  }
package/lib/core.js CHANGED
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.569.0',
23
+ VERSION: '2.570.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -187,11 +187,11 @@ export namespace DocumentClient {
187
187
  */
188
188
  MaximumUnits?: PositiveLongObject;
189
189
  /**
190
- * Disabled autoscaling for this global table or global secondary index.
190
+ * Disabled auto scaling for this global table or global secondary index.
191
191
  */
192
192
  AutoScalingDisabled?: BooleanObject;
193
193
  /**
194
- * Role ARN used for configuring autoScaling policy.
194
+ * Role ARN used for configuring the auto scaling policy.
195
195
  */
196
196
  AutoScalingRoleArn?: String;
197
197
  /**
@@ -209,11 +209,11 @@ export namespace DocumentClient {
209
209
  */
210
210
  MaximumUnits?: PositiveLongObject;
211
211
  /**
212
- * Disabled autoscaling for this global table or global secondary index.
212
+ * Disabled auto scaling for this global table or global secondary index.
213
213
  */
214
214
  AutoScalingDisabled?: BooleanObject;
215
215
  /**
216
- * Role ARN used for configuring autoscaling policy.
216
+ * Role ARN used for configuring auto scaling policy.
217
217
  */
218
218
  AutoScalingRoleArn?: AutoScalingRoleArn;
219
219
  /**
@@ -227,7 +227,7 @@ export namespace DocumentClient {
227
227
  */
228
228
  DisableScaleIn?: BooleanObject;
229
229
  /**
230
- * The amount of time, in seconds, after a scale in activity completes before another scale in activity can start. The cooldown period is used to block subsequent scale in requests until it has expired. You should scale in conservatively to protect your application's availability. However, if another alarm triggers a scale out policy during the cooldown period after a scale-in, application autoscaling scales out your scalable target immediately.
230
+ * The amount of time, in seconds, after a scale in activity completes before another scale in activity can start. The cooldown period is used to block subsequent scale in requests until it has expired. You should scale in conservatively to protect your application's availability. However, if another alarm triggers a scale out policy during the cooldown period after a scale-in, application auto scaling scales out your scalable target immediately.
231
231
  */
232
232
  ScaleInCooldown?: IntegerObject;
233
233
  /**
@@ -245,7 +245,7 @@ export namespace DocumentClient {
245
245
  */
246
246
  DisableScaleIn?: BooleanObject;
247
247
  /**
248
- * The amount of time, in seconds, after a scale in activity completes before another scale in activity can start. The cooldown period is used to block subsequent scale in requests until it has expired. You should scale in conservatively to protect your application's availability. However, if another alarm triggers a scale out policy during the cooldown period after a scale-in, application autoscaling scales out your scalable target immediately.
248
+ * The amount of time, in seconds, after a scale in activity completes before another scale in activity can start. The cooldown period is used to block subsequent scale in requests until it has expired. You should scale in conservatively to protect your application's availability. However, if another alarm triggers a scale out policy during the cooldown period after a scale-in, application auto scaling scales out your scalable target immediately.
249
249
  */
250
250
  ScaleInCooldown?: IntegerObject;
251
251
  /**
@@ -567,7 +567,7 @@ export namespace DocumentClient {
567
567
  }
568
568
  export interface CreateReplicaAction {
569
569
  /**
570
- * The region of the replica to be added.
570
+ * The Region of the replica to be added.
571
571
  */
572
572
  RegionName: RegionName;
573
573
  }
@@ -593,7 +593,7 @@ export namespace DocumentClient {
593
593
  */
594
594
  GlobalSecondaryIndexes?: GlobalSecondaryIndexList;
595
595
  /**
596
- * Controls how you are charged for read and write throughput and how you manage capacity. This setting can be changed later. PROVISIONED - Sets the billing mode to PROVISIONED. We recommend using PROVISIONED for predictable workloads. PAY_PER_REQUEST - Sets the billing mode to PAY_PER_REQUEST. We recommend using PAY_PER_REQUEST for unpredictable workloads.
596
+ * Controls how you are charged for read and write throughput and how you manage capacity. This setting can be changed later. PROVISIONED - We recommend using PROVISIONED for predictable workloads. PROVISIONED sets the billing mode to Provisioned Mode. PAY_PER_REQUEST - We recommend using PAY_PER_REQUEST for unpredictable workloads. PAY_PER_REQUEST sets the billing mode to On-Demand Mode.
597
597
  */
598
598
  BillingMode?: BillingMode;
599
599
  /**
@@ -719,7 +719,7 @@ export namespace DocumentClient {
719
719
  }
720
720
  export interface DeleteReplicaAction {
721
721
  /**
722
- * The region of the replica to be removed.
722
+ * The Region of the replica to be removed.
723
723
  */
724
724
  RegionName: RegionName;
725
725
  }
@@ -942,7 +942,7 @@ export namespace DocumentClient {
942
942
  */
943
943
  IndexName: IndexName;
944
944
  /**
945
- * The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
945
+ * The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
946
946
  */
947
947
  KeySchema: KeySchema;
948
948
  /**
@@ -960,7 +960,7 @@ export namespace DocumentClient {
960
960
  */
961
961
  IndexName?: IndexName;
962
962
  /**
963
- * The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
963
+ * The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
964
964
  */
965
965
  KeySchema?: KeySchema;
966
966
  /**
@@ -972,7 +972,7 @@ export namespace DocumentClient {
972
972
  */
973
973
  IndexStatus?: IndexStatus;
974
974
  /**
975
- * Indicates whether the index is currently backfilling. Backfilling is the process of reading items from the table and determining whether they can be added to the index. (Not all items will qualify: For example, a partition key cannot have any duplicate values.) If an item can be added to the index, DynamoDB will do so. After all items have been processed, the backfilling operation is complete and Backfilling is false. For indexes that were created during a CreateTable operation, the Backfilling attribute does not appear in the DescribeTable output.
975
+ * Indicates whether the index is currently backfilling. Backfilling is the process of reading items from the table and determining whether they can be added to the index. (Not all items will qualify: For example, a partition key cannot have any duplicate values.) If an item can be added to the index, DynamoDB will do so. After all items have been processed, the backfilling operation is complete and Backfilling is false. You can delete an index that is being created during the Backfilling phase when IndexStatus is set to CREATING and Backfilling is true. You can't delete the index that is being created when IndexStatus is set to CREATING and Backfilling is false. For indexes that were created during a CreateTable operation, the Backfilling attribute does not appear in the DescribeTable output.
976
976
  */
977
977
  Backfilling?: Backfilling;
978
978
  /**
@@ -999,7 +999,7 @@ export namespace DocumentClient {
999
999
  */
1000
1000
  IndexName?: IndexName;
1001
1001
  /**
1002
- * The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
1002
+ * The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
1003
1003
  */
1004
1004
  KeySchema?: KeySchema;
1005
1005
  /**
@@ -1034,14 +1034,14 @@ export namespace DocumentClient {
1034
1034
  */
1035
1035
  GlobalTableName?: TableName;
1036
1036
  /**
1037
- * The regions where the global table has replicas.
1037
+ * The Regions where the global table has replicas.
1038
1038
  */
1039
1039
  ReplicationGroup?: ReplicaList;
1040
1040
  }
1041
1041
  export type GlobalTableArnString = string;
1042
1042
  export interface GlobalTableDescription {
1043
1043
  /**
1044
- * The regions where the global table has replicas.
1044
+ * The Regions where the global table has replicas.
1045
1045
  */
1046
1046
  ReplicationGroup?: ReplicaDescriptionList;
1047
1047
  /**
@@ -1071,7 +1071,7 @@ export namespace DocumentClient {
1071
1071
  */
1072
1072
  ProvisionedWriteCapacityUnits?: PositiveLongObject;
1073
1073
  /**
1074
- * AutoScaling settings for managing a global secondary index's write capacity units.
1074
+ * Auto scaling settings for managing a global secondary index's write capacity units.
1075
1075
  */
1076
1076
  ProvisionedWriteCapacityAutoScalingSettingsUpdate?: AutoScalingSettingsUpdate;
1077
1077
  }
@@ -1120,7 +1120,7 @@ export namespace DocumentClient {
1120
1120
  */
1121
1121
  AttributeName: KeySchemaAttributeName;
1122
1122
  /**
1123
- * The role that this key attribute will assume: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
1123
+ * The role that this key attribute will assume: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
1124
1124
  */
1125
1125
  KeyType: KeyType;
1126
1126
  }
@@ -1255,7 +1255,7 @@ export namespace DocumentClient {
1255
1255
  */
1256
1256
  IndexName: IndexName;
1257
1257
  /**
1258
- * The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
1258
+ * The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
1259
1259
  */
1260
1260
  KeySchema: KeySchema;
1261
1261
  /**
@@ -1269,7 +1269,7 @@ export namespace DocumentClient {
1269
1269
  */
1270
1270
  IndexName?: IndexName;
1271
1271
  /**
1272
- * The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
1272
+ * The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
1273
1273
  */
1274
1274
  KeySchema?: KeySchema;
1275
1275
  /**
@@ -1296,7 +1296,7 @@ export namespace DocumentClient {
1296
1296
  */
1297
1297
  IndexName?: IndexName;
1298
1298
  /**
1299
- * The complete key schema for a local secondary index, which consists of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB' usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
1299
+ * The complete key schema for a local secondary index, which consists of one or more pairs of attribute names and key types: HASH - partition key RANGE - sort key The partition key of an item is also known as its hash attribute. The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. The sort key of an item is also known as its range attribute. The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
1300
1300
  */
1301
1301
  KeySchema?: KeySchema;
1302
1302
  /**
@@ -1321,7 +1321,7 @@ export namespace DocumentClient {
1321
1321
  */
1322
1322
  PointInTimeRecoveryStatus?: PointInTimeRecoveryStatus;
1323
1323
  /**
1324
- * Specifies the earliest point in time you can restore your table to. It You can restore your table to any point in time during the last 35 days.
1324
+ * Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days.
1325
1325
  */
1326
1326
  EarliestRestorableDateTime?: _Date;
1327
1327
  /**
@@ -1340,7 +1340,7 @@ export namespace DocumentClient {
1340
1340
  export type PositiveLongObject = number;
1341
1341
  export interface Projection {
1342
1342
  /**
1343
- * The set of attributes that are projected into the index: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - Only the specified table attributes are projected into the index. The list of projected attributes are in NonKeyAttributes. ALL - All of the table attributes are projected into the index.
1343
+ * The set of attributes that are projected into the index: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - Only the specified table attributes are projected into the index. The list of projected attributes is in NonKeyAttributes. ALL - All of the table attributes are projected into the index.
1344
1344
  */
1345
1345
  ProjectionType?: ProjectionType;
1346
1346
  /**
@@ -1464,7 +1464,7 @@ export namespace DocumentClient {
1464
1464
  }
1465
1465
  export interface PutRequest {
1466
1466
  /**
1467
- * A map of attribute name to attribute values, representing the primary key of an item to be processed by PutItem. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema. If any attributes are present in the item which are part of an index key schema for the table, their types must match the index key schema.
1467
+ * A map of attribute name to attribute values, representing the primary key of an item to be processed by PutItem. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema. If any attributes are present in the item that are part of an index key schema for the table, their types must match the index key schema.
1468
1468
  */
1469
1469
  Item: PutItemInputAttributeMap;
1470
1470
  }
@@ -1560,13 +1560,13 @@ export namespace DocumentClient {
1560
1560
  export type RegionName = string;
1561
1561
  export interface Replica {
1562
1562
  /**
1563
- * The region where the replica needs to be created.
1563
+ * The Region where the replica needs to be created.
1564
1564
  */
1565
1565
  RegionName?: RegionName;
1566
1566
  }
1567
1567
  export interface ReplicaDescription {
1568
1568
  /**
1569
- * The name of the region.
1569
+ * The name of the Region.
1570
1570
  */
1571
1571
  RegionName?: RegionName;
1572
1572
  }
@@ -1585,7 +1585,7 @@ export namespace DocumentClient {
1585
1585
  */
1586
1586
  ProvisionedReadCapacityUnits?: PositiveLongObject;
1587
1587
  /**
1588
- * Autoscaling settings for a global secondary index replica's read capacity units.
1588
+ * Auto scaling settings for a global secondary index replica's read capacity units.
1589
1589
  */
1590
1590
  ProvisionedReadCapacityAutoScalingSettings?: AutoScalingSettingsDescription;
1591
1591
  /**
@@ -1593,7 +1593,7 @@ export namespace DocumentClient {
1593
1593
  */
1594
1594
  ProvisionedWriteCapacityUnits?: PositiveLongObject;
1595
1595
  /**
1596
- * AutoScaling settings for a global secondary index replica's write capacity units.
1596
+ * Auto scaling settings for a global secondary index replica's write capacity units.
1597
1597
  */
1598
1598
  ProvisionedWriteCapacityAutoScalingSettings?: AutoScalingSettingsDescription;
1599
1599
  }
@@ -1608,7 +1608,7 @@ export namespace DocumentClient {
1608
1608
  */
1609
1609
  ProvisionedReadCapacityUnits?: PositiveLongObject;
1610
1610
  /**
1611
- * Autoscaling settings for managing a global secondary index replica's read capacity units.
1611
+ * Auto scaling settings for managing a global secondary index replica's read capacity units.
1612
1612
  */
1613
1613
  ProvisionedReadCapacityAutoScalingSettingsUpdate?: AutoScalingSettingsUpdate;
1614
1614
  }
@@ -1616,11 +1616,11 @@ export namespace DocumentClient {
1616
1616
  export type ReplicaList = Replica[];
1617
1617
  export interface ReplicaSettingsDescription {
1618
1618
  /**
1619
- * The region name of the replica.
1619
+ * The Region name of the replica.
1620
1620
  */
1621
1621
  RegionName: RegionName;
1622
1622
  /**
1623
- * The current state of the region: CREATING - The region is being created. UPDATING - The region is being updated. DELETING - The region is being deleted. ACTIVE - The region is ready for use.
1623
+ * The current state of the Region: CREATING - The Region is being created. UPDATING - The Region is being updated. DELETING - The Region is being deleted. ACTIVE - The Region is ready for use.
1624
1624
  */
1625
1625
  ReplicaStatus?: ReplicaStatus;
1626
1626
  /**
@@ -1632,7 +1632,7 @@ export namespace DocumentClient {
1632
1632
  */
1633
1633
  ReplicaProvisionedReadCapacityUnits?: NonNegativeLongObject;
1634
1634
  /**
1635
- * Autoscaling settings for a global table replica's read capacity units.
1635
+ * Auto scaling settings for a global table replica's read capacity units.
1636
1636
  */
1637
1637
  ReplicaProvisionedReadCapacityAutoScalingSettings?: AutoScalingSettingsDescription;
1638
1638
  /**
@@ -1640,7 +1640,7 @@ export namespace DocumentClient {
1640
1640
  */
1641
1641
  ReplicaProvisionedWriteCapacityUnits?: NonNegativeLongObject;
1642
1642
  /**
1643
- * AutoScaling settings for a global table replica's write capacity units.
1643
+ * Auto scaling settings for a global table replica's write capacity units.
1644
1644
  */
1645
1645
  ReplicaProvisionedWriteCapacityAutoScalingSettings?: AutoScalingSettingsDescription;
1646
1646
  /**
@@ -1651,7 +1651,7 @@ export namespace DocumentClient {
1651
1651
  export type ReplicaSettingsDescriptionList = ReplicaSettingsDescription[];
1652
1652
  export interface ReplicaSettingsUpdate {
1653
1653
  /**
1654
- * The region of the replica to be added.
1654
+ * The Region of the replica to be added.
1655
1655
  */
1656
1656
  RegionName: RegionName;
1657
1657
  /**
@@ -1659,7 +1659,7 @@ export namespace DocumentClient {
1659
1659
  */
1660
1660
  ReplicaProvisionedReadCapacityUnits?: PositiveLongObject;
1661
1661
  /**
1662
- * Autoscaling settings for managing a global table replica's read capacity units.
1662
+ * Auto scaling settings for managing a global table replica's read capacity units.
1663
1663
  */
1664
1664
  ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate?: AutoScalingSettingsUpdate;
1665
1665
  /**
@@ -1684,11 +1684,11 @@ export namespace DocumentClient {
1684
1684
  export type RestoreInProgress = boolean;
1685
1685
  export interface RestoreSummary {
1686
1686
  /**
1687
- * ARN of the backup from which the table was restored.
1687
+ * The Amazon Resource Name (ARN) of the backup from which the table was restored.
1688
1688
  */
1689
1689
  SourceBackupArn?: BackupArn;
1690
1690
  /**
1691
- * ARN of the source table of the backup that is being restored.
1691
+ * The ARN of the source table of the backup that is being restored.
1692
1692
  */
1693
1693
  SourceTableArn?: TableArn;
1694
1694
  /**
@@ -1709,6 +1709,22 @@ export namespace DocumentClient {
1709
1709
  * The Amazon Resource Name (ARN) associated with the backup.
1710
1710
  */
1711
1711
  BackupArn: BackupArn;
1712
+ /**
1713
+ * The billing mode of the restored table.
1714
+ */
1715
+ BillingModeOverride?: BillingMode;
1716
+ /**
1717
+ * List of global secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.
1718
+ */
1719
+ GlobalSecondaryIndexOverride?: GlobalSecondaryIndexList;
1720
+ /**
1721
+ * List of local secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.
1722
+ */
1723
+ LocalSecondaryIndexOverride?: LocalSecondaryIndexList;
1724
+ /**
1725
+ * Provisioned throughput settings for the restored table.
1726
+ */
1727
+ ProvisionedThroughputOverride?: ProvisionedThroughput;
1712
1728
  }
1713
1729
  export interface RestoreTableFromBackupOutput {
1714
1730
  /**
@@ -1733,6 +1749,22 @@ export namespace DocumentClient {
1733
1749
  * Time in the past to restore the table to.
1734
1750
  */
1735
1751
  RestoreDateTime?: _Date;
1752
+ /**
1753
+ * The billing mode of the restored table.
1754
+ */
1755
+ BillingModeOverride?: BillingMode;
1756
+ /**
1757
+ * List of global secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.
1758
+ */
1759
+ GlobalSecondaryIndexOverride?: GlobalSecondaryIndexList;
1760
+ /**
1761
+ * List of local secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.
1762
+ */
1763
+ LocalSecondaryIndexOverride?: LocalSecondaryIndexList;
1764
+ /**
1765
+ * Provisioned throughput settings for the restored table.
1766
+ */
1767
+ ProvisionedThroughputOverride?: ProvisionedThroughput;
1736
1768
  }
1737
1769
  export interface RestoreTableToPointInTimeOutput {
1738
1770
  /**
@@ -1750,11 +1782,11 @@ export namespace DocumentClient {
1750
1782
  */
1751
1783
  Status?: SSEStatus;
1752
1784
  /**
1753
- * Server-side encryption type. The only supported value is: KMS - Server-side encryption which uses AWS Key Management Service. Key is stored in your account and is managed by AWS KMS (KMS charges apply).
1785
+ * Server-side encryption type. The only supported value is: KMS - Server-side encryption that uses AWS Key Management Service. The key is stored in your account and is managed by AWS KMS (AWS KMS charges apply).
1754
1786
  */
1755
1787
  SSEType?: SSEType;
1756
1788
  /**
1757
- * The KMS customer master key (CMK) ARN used for the KMS encryption.
1789
+ * The KMS customer master key (CMK) ARN used for the AWS KMS encryption.
1758
1790
  */
1759
1791
  KMSMasterKeyArn?: KMSMasterKeyArn;
1760
1792
  }
@@ -1765,11 +1797,11 @@ export namespace DocumentClient {
1765
1797
  */
1766
1798
  Enabled?: SSEEnabled;
1767
1799
  /**
1768
- * Server-side encryption type. The only supported value is: KMS - Server-side encryption which uses AWS Key Management Service. Key is stored in your account and is managed by AWS KMS (KMS charges apply).
1800
+ * Server-side encryption type. The only supported value is: KMS - Server-side encryption that uses AWS Key Management Service. The key is stored in your account and is managed by AWS KMS (AWS KMS charges apply).
1769
1801
  */
1770
1802
  SSEType?: SSEType;
1771
1803
  /**
1772
- * The KMS Customer Master Key (CMK) which should be used for the KMS encryption. To specify a CMK, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. Note that you should only provide this parameter if the key is different from the default DynamoDB Customer Master Key alias/aws/dynamodb.
1804
+ * The KMS customer master key (CMK) that should be used for the AWS KMS encryption. To specify a CMK, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. Note that you should only provide this parameter if the key is different from the default DynamoDB customer master key alias/aws/dynamodb.
1773
1805
  */
1774
1806
  KMSMasterKeyId?: KMSMasterKeyId;
1775
1807
  }
@@ -1879,7 +1911,7 @@ export namespace DocumentClient {
1879
1911
  */
1880
1912
  TableArn?: TableArn;
1881
1913
  /**
1882
- * Size of the table in bytes. Please note this is an approximate value.
1914
+ * Size of the table in bytes. Note that this is an approximate value.
1883
1915
  */
1884
1916
  TableSizeBytes?: Long;
1885
1917
  /**
@@ -1895,7 +1927,7 @@ export namespace DocumentClient {
1895
1927
  */
1896
1928
  ProvisionedThroughput: ProvisionedThroughput;
1897
1929
  /**
1898
- * Number of items in the table. Please note this is an approximate value.
1930
+ * Number of items in the table. Note that this is an approximate value.
1899
1931
  */
1900
1932
  ItemCount?: ItemCount;
1901
1933
  /**
@@ -1909,7 +1941,7 @@ export namespace DocumentClient {
1909
1941
  */
1910
1942
  LocalSecondaryIndexes?: LocalSecondaryIndexes;
1911
1943
  /**
1912
- * Represents the GSI properties for the table when the backup was created. It includes the IndexName, KeySchema, Projection and ProvisionedThroughput for the GSIs on the table at the time of backup.
1944
+ * Represents the GSI properties for the table when the backup was created. It includes the IndexName, KeySchema, Projection, and ProvisionedThroughput for the GSIs on the table at the time of backup.
1913
1945
  */
1914
1946
  GlobalSecondaryIndexes?: GlobalSecondaryIndexes;
1915
1947
  /**
@@ -1989,11 +2021,11 @@ export namespace DocumentClient {
1989
2021
  */
1990
2022
  BillingModeSummary?: BillingModeSummary;
1991
2023
  /**
1992
- * Represents one or more local secondary indexes on the table. Each index is scoped to a given partition key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of: IndexName - The name of the local secondary index. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - Only the specified table attributes are projected into the index. The list of projected attributes are in NonKeyAttributes. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. ItemCount - Represents the number of items in the index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. If the table is in the DELETING state, no information about indexes will be returned.
2024
+ * Represents one or more local secondary indexes on the table. Each index is scoped to a given partition key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of: IndexName - The name of the local secondary index. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - Only the specified table attributes are projected into the index. The list of projected attributes is in NonKeyAttributes. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. IndexSizeBytes - Represents the total size of the index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. ItemCount - Represents the number of items in the index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. If the table is in the DELETING state, no information about indexes will be returned.
1993
2025
  */
1994
2026
  LocalSecondaryIndexes?: LocalSecondaryIndexDescriptionList;
1995
2027
  /**
1996
- * The global secondary indexes, if any, on the table. Each index is scoped to a given partition key value. Each element is composed of: Backfilling - If true, then the index is currently in the backfilling phase. Backfilling occurs only when a new global secondary index is added to the table; it is the process by which DynamoDB populates the new index with data from the table. (This attribute does not appear for indexes that were created during a CreateTable operation.) IndexName - The name of the global secondary index. IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. IndexStatus - The current status of the global secondary index: CREATING - The index is being created. UPDATING - The index is being updated. DELETING - The index is being deleted. ACTIVE - The index is ready for use. ItemCount - The number of items in the global secondary index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - Only the specified table attributes are projected into the index. The list of projected attributes are in NonKeyAttributes. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. ProvisionedThroughput - The provisioned throughput settings for the global secondary index, consisting of read and write capacity units, along with data about increases and decreases. If the table is in the DELETING state, no information about indexes will be returned.
2028
+ * The global secondary indexes, if any, on the table. Each index is scoped to a given partition key value. Each element is composed of: Backfilling - If true, then the index is currently in the backfilling phase. Backfilling occurs only when a new global secondary index is added to the table. It is the process by which DynamoDB populates the new index with data from the table. (This attribute does not appear for indexes that were created during a CreateTable operation.) You can delete an index that is being created during the Backfilling phase when IndexStatus is set to CREATING and Backfilling is true. You can't delete the index that is being created when IndexStatus is set to CREATING and Backfilling is false. (This attribute does not appear for indexes that were created during a CreateTable operation.) IndexName - The name of the global secondary index. IndexSizeBytes - The total size of the global secondary index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. IndexStatus - The current status of the global secondary index: CREATING - The index is being created. UPDATING - The index is being updated. DELETING - The index is being deleted. ACTIVE - The index is ready for use. ItemCount - The number of items in the global secondary index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value. KeySchema - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table. Projection - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of: ProjectionType - One of the following: KEYS_ONLY - Only the index and primary keys are projected into the index. INCLUDE - Only the specified table attributes are projected into the index. The list of projected attributes is in NonKeyAttributes. ALL - All of the table attributes are projected into the index. NonKeyAttributes - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in NonKeyAttributes, summed across all of the secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. ProvisionedThroughput - The provisioned throughput settings for the global secondary index, consisting of read and write capacity units, along with data about increases and decreases. If the table is in the DELETING state, no information about indexes will be returned.
1997
2029
  */
1998
2030
  GlobalSecondaryIndexes?: GlobalSecondaryIndexDescriptionList;
1999
2031
  /**
@@ -2001,7 +2033,7 @@ export namespace DocumentClient {
2001
2033
  */
2002
2034
  StreamSpecification?: StreamSpecification;
2003
2035
  /**
2004
- * A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique: the AWS customer ID. the table name. the StreamLabel.
2036
+ * A timestamp, in ISO 8601 format, for this stream. Note that LatestStreamLabel is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique: AWS customer ID Table name StreamLabel
2005
2037
  */
2006
2038
  LatestStreamLabel?: String;
2007
2039
  /**
@@ -2230,7 +2262,7 @@ export namespace DocumentClient {
2230
2262
  */
2231
2263
  GlobalTableName: TableName;
2232
2264
  /**
2233
- * The billing mode of the global table. If GlobalTableBillingMode is not specified, the global table defaults to PROVISIONED capacity billing mode.
2265
+ * The billing mode of the global table. If GlobalTableBillingMode is not specified, the global table defaults to PROVISIONED capacity billing mode. PROVISIONED - We recommend using PROVISIONED for predictable workloads. PROVISIONED sets the billing mode to Provisioned Mode. PAY_PER_REQUEST - We recommend using PAY_PER_REQUEST for unpredictable workloads. PAY_PER_REQUEST sets the billing mode to On-Demand Mode.
2234
2266
  */
2235
2267
  GlobalTableBillingMode?: BillingMode;
2236
2268
  /**
@@ -2331,7 +2363,7 @@ export namespace DocumentClient {
2331
2363
  */
2332
2364
  TableName: TableName;
2333
2365
  /**
2334
- * Controls how you are charged for read and write throughput and how you manage capacity. When switching from pay-per-request to provisioned capacity, initial provisioned capacity values must be set. The initial provisioned capacity values are estimated based on the consumed read and write capacity of your table and global secondary indexes over the past 30 minutes. PROVISIONED - Sets the billing mode to PROVISIONED. We recommend using PROVISIONED for predictable workloads. PAY_PER_REQUEST - Sets the billing mode to PAY_PER_REQUEST. We recommend using PAY_PER_REQUEST for unpredictable workloads.
2366
+ * Controls how you are charged for read and write throughput and how you manage capacity. When switching from pay-per-request to provisioned capacity, initial provisioned capacity values must be set. The initial provisioned capacity values are estimated based on the consumed read and write capacity of your table and global secondary indexes over the past 30 minutes. PROVISIONED - We recommend using PROVISIONED for predictable workloads. PROVISIONED sets the billing mode to Provisioned Mode. PAY_PER_REQUEST - We recommend using PAY_PER_REQUEST for unpredictable workloads. PAY_PER_REQUEST sets the billing mode to On-Demand Mode.
2335
2367
  */
2336
2368
  BillingMode?: BillingMode;
2337
2369
  /**
@@ -2339,7 +2371,7 @@ export namespace DocumentClient {
2339
2371
  */
2340
2372
  ProvisionedThroughput?: ProvisionedThroughput;
2341
2373
  /**
2342
- * An array of one or more global secondary indexes for the table. For each index in the array, you can request one action: Create - add a new global secondary index to the table. Update - modify the provisioned throughput settings of an existing global secondary index. Delete - remove a global secondary index from the table. For more information, see Managing Global Secondary Indexes in the Amazon DynamoDB Developer Guide.
2374
+ * An array of one or more global secondary indexes for the table. For each index in the array, you can request one action: Create - add a new global secondary index to the table. Update - modify the provisioned throughput settings of an existing global secondary index. Delete - remove a global secondary index from the table. You can create or delete only one global secondary index per UpdateTable operation. For more information, see Managing Global Secondary Indexes in the Amazon DynamoDB Developer Guide.
2343
2375
  */
2344
2376
  GlobalSecondaryIndexUpdates?: GlobalSecondaryIndexUpdateList;
2345
2377
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.569.0",
4
+ "version": "2.570.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",