Commit 68deea5c authored by AWS SDK Rust Bot's avatar AWS SDK Rust Bot
Browse files

Update SDK models

parent 0e6123b3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@
resolver = "2"
exclude = [
    "tests/webassembly",
    "tests/no-default-features",
    "tests/telemetry"
    "tests/telemetry",
    "tests/no-default-features"
]
members = [
    "sdk/accessanalyzer",
+16 −4
Original line number Diff line number Diff line
@@ -9636,8 +9636,8 @@
                "smithy.api#documentation": "<p>Retrieves the provisioned concurrency configuration for a function's alias or version.</p>",
                "smithy.api#examples": [
                    {
                        "title": "To view a provisioned concurrency configuration",
                        "documentation": "The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
                        "title": "To get a provisioned concurrency configuration",
                        "documentation": "The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
                        "input": {
                            "FunctionName": "my-function",
                            "Qualifier": "BLUE"
@@ -9651,8 +9651,8 @@
                        }
                    },
                    {
                        "title": "To get a provisioned concurrency configuration",
                        "documentation": "The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
                        "title": "To view a provisioned concurrency configuration",
                        "documentation": "The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
                        "input": {
                            "FunctionName": "my-function",
                            "Qualifier": "BLUE"
@@ -11347,6 +11347,12 @@
                    "traits": {
                        "smithy.api#enumValue": "FunctionError.InitResourceExhausted"
                    }
                },
                "DisallowedByVpcEncryptionControl": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "DisallowedByVpcEncryptionControl"
                    }
                }
            }
        },
@@ -17076,6 +17082,12 @@
                    "traits": {
                        "smithy.api#enumValue": "FunctionError.InitResourceExhausted"
                    }
                },
                "DisallowedByVpcEncryptionControl": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "DisallowedByVpcEncryptionControl"
                    }
                }
            }
        },
+1 −1
Original line number Diff line number Diff line
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
[package]
name = "aws-sdk-lambda"
version = "1.109.0"
version = "1.110.0"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>"]
description = "AWS SDK for AWS Lambda"
edition = "2021"
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ your project, add the following to your **Cargo.toml** file:
```toml
[dependencies]
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-lambda = "1.109.0"
aws-sdk-lambda = "1.110.0"
tokio = { version = "1", features = ["full"] }
```

+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@
//! ```toml
//! [dependencies]
//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
//! aws-sdk-lambda = "1.109.0"
//! aws-sdk-lambda = "1.110.0"
//! tokio = { version = "1", features = ["full"] }
//! ```
//!
Loading