library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Update DynamoDB Table

Update settings for a DynamoDB Table.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.update_dynamodb_table \
--arg 'region=<string>' \
--arg 'table_name=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = aws.pipeline.update_dynamodb_table
args = {
region = <string>
table_name = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
table_namestringYesThe name of the DynamoDB table to update.-

Outputs

NameDescription
table_nameContains the details of a DynamoDB Table.