Commit 716af2e3 authored by AWS SDK Rust Bot's avatar AWS SDK Rust Bot
Browse files

Update SDK models

parent 5b4b1daf
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -6188,6 +6188,12 @@
                    "traits": {
                        "smithy.api#enumValue": "flex"
                    }
                },
                "RESERVED": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "reserved"
                    }
                }
            }
        },
+121 −67

File changed.

Preview size limit exceeded, changes collapsed.

+67 −0
Original line number Diff line number Diff line
@@ -2689,6 +2689,55 @@
                "target": "com.amazonaws.costoptimizationhub#MixedInstanceConfiguration"
            }
        },
        "com.amazonaws.costoptimizationhub#NatGateway": {
            "type": "structure",
            "members": {
                "configuration": {
                    "target": "com.amazonaws.costoptimizationhub#NatGatewayConfiguration",
                    "traits": {
                        "smithy.api#documentation": "<p>The NAT Gateway configuration used for recommendations.</p>"
                    }
                },
                "costCalculation": {
                    "target": "com.amazonaws.costoptimizationhub#ResourceCostCalculation"
                }
            },
            "traits": {
                "smithy.api#documentation": "<p>The NAT Gateway recommendation details.</p>",
                "smithy.api#tags": [
                    "nat_gateway"
                ]
            }
        },
        "com.amazonaws.costoptimizationhub#NatGatewayConfiguration": {
            "type": "structure",
            "members": {
                "activeConnectionCount": {
                    "target": "smithy.api#Long",
                    "traits": {
                        "smithy.api#documentation": "<p>The number of active connections through the NAT Gateway.</p>"
                    }
                },
                "packetsInFromSource": {
                    "target": "smithy.api#Long",
                    "traits": {
                        "smithy.api#documentation": "<p>The number of packets received from the source through the NAT Gateway.</p>"
                    }
                },
                "packetsInFromDestination": {
                    "target": "smithy.api#Long",
                    "traits": {
                        "smithy.api#documentation": "<p>The number of packets received from the destination through the NAT Gateway.</p>"
                    }
                }
            },
            "traits": {
                "smithy.api#documentation": "<p>The NAT Gateway configuration used for recommendations.</p>",
                "smithy.api#tags": [
                    "nat_gateway"
                ]
            }
        },
        "com.amazonaws.costoptimizationhub#OpenSearchReservedInstances": {
            "type": "structure",
            "members": {
@@ -3569,6 +3618,15 @@
                    "traits": {
                        "smithy.api#documentation": "<p>The MemoryDB reserved instances recommendation details.</p>"
                    }
                },
                "natGateway": {
                    "target": "com.amazonaws.costoptimizationhub#NatGateway",
                    "traits": {
                        "smithy.api#documentation": "<p>The NAT Gateway recommendation details.</p>",
                        "smithy.api#tags": [
                            "nat_gateway"
                        ]
                    }
                }
            },
            "traits": {
@@ -3752,6 +3810,15 @@
                    "traits": {
                        "smithy.api#enumValue": "MemoryDbReservedInstances"
                    }
                },
                "NAT_GATEWAY": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "NatGateway",
                        "smithy.api#tags": [
                            "nat_gateway"
                        ]
                    }
                }
            }
        },
+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-bedrockruntime"
version = "1.117.0"
version = "1.118.0"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>"]
description = "AWS SDK for Amazon Bedrock Runtime"
edition = "2021"
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,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-bedrockruntime = "1.117.0"
aws-sdk-bedrockruntime = "1.118.0"
tokio = { version = "1", features = ["full"] }
```

Loading