aws-sdk 2.566.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.
- package/CHANGELOG.md +20 -1
- package/README.md +1 -1
- package/apis/ce-2017-10-25.min.json +110 -71
- package/apis/cloudformation-2010-05-15.min.json +68 -29
- package/apis/cloudformation-2010-05-15.waiters2.json +56 -1
- package/apis/codepipeline-2015-07-09.min.json +58 -40
- package/apis/cognito-identity-2014-06-30.min.json +50 -42
- package/apis/dynamodb-2012-08-10.min.json +66 -40
- package/apis/marketplace-catalog-2018-09-17.examples.json +5 -0
- package/apis/marketplace-catalog-2018-09-17.min.json +305 -0
- package/apis/marketplace-catalog-2018-09-17.paginators.json +14 -0
- package/apis/metadata.json +11 -0
- package/apis/sso-2019-06-10.examples.json +5 -0
- package/apis/sso-2019-06-10.min.json +190 -0
- package/apis/sso-2019-06-10.paginators.json +16 -0
- package/apis/sso-oidc-2019-06-10.examples.json +5 -0
- package/apis/sso-oidc-2019-06-10.min.json +131 -0
- package/apis/sso-oidc-2019-06-10.paginators.json +4 -0
- package/clients/all.d.ts +3 -0
- package/clients/all.js +4 -1
- package/clients/cloudformation.d.ts +65 -15
- package/clients/codepipeline.d.ts +26 -0
- package/clients/cognitoidentity.d.ts +14 -5
- package/clients/comprehend.d.ts +2 -2
- package/clients/costexplorer.d.ts +66 -18
- package/clients/dynamodb.d.ts +85 -53
- package/clients/ecr.d.ts +4 -4
- package/clients/elbv2.d.ts +14 -14
- package/clients/marketplacecatalog.d.ts +421 -0
- package/clients/marketplacecatalog.js +18 -0
- package/clients/sso.d.ts +197 -0
- package/clients/sso.js +18 -0
- package/clients/ssooidc.d.ts +210 -0
- package/clients/ssooidc.js +18 -0
- package/clients/transcribeservice.d.ts +8 -5
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +239 -76
- package/dist/aws-sdk.js +423 -227
- package/dist/aws-sdk.min.js +69 -69
- package/dist/xml2js.js +117 -65
- package/lib/config_service_placeholders.d.ts +6 -0
- package/lib/core.js +1 -1
- package/lib/dynamodb/document_client.d.ts +81 -49
- package/package.json +1 -1
package/clients/dynamodb.d.ts
CHANGED
|
@@ -231,19 +231,19 @@ declare class DynamoDB extends DynamoDBCustomizations {
|
|
|
231
231
|
*/
|
|
232
232
|
tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
233
233
|
/**
|
|
234
|
-
* TransactGetItems is a synchronous operation that atomically retrieves multiple items from one or more tables (but not from indexes) in a single account and Region. A TransactGetItems call can contain up to 25 TransactGetItem objects, each of which contains a Get structure that specifies an item to retrieve from a table in the account and Region. A call to TransactGetItems cannot retrieve items from tables in more than one AWS account or Region. The aggregate size of the items in the transaction cannot exceed 4 MB.
|
|
234
|
+
* TransactGetItems is a synchronous operation that atomically retrieves multiple items from one or more tables (but not from indexes) in a single account and Region. A TransactGetItems call can contain up to 25 TransactGetItem objects, each of which contains a Get structure that specifies an item to retrieve from a table in the account and Region. A call to TransactGetItems cannot retrieve items from tables in more than one AWS account or Region. The aggregate size of the items in the transaction cannot exceed 4 MB. DynamoDB rejects the entire TransactGetItems request if any of the following is true: A conflicting operation is in the process of updating an item to be read. There is insufficient provisioned capacity for the transaction to be completed. There is a user error, such as an invalid data format. The aggregate size of the items in the transaction cannot exceed 4 MB.
|
|
235
235
|
*/
|
|
236
236
|
transactGetItems(params: DynamoDB.Types.TransactGetItemsInput, callback?: (err: AWSError, data: DynamoDB.Types.TransactGetItemsOutput) => void): Request<DynamoDB.Types.TransactGetItemsOutput, AWSError>;
|
|
237
237
|
/**
|
|
238
|
-
* TransactGetItems is a synchronous operation that atomically retrieves multiple items from one or more tables (but not from indexes) in a single account and Region. A TransactGetItems call can contain up to 25 TransactGetItem objects, each of which contains a Get structure that specifies an item to retrieve from a table in the account and Region. A call to TransactGetItems cannot retrieve items from tables in more than one AWS account or Region. The aggregate size of the items in the transaction cannot exceed 4 MB.
|
|
238
|
+
* TransactGetItems is a synchronous operation that atomically retrieves multiple items from one or more tables (but not from indexes) in a single account and Region. A TransactGetItems call can contain up to 25 TransactGetItem objects, each of which contains a Get structure that specifies an item to retrieve from a table in the account and Region. A call to TransactGetItems cannot retrieve items from tables in more than one AWS account or Region. The aggregate size of the items in the transaction cannot exceed 4 MB. DynamoDB rejects the entire TransactGetItems request if any of the following is true: A conflicting operation is in the process of updating an item to be read. There is insufficient provisioned capacity for the transaction to be completed. There is a user error, such as an invalid data format. The aggregate size of the items in the transaction cannot exceed 4 MB.
|
|
239
239
|
*/
|
|
240
240
|
transactGetItems(callback?: (err: AWSError, data: DynamoDB.Types.TransactGetItemsOutput) => void): Request<DynamoDB.Types.TransactGetItemsOutput, AWSError>;
|
|
241
241
|
/**
|
|
242
|
-
* TransactWriteItems is a synchronous write operation that groups up to 25 action requests. These actions can target items in different tables, but not in different AWS accounts or Regions, and no two actions can target the same item. For example, you cannot both ConditionCheck and Update the same item. The aggregate size of the items in the transaction cannot exceed 4 MB.
|
|
242
|
+
* TransactWriteItems is a synchronous write operation that groups up to 25 action requests. These actions can target items in different tables, but not in different AWS accounts or Regions, and no two actions can target the same item. For example, you cannot both ConditionCheck and Update the same item. The aggregate size of the items in the transaction cannot exceed 4 MB. The actions are completed atomically so that either all of them succeed, or all of them fail. They are defined by the following objects: Put — Initiates a PutItem operation to write a new item. This structure specifies the primary key of the item to be written, the name of the table to write it in, an optional condition expression that must be satisfied for the write to succeed, a list of the item's attributes, and a field indicating whether to retrieve the item's attributes if the condition is not met. Update — Initiates an UpdateItem operation to update an existing item. This structure specifies the primary key of the item to be updated, the name of the table where it resides, an optional condition expression that must be satisfied for the update to succeed, an expression that defines one or more attributes to be updated, and a field indicating whether to retrieve the item's attributes if the condition is not met. Delete — Initiates a DeleteItem operation to delete an existing item. This structure specifies the primary key of the item to be deleted, the name of the table where it resides, an optional condition expression that must be satisfied for the deletion to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met. ConditionCheck — Applies a condition to an item that is not being modified by the transaction. This structure specifies the primary key of the item to be checked, the name of the table where it resides, a condition expression that must be satisfied for the transaction to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met. DynamoDB rejects the entire TransactWriteItems request if any of the following is true: A condition in one of the condition expressions is not met. An ongoing operation is in the process of updating the same item. There is insufficient provisioned capacity for the transaction to be completed. An item size becomes too large (bigger than 400 KB), a local secondary index (LSI) becomes too large, or a similar validation error occurs because of changes made by the transaction. The aggregate size of the items in the transaction exceeds 4 MB. There is a user error, such as an invalid data format.
|
|
243
243
|
*/
|
|
244
244
|
transactWriteItems(params: DynamoDB.Types.TransactWriteItemsInput, callback?: (err: AWSError, data: DynamoDB.Types.TransactWriteItemsOutput) => void): Request<DynamoDB.Types.TransactWriteItemsOutput, AWSError>;
|
|
245
245
|
/**
|
|
246
|
-
* TransactWriteItems is a synchronous write operation that groups up to 25 action requests. These actions can target items in different tables, but not in different AWS accounts or Regions, and no two actions can target the same item. For example, you cannot both ConditionCheck and Update the same item. The aggregate size of the items in the transaction cannot exceed 4 MB.
|
|
246
|
+
* TransactWriteItems is a synchronous write operation that groups up to 25 action requests. These actions can target items in different tables, but not in different AWS accounts or Regions, and no two actions can target the same item. For example, you cannot both ConditionCheck and Update the same item. The aggregate size of the items in the transaction cannot exceed 4 MB. The actions are completed atomically so that either all of them succeed, or all of them fail. They are defined by the following objects: Put — Initiates a PutItem operation to write a new item. This structure specifies the primary key of the item to be written, the name of the table to write it in, an optional condition expression that must be satisfied for the write to succeed, a list of the item's attributes, and a field indicating whether to retrieve the item's attributes if the condition is not met. Update — Initiates an UpdateItem operation to update an existing item. This structure specifies the primary key of the item to be updated, the name of the table where it resides, an optional condition expression that must be satisfied for the update to succeed, an expression that defines one or more attributes to be updated, and a field indicating whether to retrieve the item's attributes if the condition is not met. Delete — Initiates a DeleteItem operation to delete an existing item. This structure specifies the primary key of the item to be deleted, the name of the table where it resides, an optional condition expression that must be satisfied for the deletion to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met. ConditionCheck — Applies a condition to an item that is not being modified by the transaction. This structure specifies the primary key of the item to be checked, the name of the table where it resides, a condition expression that must be satisfied for the transaction to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met. DynamoDB rejects the entire TransactWriteItems request if any of the following is true: A condition in one of the condition expressions is not met. An ongoing operation is in the process of updating the same item. There is insufficient provisioned capacity for the transaction to be completed. An item size becomes too large (bigger than 400 KB), a local secondary index (LSI) becomes too large, or a similar validation error occurs because of changes made by the transaction. The aggregate size of the items in the transaction exceeds 4 MB. There is a user error, such as an invalid data format.
|
|
247
247
|
*/
|
|
248
248
|
transactWriteItems(callback?: (err: AWSError, data: DynamoDB.Types.TransactWriteItemsOutput) => void): Request<DynamoDB.Types.TransactWriteItemsOutput, AWSError>;
|
|
249
249
|
/**
|
|
@@ -426,11 +426,11 @@ declare namespace DynamoDB {
|
|
|
426
426
|
*/
|
|
427
427
|
MaximumUnits?: PositiveLongObject;
|
|
428
428
|
/**
|
|
429
|
-
* Disabled
|
|
429
|
+
* Disabled auto scaling for this global table or global secondary index.
|
|
430
430
|
*/
|
|
431
431
|
AutoScalingDisabled?: BooleanObject;
|
|
432
432
|
/**
|
|
433
|
-
* Role ARN used for configuring
|
|
433
|
+
* Role ARN used for configuring the auto scaling policy.
|
|
434
434
|
*/
|
|
435
435
|
AutoScalingRoleArn?: String;
|
|
436
436
|
/**
|
|
@@ -448,11 +448,11 @@ declare namespace DynamoDB {
|
|
|
448
448
|
*/
|
|
449
449
|
MaximumUnits?: PositiveLongObject;
|
|
450
450
|
/**
|
|
451
|
-
* Disabled
|
|
451
|
+
* Disabled auto scaling for this global table or global secondary index.
|
|
452
452
|
*/
|
|
453
453
|
AutoScalingDisabled?: BooleanObject;
|
|
454
454
|
/**
|
|
455
|
-
* Role ARN used for configuring
|
|
455
|
+
* Role ARN used for configuring auto scaling policy.
|
|
456
456
|
*/
|
|
457
457
|
AutoScalingRoleArn?: AutoScalingRoleArn;
|
|
458
458
|
/**
|
|
@@ -466,7 +466,7 @@ declare namespace DynamoDB {
|
|
|
466
466
|
*/
|
|
467
467
|
DisableScaleIn?: BooleanObject;
|
|
468
468
|
/**
|
|
469
|
-
* 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
|
|
469
|
+
* 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.
|
|
470
470
|
*/
|
|
471
471
|
ScaleInCooldown?: IntegerObject;
|
|
472
472
|
/**
|
|
@@ -484,7 +484,7 @@ declare namespace DynamoDB {
|
|
|
484
484
|
*/
|
|
485
485
|
DisableScaleIn?: BooleanObject;
|
|
486
486
|
/**
|
|
487
|
-
* 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
|
|
487
|
+
* 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.
|
|
488
488
|
*/
|
|
489
489
|
ScaleInCooldown?: IntegerObject;
|
|
490
490
|
/**
|
|
@@ -806,7 +806,7 @@ declare namespace DynamoDB {
|
|
|
806
806
|
}
|
|
807
807
|
export interface CreateReplicaAction {
|
|
808
808
|
/**
|
|
809
|
-
* The
|
|
809
|
+
* The Region of the replica to be added.
|
|
810
810
|
*/
|
|
811
811
|
RegionName: RegionName;
|
|
812
812
|
}
|
|
@@ -832,7 +832,7 @@ declare namespace DynamoDB {
|
|
|
832
832
|
*/
|
|
833
833
|
GlobalSecondaryIndexes?: GlobalSecondaryIndexList;
|
|
834
834
|
/**
|
|
835
|
-
* Controls how you are charged for read and write throughput and how you manage capacity. This setting can be changed later. PROVISIONED -
|
|
835
|
+
* 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.
|
|
836
836
|
*/
|
|
837
837
|
BillingMode?: BillingMode;
|
|
838
838
|
/**
|
|
@@ -958,7 +958,7 @@ declare namespace DynamoDB {
|
|
|
958
958
|
}
|
|
959
959
|
export interface DeleteReplicaAction {
|
|
960
960
|
/**
|
|
961
|
-
* The
|
|
961
|
+
* The Region of the replica to be removed.
|
|
962
962
|
*/
|
|
963
963
|
RegionName: RegionName;
|
|
964
964
|
}
|
|
@@ -1181,7 +1181,7 @@ declare namespace DynamoDB {
|
|
|
1181
1181
|
*/
|
|
1182
1182
|
IndexName: IndexName;
|
|
1183
1183
|
/**
|
|
1184
|
-
* 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.
|
|
1184
|
+
* 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.
|
|
1185
1185
|
*/
|
|
1186
1186
|
KeySchema: KeySchema;
|
|
1187
1187
|
/**
|
|
@@ -1199,7 +1199,7 @@ declare namespace DynamoDB {
|
|
|
1199
1199
|
*/
|
|
1200
1200
|
IndexName?: IndexName;
|
|
1201
1201
|
/**
|
|
1202
|
-
* 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.
|
|
1202
|
+
* 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.
|
|
1203
1203
|
*/
|
|
1204
1204
|
KeySchema?: KeySchema;
|
|
1205
1205
|
/**
|
|
@@ -1211,7 +1211,7 @@ declare namespace DynamoDB {
|
|
|
1211
1211
|
*/
|
|
1212
1212
|
IndexStatus?: IndexStatus;
|
|
1213
1213
|
/**
|
|
1214
|
-
* 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.
|
|
1214
|
+
* 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.
|
|
1215
1215
|
*/
|
|
1216
1216
|
Backfilling?: Backfilling;
|
|
1217
1217
|
/**
|
|
@@ -1238,7 +1238,7 @@ declare namespace DynamoDB {
|
|
|
1238
1238
|
*/
|
|
1239
1239
|
IndexName?: IndexName;
|
|
1240
1240
|
/**
|
|
1241
|
-
* 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.
|
|
1241
|
+
* 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.
|
|
1242
1242
|
*/
|
|
1243
1243
|
KeySchema?: KeySchema;
|
|
1244
1244
|
/**
|
|
@@ -1273,14 +1273,14 @@ declare namespace DynamoDB {
|
|
|
1273
1273
|
*/
|
|
1274
1274
|
GlobalTableName?: TableName;
|
|
1275
1275
|
/**
|
|
1276
|
-
* The
|
|
1276
|
+
* The Regions where the global table has replicas.
|
|
1277
1277
|
*/
|
|
1278
1278
|
ReplicationGroup?: ReplicaList;
|
|
1279
1279
|
}
|
|
1280
1280
|
export type GlobalTableArnString = string;
|
|
1281
1281
|
export interface GlobalTableDescription {
|
|
1282
1282
|
/**
|
|
1283
|
-
* The
|
|
1283
|
+
* The Regions where the global table has replicas.
|
|
1284
1284
|
*/
|
|
1285
1285
|
ReplicationGroup?: ReplicaDescriptionList;
|
|
1286
1286
|
/**
|
|
@@ -1310,7 +1310,7 @@ declare namespace DynamoDB {
|
|
|
1310
1310
|
*/
|
|
1311
1311
|
ProvisionedWriteCapacityUnits?: PositiveLongObject;
|
|
1312
1312
|
/**
|
|
1313
|
-
*
|
|
1313
|
+
* Auto scaling settings for managing a global secondary index's write capacity units.
|
|
1314
1314
|
*/
|
|
1315
1315
|
ProvisionedWriteCapacityAutoScalingSettingsUpdate?: AutoScalingSettingsUpdate;
|
|
1316
1316
|
}
|
|
@@ -1359,7 +1359,7 @@ declare namespace DynamoDB {
|
|
|
1359
1359
|
*/
|
|
1360
1360
|
AttributeName: KeySchemaAttributeName;
|
|
1361
1361
|
/**
|
|
1362
|
-
* 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.
|
|
1362
|
+
* 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.
|
|
1363
1363
|
*/
|
|
1364
1364
|
KeyType: KeyType;
|
|
1365
1365
|
}
|
|
@@ -1494,7 +1494,7 @@ declare namespace DynamoDB {
|
|
|
1494
1494
|
*/
|
|
1495
1495
|
IndexName: IndexName;
|
|
1496
1496
|
/**
|
|
1497
|
-
* 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.
|
|
1497
|
+
* 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.
|
|
1498
1498
|
*/
|
|
1499
1499
|
KeySchema: KeySchema;
|
|
1500
1500
|
/**
|
|
@@ -1508,7 +1508,7 @@ declare namespace DynamoDB {
|
|
|
1508
1508
|
*/
|
|
1509
1509
|
IndexName?: IndexName;
|
|
1510
1510
|
/**
|
|
1511
|
-
* 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.
|
|
1511
|
+
* 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.
|
|
1512
1512
|
*/
|
|
1513
1513
|
KeySchema?: KeySchema;
|
|
1514
1514
|
/**
|
|
@@ -1535,7 +1535,7 @@ declare namespace DynamoDB {
|
|
|
1535
1535
|
*/
|
|
1536
1536
|
IndexName?: IndexName;
|
|
1537
1537
|
/**
|
|
1538
|
-
* 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.
|
|
1538
|
+
* 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.
|
|
1539
1539
|
*/
|
|
1540
1540
|
KeySchema?: KeySchema;
|
|
1541
1541
|
/**
|
|
@@ -1560,7 +1560,7 @@ declare namespace DynamoDB {
|
|
|
1560
1560
|
*/
|
|
1561
1561
|
PointInTimeRecoveryStatus?: PointInTimeRecoveryStatus;
|
|
1562
1562
|
/**
|
|
1563
|
-
* Specifies the earliest point in time you can restore your table to.
|
|
1563
|
+
* 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.
|
|
1564
1564
|
*/
|
|
1565
1565
|
EarliestRestorableDateTime?: _Date;
|
|
1566
1566
|
/**
|
|
@@ -1579,7 +1579,7 @@ declare namespace DynamoDB {
|
|
|
1579
1579
|
export type PositiveLongObject = number;
|
|
1580
1580
|
export interface Projection {
|
|
1581
1581
|
/**
|
|
1582
|
-
* 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
|
|
1582
|
+
* 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.
|
|
1583
1583
|
*/
|
|
1584
1584
|
ProjectionType?: ProjectionType;
|
|
1585
1585
|
/**
|
|
@@ -1703,7 +1703,7 @@ declare namespace DynamoDB {
|
|
|
1703
1703
|
}
|
|
1704
1704
|
export interface PutRequest {
|
|
1705
1705
|
/**
|
|
1706
|
-
* 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
|
|
1706
|
+
* 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.
|
|
1707
1707
|
*/
|
|
1708
1708
|
Item: PutItemInputAttributeMap;
|
|
1709
1709
|
}
|
|
@@ -1799,13 +1799,13 @@ declare namespace DynamoDB {
|
|
|
1799
1799
|
export type RegionName = string;
|
|
1800
1800
|
export interface Replica {
|
|
1801
1801
|
/**
|
|
1802
|
-
* The
|
|
1802
|
+
* The Region where the replica needs to be created.
|
|
1803
1803
|
*/
|
|
1804
1804
|
RegionName?: RegionName;
|
|
1805
1805
|
}
|
|
1806
1806
|
export interface ReplicaDescription {
|
|
1807
1807
|
/**
|
|
1808
|
-
* The name of the
|
|
1808
|
+
* The name of the Region.
|
|
1809
1809
|
*/
|
|
1810
1810
|
RegionName?: RegionName;
|
|
1811
1811
|
}
|
|
@@ -1824,7 +1824,7 @@ declare namespace DynamoDB {
|
|
|
1824
1824
|
*/
|
|
1825
1825
|
ProvisionedReadCapacityUnits?: PositiveLongObject;
|
|
1826
1826
|
/**
|
|
1827
|
-
*
|
|
1827
|
+
* Auto scaling settings for a global secondary index replica's read capacity units.
|
|
1828
1828
|
*/
|
|
1829
1829
|
ProvisionedReadCapacityAutoScalingSettings?: AutoScalingSettingsDescription;
|
|
1830
1830
|
/**
|
|
@@ -1832,7 +1832,7 @@ declare namespace DynamoDB {
|
|
|
1832
1832
|
*/
|
|
1833
1833
|
ProvisionedWriteCapacityUnits?: PositiveLongObject;
|
|
1834
1834
|
/**
|
|
1835
|
-
*
|
|
1835
|
+
* Auto scaling settings for a global secondary index replica's write capacity units.
|
|
1836
1836
|
*/
|
|
1837
1837
|
ProvisionedWriteCapacityAutoScalingSettings?: AutoScalingSettingsDescription;
|
|
1838
1838
|
}
|
|
@@ -1847,7 +1847,7 @@ declare namespace DynamoDB {
|
|
|
1847
1847
|
*/
|
|
1848
1848
|
ProvisionedReadCapacityUnits?: PositiveLongObject;
|
|
1849
1849
|
/**
|
|
1850
|
-
*
|
|
1850
|
+
* Auto scaling settings for managing a global secondary index replica's read capacity units.
|
|
1851
1851
|
*/
|
|
1852
1852
|
ProvisionedReadCapacityAutoScalingSettingsUpdate?: AutoScalingSettingsUpdate;
|
|
1853
1853
|
}
|
|
@@ -1855,11 +1855,11 @@ declare namespace DynamoDB {
|
|
|
1855
1855
|
export type ReplicaList = Replica[];
|
|
1856
1856
|
export interface ReplicaSettingsDescription {
|
|
1857
1857
|
/**
|
|
1858
|
-
* The
|
|
1858
|
+
* The Region name of the replica.
|
|
1859
1859
|
*/
|
|
1860
1860
|
RegionName: RegionName;
|
|
1861
1861
|
/**
|
|
1862
|
-
* The current state of the
|
|
1862
|
+
* 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.
|
|
1863
1863
|
*/
|
|
1864
1864
|
ReplicaStatus?: ReplicaStatus;
|
|
1865
1865
|
/**
|
|
@@ -1871,7 +1871,7 @@ declare namespace DynamoDB {
|
|
|
1871
1871
|
*/
|
|
1872
1872
|
ReplicaProvisionedReadCapacityUnits?: NonNegativeLongObject;
|
|
1873
1873
|
/**
|
|
1874
|
-
*
|
|
1874
|
+
* Auto scaling settings for a global table replica's read capacity units.
|
|
1875
1875
|
*/
|
|
1876
1876
|
ReplicaProvisionedReadCapacityAutoScalingSettings?: AutoScalingSettingsDescription;
|
|
1877
1877
|
/**
|
|
@@ -1879,7 +1879,7 @@ declare namespace DynamoDB {
|
|
|
1879
1879
|
*/
|
|
1880
1880
|
ReplicaProvisionedWriteCapacityUnits?: NonNegativeLongObject;
|
|
1881
1881
|
/**
|
|
1882
|
-
*
|
|
1882
|
+
* Auto scaling settings for a global table replica's write capacity units.
|
|
1883
1883
|
*/
|
|
1884
1884
|
ReplicaProvisionedWriteCapacityAutoScalingSettings?: AutoScalingSettingsDescription;
|
|
1885
1885
|
/**
|
|
@@ -1890,7 +1890,7 @@ declare namespace DynamoDB {
|
|
|
1890
1890
|
export type ReplicaSettingsDescriptionList = ReplicaSettingsDescription[];
|
|
1891
1891
|
export interface ReplicaSettingsUpdate {
|
|
1892
1892
|
/**
|
|
1893
|
-
* The
|
|
1893
|
+
* The Region of the replica to be added.
|
|
1894
1894
|
*/
|
|
1895
1895
|
RegionName: RegionName;
|
|
1896
1896
|
/**
|
|
@@ -1898,7 +1898,7 @@ declare namespace DynamoDB {
|
|
|
1898
1898
|
*/
|
|
1899
1899
|
ReplicaProvisionedReadCapacityUnits?: PositiveLongObject;
|
|
1900
1900
|
/**
|
|
1901
|
-
*
|
|
1901
|
+
* Auto scaling settings for managing a global table replica's read capacity units.
|
|
1902
1902
|
*/
|
|
1903
1903
|
ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate?: AutoScalingSettingsUpdate;
|
|
1904
1904
|
/**
|
|
@@ -1923,11 +1923,11 @@ declare namespace DynamoDB {
|
|
|
1923
1923
|
export type RestoreInProgress = boolean;
|
|
1924
1924
|
export interface RestoreSummary {
|
|
1925
1925
|
/**
|
|
1926
|
-
* ARN of the backup from which the table was restored.
|
|
1926
|
+
* The Amazon Resource Name (ARN) of the backup from which the table was restored.
|
|
1927
1927
|
*/
|
|
1928
1928
|
SourceBackupArn?: BackupArn;
|
|
1929
1929
|
/**
|
|
1930
|
-
* ARN of the source table of the backup that is being restored.
|
|
1930
|
+
* The ARN of the source table of the backup that is being restored.
|
|
1931
1931
|
*/
|
|
1932
1932
|
SourceTableArn?: TableArn;
|
|
1933
1933
|
/**
|
|
@@ -1948,6 +1948,22 @@ declare namespace DynamoDB {
|
|
|
1948
1948
|
* The Amazon Resource Name (ARN) associated with the backup.
|
|
1949
1949
|
*/
|
|
1950
1950
|
BackupArn: BackupArn;
|
|
1951
|
+
/**
|
|
1952
|
+
* The billing mode of the restored table.
|
|
1953
|
+
*/
|
|
1954
|
+
BillingModeOverride?: BillingMode;
|
|
1955
|
+
/**
|
|
1956
|
+
* 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.
|
|
1957
|
+
*/
|
|
1958
|
+
GlobalSecondaryIndexOverride?: GlobalSecondaryIndexList;
|
|
1959
|
+
/**
|
|
1960
|
+
* 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.
|
|
1961
|
+
*/
|
|
1962
|
+
LocalSecondaryIndexOverride?: LocalSecondaryIndexList;
|
|
1963
|
+
/**
|
|
1964
|
+
* Provisioned throughput settings for the restored table.
|
|
1965
|
+
*/
|
|
1966
|
+
ProvisionedThroughputOverride?: ProvisionedThroughput;
|
|
1951
1967
|
}
|
|
1952
1968
|
export interface RestoreTableFromBackupOutput {
|
|
1953
1969
|
/**
|
|
@@ -1972,6 +1988,22 @@ declare namespace DynamoDB {
|
|
|
1972
1988
|
* Time in the past to restore the table to.
|
|
1973
1989
|
*/
|
|
1974
1990
|
RestoreDateTime?: _Date;
|
|
1991
|
+
/**
|
|
1992
|
+
* The billing mode of the restored table.
|
|
1993
|
+
*/
|
|
1994
|
+
BillingModeOverride?: BillingMode;
|
|
1995
|
+
/**
|
|
1996
|
+
* 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.
|
|
1997
|
+
*/
|
|
1998
|
+
GlobalSecondaryIndexOverride?: GlobalSecondaryIndexList;
|
|
1999
|
+
/**
|
|
2000
|
+
* 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.
|
|
2001
|
+
*/
|
|
2002
|
+
LocalSecondaryIndexOverride?: LocalSecondaryIndexList;
|
|
2003
|
+
/**
|
|
2004
|
+
* Provisioned throughput settings for the restored table.
|
|
2005
|
+
*/
|
|
2006
|
+
ProvisionedThroughputOverride?: ProvisionedThroughput;
|
|
1975
2007
|
}
|
|
1976
2008
|
export interface RestoreTableToPointInTimeOutput {
|
|
1977
2009
|
/**
|
|
@@ -1989,11 +2021,11 @@ declare namespace DynamoDB {
|
|
|
1989
2021
|
*/
|
|
1990
2022
|
Status?: SSEStatus;
|
|
1991
2023
|
/**
|
|
1992
|
-
* Server-side encryption type. The only supported value is: KMS - Server-side encryption
|
|
2024
|
+
* 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).
|
|
1993
2025
|
*/
|
|
1994
2026
|
SSEType?: SSEType;
|
|
1995
2027
|
/**
|
|
1996
|
-
* The KMS customer master key (CMK) ARN used for the KMS encryption.
|
|
2028
|
+
* The KMS customer master key (CMK) ARN used for the AWS KMS encryption.
|
|
1997
2029
|
*/
|
|
1998
2030
|
KMSMasterKeyArn?: KMSMasterKeyArn;
|
|
1999
2031
|
}
|
|
@@ -2004,11 +2036,11 @@ declare namespace DynamoDB {
|
|
|
2004
2036
|
*/
|
|
2005
2037
|
Enabled?: SSEEnabled;
|
|
2006
2038
|
/**
|
|
2007
|
-
* Server-side encryption type. The only supported value is: KMS - Server-side encryption
|
|
2039
|
+
* 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).
|
|
2008
2040
|
*/
|
|
2009
2041
|
SSEType?: SSEType;
|
|
2010
2042
|
/**
|
|
2011
|
-
* The KMS
|
|
2043
|
+
* 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.
|
|
2012
2044
|
*/
|
|
2013
2045
|
KMSMasterKeyId?: KMSMasterKeyId;
|
|
2014
2046
|
}
|
|
@@ -2118,7 +2150,7 @@ declare namespace DynamoDB {
|
|
|
2118
2150
|
*/
|
|
2119
2151
|
TableArn?: TableArn;
|
|
2120
2152
|
/**
|
|
2121
|
-
* Size of the table in bytes.
|
|
2153
|
+
* Size of the table in bytes. Note that this is an approximate value.
|
|
2122
2154
|
*/
|
|
2123
2155
|
TableSizeBytes?: Long;
|
|
2124
2156
|
/**
|
|
@@ -2134,7 +2166,7 @@ declare namespace DynamoDB {
|
|
|
2134
2166
|
*/
|
|
2135
2167
|
ProvisionedThroughput: ProvisionedThroughput;
|
|
2136
2168
|
/**
|
|
2137
|
-
* Number of items in the table.
|
|
2169
|
+
* Number of items in the table. Note that this is an approximate value.
|
|
2138
2170
|
*/
|
|
2139
2171
|
ItemCount?: ItemCount;
|
|
2140
2172
|
/**
|
|
@@ -2148,7 +2180,7 @@ declare namespace DynamoDB {
|
|
|
2148
2180
|
*/
|
|
2149
2181
|
LocalSecondaryIndexes?: LocalSecondaryIndexes;
|
|
2150
2182
|
/**
|
|
2151
|
-
* 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.
|
|
2183
|
+
* 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.
|
|
2152
2184
|
*/
|
|
2153
2185
|
GlobalSecondaryIndexes?: GlobalSecondaryIndexes;
|
|
2154
2186
|
/**
|
|
@@ -2228,11 +2260,11 @@ declare namespace DynamoDB {
|
|
|
2228
2260
|
*/
|
|
2229
2261
|
BillingModeSummary?: BillingModeSummary;
|
|
2230
2262
|
/**
|
|
2231
|
-
* 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
|
|
2263
|
+
* 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.
|
|
2232
2264
|
*/
|
|
2233
2265
|
LocalSecondaryIndexes?: LocalSecondaryIndexDescriptionList;
|
|
2234
2266
|
/**
|
|
2235
|
-
* 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
|
|
2267
|
+
* 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.
|
|
2236
2268
|
*/
|
|
2237
2269
|
GlobalSecondaryIndexes?: GlobalSecondaryIndexDescriptionList;
|
|
2238
2270
|
/**
|
|
@@ -2240,7 +2272,7 @@ declare namespace DynamoDB {
|
|
|
2240
2272
|
*/
|
|
2241
2273
|
StreamSpecification?: StreamSpecification;
|
|
2242
2274
|
/**
|
|
2243
|
-
* 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:
|
|
2275
|
+
* 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
|
|
2244
2276
|
*/
|
|
2245
2277
|
LatestStreamLabel?: String;
|
|
2246
2278
|
/**
|
|
@@ -2469,7 +2501,7 @@ declare namespace DynamoDB {
|
|
|
2469
2501
|
*/
|
|
2470
2502
|
GlobalTableName: TableName;
|
|
2471
2503
|
/**
|
|
2472
|
-
* The billing mode of the global table. If GlobalTableBillingMode is not specified, the global table defaults to PROVISIONED capacity billing mode.
|
|
2504
|
+
* 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.
|
|
2473
2505
|
*/
|
|
2474
2506
|
GlobalTableBillingMode?: BillingMode;
|
|
2475
2507
|
/**
|
|
@@ -2570,7 +2602,7 @@ declare namespace DynamoDB {
|
|
|
2570
2602
|
*/
|
|
2571
2603
|
TableName: TableName;
|
|
2572
2604
|
/**
|
|
2573
|
-
* 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 -
|
|
2605
|
+
* 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.
|
|
2574
2606
|
*/
|
|
2575
2607
|
BillingMode?: BillingMode;
|
|
2576
2608
|
/**
|
|
@@ -2578,7 +2610,7 @@ declare namespace DynamoDB {
|
|
|
2578
2610
|
*/
|
|
2579
2611
|
ProvisionedThroughput?: ProvisionedThroughput;
|
|
2580
2612
|
/**
|
|
2581
|
-
* 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.
|
|
2613
|
+
* 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.
|
|
2582
2614
|
*/
|
|
2583
2615
|
GlobalSecondaryIndexUpdates?: GlobalSecondaryIndexUpdateList;
|
|
2584
2616
|
/**
|
package/clients/ecr.d.ts
CHANGED
|
@@ -180,11 +180,11 @@ declare class ECR extends Service {
|
|
|
180
180
|
*/
|
|
181
181
|
putImageScanningConfiguration(callback?: (err: AWSError, data: ECR.Types.PutImageScanningConfigurationResponse) => void): Request<ECR.Types.PutImageScanningConfigurationResponse, AWSError>;
|
|
182
182
|
/**
|
|
183
|
-
* Updates the image tag mutability settings for a repository.
|
|
183
|
+
* Updates the image tag mutability settings for a repository. When a repository is configured with tag immutability, all image tags within the repository will be prevented them from being overwritten. For more information, see Image Tag Mutability in the Amazon Elastic Container Registry User Guide.
|
|
184
184
|
*/
|
|
185
185
|
putImageTagMutability(params: ECR.Types.PutImageTagMutabilityRequest, callback?: (err: AWSError, data: ECR.Types.PutImageTagMutabilityResponse) => void): Request<ECR.Types.PutImageTagMutabilityResponse, AWSError>;
|
|
186
186
|
/**
|
|
187
|
-
* Updates the image tag mutability settings for a repository.
|
|
187
|
+
* Updates the image tag mutability settings for a repository. When a repository is configured with tag immutability, all image tags within the repository will be prevented them from being overwritten. For more information, see Image Tag Mutability in the Amazon Elastic Container Registry User Guide.
|
|
188
188
|
*/
|
|
189
189
|
putImageTagMutability(callback?: (err: AWSError, data: ECR.Types.PutImageTagMutabilityResponse) => void): Request<ECR.Types.PutImageTagMutabilityResponse, AWSError>;
|
|
190
190
|
/**
|
|
@@ -204,11 +204,11 @@ declare class ECR extends Service {
|
|
|
204
204
|
*/
|
|
205
205
|
setRepositoryPolicy(callback?: (err: AWSError, data: ECR.Types.SetRepositoryPolicyResponse) => void): Request<ECR.Types.SetRepositoryPolicyResponse, AWSError>;
|
|
206
206
|
/**
|
|
207
|
-
* Starts an image vulnerability scan.
|
|
207
|
+
* Starts an image vulnerability scan. An image scan can only be started once per day on an individual image. This limit includes if an image was scanned on initial push. For more information, see Image Scanning in the Amazon Elastic Container Registry User Guide.
|
|
208
208
|
*/
|
|
209
209
|
startImageScan(params: ECR.Types.StartImageScanRequest, callback?: (err: AWSError, data: ECR.Types.StartImageScanResponse) => void): Request<ECR.Types.StartImageScanResponse, AWSError>;
|
|
210
210
|
/**
|
|
211
|
-
* Starts an image vulnerability scan.
|
|
211
|
+
* Starts an image vulnerability scan. An image scan can only be started once per day on an individual image. This limit includes if an image was scanned on initial push. For more information, see Image Scanning in the Amazon Elastic Container Registry User Guide.
|
|
212
212
|
*/
|
|
213
213
|
startImageScan(callback?: (err: AWSError, data: ECR.Types.StartImageScanResponse) => void): Request<ECR.Types.StartImageScanResponse, AWSError>;
|
|
214
214
|
/**
|