Skip to content

Commit

Permalink
Rust: Updates for SDK changes Oct 30 2023 (#5588)
Browse files Browse the repository at this point in the history
* Updates for Rust changes Oct 30 2023
* Use rt-tokio in aws-smithy-types for aws_sdk_s3::primitives::ByteStream::from_path_body_0_4
* Bump READMEs
  • Loading branch information
DavidSouther authored and ford-at-aws committed Dec 15, 2023
1 parent 7bddbf9 commit 6f1649e
Show file tree
Hide file tree
Showing 62 changed files with 132 additions and 109 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
check:
name: Check
runs-on: ubuntu-latest
runs-on: temporary-sizing-testing_ubuntu-latest_32-core
steps:
- name: setup
run: >
Expand Down
1 change: 1 addition & 0 deletions rust_dev_preview/cross_service/detect_faces/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-rekognition = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-s3 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next", features = ["rt-tokio"] }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "~4.4", features = ["derive"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
1 change: 1 addition & 0 deletions rust_dev_preview/cross_service/detect_labels/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-dynamodb = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-rekognition = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-s3 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next", features = ["rt-tokio"] }
aws-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
tokio = { version = "1.20.1", features = ["full"] }
clap = { version = "~4.4", features = ["derive"] }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ aws-sdk-sns = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-smithy-http = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-runtime = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-types-convert ={ git = "https://github.com/awslabs/aws-sdk-rust", branch = "next", features = ["convert-chrono"] }
aws_lambda_events = { version = "0.10.0", features = ["s3", "apigw"], default-features = false }
aws_lambda_events = { version = "0.11.1", features = ["s3", "apigw"], default-features = false }
bytes = "1.4.0"
chrono = "0.4.24"
crossbeam-channel = "0.5.8"
Expand Down
1 change: 1 addition & 0 deletions rust_dev_preview/cross_service/rest_ses/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-cloudwatchlogs = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-rdsdata = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-ses = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-runtime = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
chrono = { version = "0.4.22", default-features = false, features = [
"clock",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,11 @@ fn parse_rds_output(

#[cfg(test)]
mod test {
use sdk_examples_test_utils::test_event;

use crate::{client::RdsClient, work_item::WorkItem};

use super::create;
use sdk_examples_test_utils::test_event;

#[tokio::test]
async fn test_create_failed() {
Expand Down
1 change: 1 addition & 0 deletions rust_dev_preview/cross_service/telephone/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next"
aws-sdk-polly = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-s3 = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-transcribe = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next", features = ["rt-tokio"] }
anyhow = "1"
tokio = { version = "1.20.1", features = ["full"] }
bytes = "1"
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/aurora/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version = "0.1.0"
anyhow = "1.0.75"
assert_matches = "1.5.0"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-http = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-runtime-api = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-rds = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
inquire = "0.6.2"
Expand Down
4 changes: 2 additions & 2 deletions rust_dev_preview/examples/aurora/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-20 14:08:48.733068 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:12.532306 (UTC)-->
# Aurora code examples for the SDK for Rust

## Overview
Expand Down Expand Up @@ -50,7 +50,7 @@ Code excerpts that show you how to call individual service functions.
* [Describe DB instances](src/aurora_scenario/mod.rs#L514) (`DescribeDBInstances`)
* [Describe database engine versions](src/aurora_scenario/mod.rs#L144) (`DescribeDBEngineVersions`)
* [Describe options for DB instances](src/aurora_scenario/mod.rs#L181) (`DescribeOrderableDBInstanceOptions`)
* [Describe parameters from a DB cluster parameter group](None) (`DescribeDBClusterParameters`)
* [Describe parameters from a DB cluster parameter group](src/aurora_scenario/mod.rs#L288) (`DescribeDBClusterParameters`)
* [Update parameters in a DB cluster parameter group](src/aurora_scenario/mod.rs#L317) (`ModifyDBClusterParameterGroup`)

### Scenarios
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ use aws_sdk_rds::{
OrderableDbInstanceOption,
},
};
use aws_smithy_http::body::SdkBody;
use aws_smithy_runtime_api::client::orchestrator::HttpResponse;
use aws_smithy_types::body::SdkBody;
use mockall::predicate::eq;
use secrecy::ExposeSecret;

Expand Down
8 changes: 4 additions & 4 deletions rust_dev_preview/examples/auto-scaling/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:38.622952 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:12.576171 (UTC)-->
# Auto Scaling code examples for the SDK for Rust

## Overview
Expand Down Expand Up @@ -41,13 +41,13 @@ Code excerpts that show you how to call individual service functions.

* [Create a group](src/bin/create-autoscaling-group.rs#L32) (`CreateAutoScalingGroup`)
* [Delete a group](src/bin/delete-autoscaling-group.rs#L32) (`DeleteAutoScalingGroup`)
* [Disable metrics collection for a group](src/scenario.rs#L617) (`DisableMetricsCollection`)
* [Disable metrics collection for a group](src/scenario.rs#L620) (`DisableMetricsCollection`)
* [Enable metrics collection for a group](src/scenario.rs#L297) (`EnableMetricsCollection`)
* [Get information about groups](src/bin/list-autoscaling-groups.rs#L24) (`DescribeAutoScalingGroups`)
* [Get information about instances](src/scenario.rs#L535) (`DescribeAutoScalingInstances`)
* [Get information about scaling activities](src/scenario.rs#L402) (`DescribeScalingActivities`)
* [Set the desired capacity of a group](src/scenario.rs#L595) (`SetDesiredCapacity`)
* [Terminate an instance in a group](src/scenario.rs#L654) (`TerminateInstanceInAutoScalingGroup`)
* [Set the desired capacity of a group](src/scenario.rs#L598) (`SetDesiredCapacity`)
* [Terminate an instance in a group](src/scenario.rs#L657) (`TerminateInstanceInAutoScalingGroup`)
* [Update a group](src/bin/update-autoscaling-group.rs#L32) (`UpdateAutoScalingGroup`)

### Scenarios
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ async fn list_groups(client: &Client) -> Result<(), Error> {
let groups = resp.auto_scaling_groups();

for group in groups {
println!("Name: {}", group.auto_scaling_group_name(),);
println!(
"Name: {}",
group.auto_scaling_group_name().unwrap_or("Unknown")
);
println!(
"Arn: {}",
group.auto_scaling_group_arn().unwrap_or("unknown"),
Expand Down
24 changes: 16 additions & 8 deletions rust_dev_preview/examples/auto-scaling/src/scenario.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ impl Display for AutoScalingScenarioDescription {
writeln!(
f,
"\t\t- {} Progress: {}% Status: {:?} End: {:?}",
activity.cause(),
activity.progress(),
activity.cause().unwrap_or("Unknown"),
activity.progress.unwrap_or(-1),
activity.status_code(),
// activity.status_message().unwrap_or_default()
activity.end_time(),
Expand Down Expand Up @@ -413,8 +413,8 @@ impl AutoScalingScenario {
.map(|s| {
format!(
"{}: {}",
s.auto_scaling_group_name(),
s.status().unwrap_or_default()
s.auto_scaling_group_name().unwrap_or("Unknown"),
s.status().unwrap_or("Unknown")
)
})
.collect::<Vec<String>>()
Expand Down Expand Up @@ -510,7 +510,7 @@ impl AutoScalingScenario {
"Waiting for no scaling found {} activities",
activities.len()
);
scaling = activities.iter().any(|a| a.progress < 100);
scaling = activities.iter().any(|a| a.progress() < Some(100));
}
Ok(())
}
Expand Down Expand Up @@ -548,8 +548,11 @@ impl AutoScalingScenario {
.map(|items| {
items
.into_iter()
.filter(|i| i.auto_scaling_group_name == self.auto_scaling_group_name)
.map(|i| i.instance_id)
.filter(|i| {
i.auto_scaling_group_name.as_deref()
== Some(self.auto_scaling_group_name.as_str())
})
.map(|i| i.instance_id.unwrap_or_default())
.filter(|id| !id.is_empty())
.collect::<Vec<String>>()
})
Expand Down Expand Up @@ -659,10 +662,15 @@ impl AutoScalingScenario {
// Or use other logic to find an instance to terminate.
let instance = instances.first();
if let Some(instance) = instance {
let instance_id = if let Some(instance_id) = instance.instance_id() {
instance_id
} else {
return Err(ScenarioError::with("Missing instance id"));
};
let termination = self
.ec2
.terminate_instances()
.instance_ids(instance.instance_id())
.instance_ids(instance_id)
.send()
.await;
if let Err(err) = termination {
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/batch/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:38.636659 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:12.589529 (UTC)-->
# AWS Batch code examples for the SDK for Rust

## Overview
Expand Down
4 changes: 2 additions & 2 deletions rust_dev_preview/examples/batch/src/bin/batch-helloworld.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ async fn show_envs(client: &Client) -> Result<(), Error> {
let arn = env.compute_environment_arn();
let name = env.compute_environment_name();

println!(" Name : {}", name);
println!(" ARN: {}", arn);
println!(" Name: {}", name.unwrap_or("Unknown"));
println!(" ARN: {}", arn.unwrap_or("Unknown"));
println!();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async fn describe_stack(client: &Client, name: &str) -> Result<(), Error> {
// The array should only have one item, so just access it via first().
let status = resp.stacks().first().unwrap().stack_status();

println!("Stack status: {}", status.as_str());
println!("Stack status: {:?}", status);

println!();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async fn list_stacks(client: &Client) -> Result<(), Error> {
let stacks = client.list_stacks().send().await?;

for stack in stacks.stack_summaries() {
println!("{}", stack.stack_name());
println!("{}", stack.stack_name().unwrap_or("Unknown"));
println!(" Status: {:?}", stack.stack_status());
println!();
}
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/cloudwatch/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:38.713653 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:12.679939 (UTC)-->
# CloudWatch code examples for the SDK for Rust

## Overview
Expand Down
4 changes: 2 additions & 2 deletions rust_dev_preview/examples/cloudwatch/src/bin/list-metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ async fn show_metrics(

if let Some(dimension) = metric.dimensions.as_ref() {
for d in dimension {
println!(" Name: {}", d.name());
println!(" Value: {}", d.value());
println!(" Name: {}", d.name().unwrap_or("Unknown"));
println!(" Value: {}", d.value().unwrap_or("Unknown"));
println!();
}
}
Expand Down
1 change: 0 additions & 1 deletion rust_dev_preview/examples/dynamodb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ edition = "2021"
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-http = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-sdk-dynamodb = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
aws-smithy-http = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next", features = [ "rt-tokio", ] }
aws-smithy-runtime = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next", features = ["test-util"] }
aws-smithy-types = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" }
axum = "0.5.16"
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/dynamodb/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:38.990842 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:12.973156 (UTC)-->
# DynamoDB code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/dynamodb/src/scenario/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

use std::error::Error as StdError;

use aws_smithy_http::operation::error::BuildError;
use aws_smithy_types::error::operation::BuildError;

#[derive(thiserror::Error, Debug)]
pub enum Error {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use aws_sdk_dynamodb::error::SdkError;
use aws_sdk_dynamodb::types::{AttributeValue, PutRequest};
use aws_smithy_http::operation::error::BuildError;
use aws_smithy_types::error::operation::BuildError;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::collections::HashMap;
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/ebs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.004717 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:12.987358 (UTC)-->
# Amazon EBS code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/ec2/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.082463 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.064182 (UTC)-->
# Amazon EC2 code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/ecr/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.095677 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.078188 (UTC)-->
# Amazon ECR code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/ecs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.115877 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.099102 (UTC)-->
# Amazon ECS code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/eks/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.130273 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.112846 (UTC)-->
# Amazon EKS code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/firehose/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.214714 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.200195 (UTC)-->
# Kinesis Data Firehose code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/glue/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.320437 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.327459 (UTC)-->
# AWS Glue code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/glue/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub mod prepare;
pub mod run;

use aws_sdk_glue::types::Table;
use aws_smithy_http::operation::error::BuildError;
use aws_smithy_types::error::operation::BuildError;
use clap::Parser;
use secrecy::Secret;
use std::time::Duration;
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/iam/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.455743 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.478904 (UTC)-->
# IAM code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/iot/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.468901 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.493231 (UTC)-->
# AWS IoT code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/kinesis/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.529440 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.553890 (UTC)-->
# Kinesis code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/kms/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.596595 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.625770 (UTC)-->
# AWS KMS code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/lambda/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.641020 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.671932 (UTC)-->
# Lambda code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/lambda/src/actions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ impl LambdaManager {
zip_file: PathBuf,
key: Option<String>,
) -> Result<FunctionCode, anyhow::Error> {
let body = ByteStream::read_from().path(zip_file).build().await?;
let body = ByteStream::from_path(zip_file).await?;

let key = key.unwrap_or_else(|| format!("{}_code", self.lambda_name));

Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/medialive/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.700560 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.733872 (UTC)-->
# MediaLive code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/mediapackage/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.713744 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.748419 (UTC)-->
# MediaPackage code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/polly/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.918560 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.959568 (UTC)-->
# Amazon Polly code examples for the SDK for Rust

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rust_dev_preview/examples/qldb/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--Generated by WRITEME on 2023-10-19 19:08:39.932675 (UTC)-->
<!--Generated by WRITEME on 2023-10-31 15:27:13.973280 (UTC)-->
# Amazon QLDB code examples for the SDK for Rust

## Overview
Expand Down
Loading

0 comments on commit 6f1649e

Please sign in to comment.