Skip to content

Commit 55b8cb8

Browse files
committed
Update Rust and Ruby DynamoDB examples to use on-demand rather than provisioned
1 parent f9cd3ce commit 55b8cb8

File tree

1 file changed

+1
-1
lines changed
  • rustv1/cross_service/photo_asset_management/integration/tests

1 file changed

+1
-1
lines changed

rustv1/cross_service/photo_asset_management/integration/tests/update_label.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async fn create_table(common: &Common) -> Result<(), impl std::error::Error> {
2828
AttributeDefinition::builder()
2929
.attribute_name("Label")
3030
.attribute_type(aws_sdk_dynamodb::types::ScalarAttributeType::S),
31-
.billing_mode(aws_sdk_dynamodb::types::BillingMode::PayPerRequest
31+
.billing_mode(aws_sdk_dynamodb::types::BillingMode::PayPerRequest)
3232
.build(),
3333
)
3434
.send()

0 commit comments

Comments
 (0)