> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/data-types/actionparameters-object/amazonchangedynamodbtablesparameters-object.md).

# AmazonChangeDynamoDbTablesParameters Object

## Description

Parameters for the Amazon Change DynamoDB Tables action.

## Properties

### credentialIds

Registered credentials to use with the action. One and only one credential must be specified.

Type: Array of `string`

Required: Yes

### readCapacity

New read capacity value to apply to the tables.

Type: `integer`

Required: No

### regionNames

Regions to use with the action. One and only one region must be specified.

Type: Array of `string`

Required: Yes

### revertTimeInSeconds

Time (in seconds) to revert the tables to their original values.

Type: `integer`

Required: No

### tableIdentificationMethod

Method used to select tables to be modified.

Type: `string`

Valid Values:

* `all-tables`
* `by-table-name`

Required: Yes

### tableNameComparison

Comparison to use when comparing by table name. Required when `tableIdentificationMethod` is `by-table-name`.

Type: [TableNameComparison](/data-types/tablenamecomparison-object.md) object

Required: Conditional

### writeCapacity

New write capacity value to apply to the tables.

Type: `integer`

Required: No

## Sample JSON

```javascript
{
    "credentialIds": [
        "cred-00000001"
    ],
    "regionNames": [
        "us-east-1"
    ],

    "tableIdentificationMethod": "by-table-name",
    "tableNameComparison": {
        "compareType": "starts-with",
        "tableName": "prod-"
    },

    "readCapacity": 10,
    "writeCapacity": 3,

    "revertTimeInSeconds": 43200
}
```
