Skip to content

Commit 08c2b42

Browse files
Update SDK models
1 parent 6155192 commit 08c2b42

File tree

84 files changed

+3316
-115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+3316
-115
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[workspace]
22
exclude = [
3-
"examples/webassembly",
43
"examples/examples",
5-
"examples/cross_service",
64
"examples/test-utils",
5+
"examples/cross_service",
6+
"examples/webassembly",
77
"examples/lambda",
88
"tests/no-default-features",
99
"tests/webassembly"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The SDK provides one crate per AWS service. You must add [Tokio](https://crates.
2626
```toml
2727
[dependencies]
2828
aws-config = { version= "1.1.2", features = ["behavior-version-latest"] }
29-
aws-sdk-dynamodb = "1.10.0"
29+
aws-sdk-dynamodb = "1.10.1"
3030
tokio = { version = "1", features = ["full"] }
3131
```
3232

aws-models/dynamodb.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11851,7 +11851,7 @@
1185111851
"StreamSpecification": {
1185211852
"target": "com.amazonaws.dynamodb#StreamSpecification",
1185311853
"traits": {
11854-
"smithy.api#documentation": "<p>Represents the DynamoDB Streams configuration for the table.</p>\n <note>\n <p>You receive a <code>ResourceInUseException</code> if you try to enable a stream on\n a table that already has a stream, or if you try to disable a stream on a table that\n doesn't have a stream.</p>\n </note>"
11854+
"smithy.api#documentation": "<p>Represents the DynamoDB Streams configuration for the table.</p>\n <note>\n <p>You receive a <code>ValidationException</code> if you try to enable a stream on a\n table that already has a stream, or if you try to disable a stream on a table that\n doesn't have a stream.</p>\n </note>"
1185511855
}
1185611856
},
1185711857
"SSESpecification": {

aws-models/keyspaces.json

Lines changed: 392 additions & 12 deletions
Large diffs are not rendered by default.

examples/cross_service/detect_labels/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
[dependencies]
99
kamadak-exif = "0.5.4"
1010
aws-config= { version = "1.1.2", path = "../../../sdk/aws-config" }
11-
aws-sdk-dynamodb= { version = "1.10.0", path = "../../../sdk/dynamodb" }
11+
aws-sdk-dynamodb= { version = "1.10.1", path = "../../../sdk/dynamodb" }
1212
aws-sdk-rekognition= { version = "1.11.0", path = "../../../sdk/rekognition" }
1313
aws-sdk-s3= { version = "1.12.0", path = "../../../sdk/s3" }
1414
aws-smithy-types= { version = "1.1.2", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] }

examples/cross_service/photo_asset_management/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ tempfile = "3.5.0"
3131
tokio-stream = "0.1.12"
3232
tracing = "0.1.37"
3333
aws-config= { version = "1.1.2", path = "../../../sdk/aws-config" }
34-
aws-sdk-dynamodb= { version = "1.10.0", path = "../../../sdk/dynamodb" }
34+
aws-sdk-dynamodb= { version = "1.10.1", path = "../../../sdk/dynamodb" }
3535
aws-sdk-rekognition= { version = "1.11.0", path = "../../../sdk/rekognition" }
3636
aws-sdk-s3= { version = "1.12.0", path = "../../../sdk/s3" }
3737
aws-sdk-sns= { version = "1.10.0", path = "../../../sdk/sns" }

examples/cross_service/photo_asset_management/integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ publish = false
1010
[dependencies]
1111
tracing = "0.1.37"
1212
aws-config= { version = "1.1.2", path = "../../../../sdk/aws-config" }
13-
aws-sdk-dynamodb= { version = "1.10.0", path = "../../../../sdk/dynamodb" }
13+
aws-sdk-dynamodb= { version = "1.10.1", path = "../../../../sdk/dynamodb" }
1414
aws-sdk-rekognition= { version = "1.11.0", path = "../../../../sdk/rekognition" }
1515

1616
[dependencies.photo_asset_management]

examples/examples/dynamodb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tokio-stream = "0.1.8"
1818
tracing = "0.1"
1919
aws-config= { version = "1.1.2", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
2020
aws-http= { version = "0.60.2", path = "../../../sdk/aws-http" }
21-
aws-sdk-dynamodb= { version = "1.10.0", path = "../../../sdk/dynamodb" }
21+
aws-sdk-dynamodb= { version = "1.10.1", path = "../../../sdk/dynamodb" }
2222
aws-smithy-runtime= { version = "1.1.2", path = "../../../sdk/aws-smithy-runtime", features = ["test-util"] }
2323
aws-smithy-types= { version = "1.1.2", path = "../../../sdk/aws-smithy-types" }
2424

examples/examples/logging/logger/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
[dependencies]
1010
env_logger = "0.9.0"
1111
aws-config= { version = "1.1.2", path = "../../../../sdk/aws-config", features = ["behavior-version-latest"] }
12-
aws-sdk-dynamodb= { version = "1.10.0", path = "../../../../sdk/dynamodb" }
12+
aws-sdk-dynamodb= { version = "1.10.1", path = "../../../../sdk/dynamodb" }
1313

1414
[dependencies.clap]
1515
version = "~4.4"

examples/examples/logging/tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88

99
[dependencies]
1010
aws-config= { version = "1.1.2", path = "../../../../sdk/aws-config", features = ["behavior-version-latest"] }
11-
aws-sdk-dynamodb= { version = "1.10.0", path = "../../../../sdk/dynamodb" }
11+
aws-sdk-dynamodb= { version = "1.10.1", path = "../../../../sdk/dynamodb" }
1212

1313
[dependencies.clap]
1414
version = "~4.4"

0 commit comments

Comments
 (0)