AWS SDK

AWS SDK

rev. 8ef68d52e51238ce70d08a036f78fe45eda1c2f2 (ignoring whitespace)

Files changed:

tmp-codegen-diff/aws-sdk/sdk/aws-config/Cargo.toml

@@ -54,54 +114,114 @@
   74     74   
path = "../aws-smithy-runtime-api"
   75     75   
features = ["client"]
   76     76   
version = "1.9.3"
   77     77   
   78     78   
[dependencies.aws-smithy-types]
   79     79   
path = "../aws-smithy-types"
   80     80   
version = "1.3.5"
   81     81   
   82     82   
[dependencies.aws-types]
   83     83   
path = "../aws-types"
   84         -
version = "1.3.11"
          84  +
version = "1.3.12"
   85     85   
   86     86   
[dependencies.time]
   87     87   
version = "0.3.4"
   88     88   
features = ["parsing"]
   89     89   
   90     90   
[dependencies.tokio]
   91     91   
version = "1.13.1"
   92     92   
features = ["sync"]
   93     93   
   94     94   
[dependencies.tracing]

tmp-codegen-diff/aws-sdk/sdk/aws-config/fuzz/Cargo.toml

@@ -1,1 +30,30 @@
   17     17   
   18     18   
[dependencies]
   19     19   
libfuzzer-sys = "=0.4.7"
   20     20   
   21     21   
[dependencies.aws-config]
   22     22   
path = ".."
   23     23   
version = "1.8.12"
   24     24   
   25     25   
[dependencies.aws-types]
   26     26   
path = "../../../sdk/build/aws-sdk/sdk/aws-types"
   27         -
version = "1.3.11"
          27  +
version = "1.3.12"
   28     28   
   29     29   
[workspace]
   30     30   
members = ["."]

tmp-codegen-diff/aws-sdk/sdk/aws-runtime/Cargo.toml

@@ -42,42 +102,102 @@
   62     62   
path = "../aws-smithy-runtime-api"
   63     63   
features = ["client"]
   64     64   
version = "1.9.3"
   65     65   
   66     66   
[dependencies.aws-smithy-types]
   67     67   
path = "../aws-smithy-types"
   68     68   
version = "1.3.5"
   69     69   
   70     70   
[dependencies.aws-types]
   71     71   
path = "../aws-types"
   72         -
version = "1.3.11"
          72  +
version = "1.3.12"
   73     73   
   74     74   
[dependencies.http-02x]
   75     75   
package = "http"
   76     76   
version = "0.2.9"
   77     77   
   78     78   
[dependencies.http-body-04x]
   79     79   
package = "http-body"
   80     80   
version = "0.4.5"
   81     81   
   82     82   
[dependencies.http-1x]

tmp-codegen-diff/aws-sdk/sdk/aws-types/Cargo.toml

@@ -1,1 +34,34 @@
    1      1   
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
    2      2   
[package]
    3      3   
name = "aws-types"
    4         -
version = "1.3.11"
           4  +
version = "1.3.12"
    5      5   
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>"]
    6      6   
description = "Cross-service types for the AWS SDK."
    7      7   
edition = "2021"
    8      8   
license = "Apache-2.0"
    9      9   
repository = "https://github.com/smithy-lang/smithy-rs"
   10     10   
rust-version = "1.88"
   11     11   
[package.metadata.docs.rs]
   12     12   
all-features = true
   13     13   
targets = ["x86_64-unknown-linux-gnu"]
   14     14   
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]

tmp-codegen-diff/aws-sdk/sdk/aws-types/src/sdk_config.rs

@@ -415,415 +508,508 @@
  435    435   
    }
  436    436   
  437    437   
    /// Set the identity cache for caching credentials and SSO tokens.
  438    438   
    ///
  439    439   
    /// The default identity cache will wait until the first request that requires authentication
  440    440   
    /// to load an identity. Once the identity is loaded, it is cached until shortly before it
  441    441   
    /// expires.
  442    442   
    ///
  443    443   
    /// # Examples
  444    444   
    /// Disabling identity caching:
  445         -
    /// ```rust
         445  +
    /// ```ignore
  446    446   
    /// # use aws_types::SdkConfig;
  447    447   
    /// use aws_smithy_runtime::client::identity::IdentityCache;
  448    448   
    /// let config = SdkConfig::builder()
  449    449   
    ///     .identity_cache(IdentityCache::no_cache())
  450    450   
    ///     .build();
  451    451   
    /// ```
  452    452   
    /// Changing settings on the default cache implementation:
  453         -
    /// ```rust
         453  +
    /// ```ignore
  454    454   
    /// # use aws_types::SdkConfig;
  455    455   
    /// use aws_smithy_runtime::client::identity::IdentityCache;
  456    456   
    /// use std::time::Duration;
  457    457   
    ///
  458    458   
    /// let config = SdkConfig::builder()
  459    459   
    ///     .identity_cache(
  460    460   
    ///         IdentityCache::lazy()
  461    461   
    ///             .load_timeout(Duration::from_secs(10))
  462    462   
    ///             .build()
  463    463   
    ///     )
  464    464   
    ///     .build();
  465    465   
    /// ```
  466    466   
    pub fn identity_cache(mut self, cache: impl ResolveCachedIdentity + 'static) -> Self {
  467    467   
        self.set_identity_cache(Some(cache.into_shared()));
  468    468   
        self
  469    469   
    }
  470    470   
  471    471   
    /// Set the identity cache for caching credentials and SSO tokens.
  472    472   
    ///
  473    473   
    /// The default identity cache will wait until the first request that requires authentication
  474    474   
    /// to load an identity. Once the identity is loaded, it is cached until shortly before it
  475    475   
    /// expires.
  476    476   
    ///
  477    477   
    /// # Examples
  478         -
    /// ```rust
         478  +
    /// ```ignore
  479    479   
    /// # use aws_types::SdkConfig;
  480    480   
    /// use aws_smithy_runtime::client::identity::IdentityCache;
  481    481   
    ///
  482    482   
    /// fn override_identity_cache() -> bool {
  483    483   
    ///   // ...
  484    484   
    ///   # true
  485    485   
    /// }
  486    486   
    ///
  487    487   
    /// let mut builder = SdkConfig::builder();
  488    488   
    /// if override_identity_cache() {

tmp-codegen-diff/aws-sdk/sdk/bedrockruntime/Cargo.toml

@@ -35,35 +95,95 @@
   55     55   
features = ["client", "http-02x", "http-auth"]
   56     56   
version = "1.9.3"
   57     57   
   58     58   
[dependencies.aws-smithy-types]
   59     59   
path = "../aws-smithy-types"
   60     60   
features = ["http-body-0-4-x"]
   61     61   
version = "1.3.5"
   62     62   
   63     63   
[dependencies.aws-types]
   64     64   
path = "../aws-types"
   65         -
version = "1.3.11"
          65  +
version = "1.3.12"
   66     66   
   67     67   
[dependencies.bytes]
   68     68   
version = "1.4.0"
   69     69   
   70     70   
[dependencies.fastrand]
   71     71   
version = "2.0.0"
   72     72   
   73     73   
[dependencies.http]
   74     74   
version = "0.2.9"
   75     75   

tmp-codegen-diff/aws-sdk/sdk/cloudwatchlogs/Cargo.toml

@@ -30,30 +90,90 @@
   50     50   
path = "../aws-smithy-runtime-api"
   51     51   
features = ["client", "http-02x"]
   52     52   
version = "1.9.3"
   53     53   
   54     54   
[dependencies.aws-smithy-types]
   55     55   
path = "../aws-smithy-types"
   56     56   
version = "1.3.5"
   57     57   
   58     58   
[dependencies.aws-types]
   59     59   
path = "../aws-types"
   60         -
version = "1.3.11"
          60  +
version = "1.3.12"
   61     61   
   62     62   
[dependencies.bytes]
   63     63   
version = "1.4.0"
   64     64   
   65     65   
[dependencies.fastrand]
   66     66   
version = "2.0.0"
   67     67   
   68     68   
[dependencies.http]
   69     69   
version = "0.2.9"
   70     70   

tmp-codegen-diff/aws-sdk/sdk/codecatalyst/Cargo.toml

@@ -24,24 +84,84 @@
   44     44   
path = "../aws-smithy-runtime-api"
   45     45   
features = ["client", "http-02x", "http-auth"]
   46     46   
version = "1.9.3"
   47     47   
   48     48   
[dependencies.aws-smithy-types]
   49     49   
path = "../aws-smithy-types"
   50     50   
version = "1.3.5"
   51     51   
   52     52   
[dependencies.aws-types]
   53     53   
path = "../aws-types"
   54         -
version = "1.3.11"
          54  +
version = "1.3.12"
   55     55   
   56     56   
[dependencies.bytes]
   57     57   
version = "1.4.0"
   58     58   
   59     59   
[dependencies.fastrand]
   60     60   
version = "2.0.0"
   61     61   
   62     62   
[dependencies.http]
   63     63   
version = "0.2.9"
   64     64   

tmp-codegen-diff/aws-sdk/sdk/config/Cargo.toml

@@ -24,24 +84,84 @@
   44     44   
path = "../aws-smithy-runtime-api"
   45     45   
features = ["client", "http-02x"]
   46     46   
version = "1.9.3"
   47     47   
   48     48   
[dependencies.aws-smithy-types]
   49     49   
path = "../aws-smithy-types"
   50     50   
version = "1.3.5"
   51     51   
   52     52   
[dependencies.aws-types]
   53     53   
path = "../aws-types"
   54         -
version = "1.3.11"
          54  +
version = "1.3.12"
   55     55   
   56     56   
[dependencies.bytes]
   57     57   
version = "1.4.0"
   58     58   
   59     59   
[dependencies.fastrand]
   60     60   
version = "2.0.0"
   61     61   
   62     62   
[dependencies.http]
   63     63   
version = "0.2.9"
   64     64   

tmp-codegen-diff/aws-sdk/sdk/dynamodb/Cargo.toml

@@ -24,24 +84,84 @@
   44     44   
path = "../aws-smithy-runtime-api"
   45     45   
features = ["client", "http-02x"]
   46     46   
version = "1.9.3"
   47     47   
   48     48   
[dependencies.aws-smithy-types]
   49     49   
path = "../aws-smithy-types"
   50     50   
version = "1.3.5"
   51     51   
   52     52   
[dependencies.aws-types]
   53     53   
path = "../aws-types"
   54         -
version = "1.3.11"
          54  +
version = "1.3.12"
   55     55   
   56     56   
[dependencies.bytes]
   57     57   
version = "1.4.0"
   58     58   
   59     59   
[dependencies.fastrand]
   60     60   
version = "2.0.0"
   61     61   
   62     62   
[dependencies.http]
   63     63   
version = "0.2.9"
   64     64   

tmp-codegen-diff/aws-sdk/sdk/ec2/Cargo.toml

@@ -32,32 +92,92 @@
   52     52   
[dependencies.aws-smithy-types]
   53     53   
path = "../aws-smithy-types"
   54     54   
version = "1.3.5"
   55     55   
   56     56   
[dependencies.aws-smithy-xml]
   57     57   
path = "../aws-smithy-xml"
   58     58   
version = "0.60.13"
   59     59   
   60     60   
[dependencies.aws-types]
   61     61   
path = "../aws-types"
   62         -
version = "1.3.11"
          62  +
version = "1.3.12"
   63     63   
   64     64   
[dependencies.fastrand]
   65     65   
version = "2.0.0"
   66     66   
   67     67   
[dependencies.http]
   68     68   
version = "0.2.9"
   69     69   
   70     70   
[dependencies.regex-lite]
   71     71   
version = "0.1.5"
   72     72   

tmp-codegen-diff/aws-sdk/sdk/ecs/Cargo.toml

@@ -24,24 +84,84 @@
   44     44   
path = "../aws-smithy-runtime-api"
   45     45   
features = ["client", "http-02x"]
   46     46   
version = "1.9.3"
   47     47   
   48     48   
[dependencies.aws-smithy-types]
   49     49   
path = "../aws-smithy-types"
   50     50   
version = "1.3.5"
   51     51   
   52     52   
[dependencies.aws-types]
   53     53   
path = "../aws-types"
   54         -
version = "1.3.11"
          54  +
version = "1.3.12"
   55     55   
   56     56   
[dependencies.bytes]
   57     57   
version = "1.4.0"
   58     58   
   59     59   
[dependencies.fastrand]
   60     60   
version = "2.0.0"
   61     61   
   62     62   
[dependencies.http]
   63     63   
version = "0.2.9"
   64     64   

tmp-codegen-diff/aws-sdk/sdk/glacier/Cargo.toml

@@ -28,28 +88,88 @@
   48     48   
path = "../aws-smithy-runtime-api"
   49     49   
features = ["client", "http-02x"]
   50     50   
version = "1.9.3"
   51     51   
   52     52   
[dependencies.aws-smithy-types]
   53     53   
path = "../aws-smithy-types"
   54     54   
version = "1.3.5"
   55     55   
   56     56   
[dependencies.aws-types]
   57     57   
path = "../aws-types"
   58         -
version = "1.3.11"
          58  +
version = "1.3.12"
   59     59   
   60     60   
[dependencies.bytes]
   61     61   
version = "1.4.0"
   62     62   
   63     63   
[dependencies.fastrand]
   64     64   
version = "2.0.0"
   65     65   
   66     66   
[dependencies.hex]
   67     67   
version = "0.4.3"
   68     68   

tmp-codegen-diff/aws-sdk/sdk/iam/Cargo.toml

@@ -32,32 +92,92 @@
   52     52   
[dependencies.aws-smithy-types]
   53     53   
path = "../aws-smithy-types"
   54     54   
version = "1.3.5"
   55     55   
   56     56   
[dependencies.aws-smithy-xml]
   57     57   
path = "../aws-smithy-xml"
   58     58   
version = "0.60.13"
   59     59   
   60     60   
[dependencies.aws-types]
   61     61   
path = "../aws-types"
   62         -
version = "1.3.11"
          62  +
version = "1.3.12"
   63     63   
   64     64   
[dependencies.fastrand]
   65     65   
version = "2.0.0"
   66     66   
   67     67   
[dependencies.http]
   68     68   
version = "0.2.9"
   69     69   
   70     70   
[dependencies.regex-lite]
   71     71   
version = "0.1.5"
   72     72   

tmp-codegen-diff/aws-sdk/sdk/kms/Cargo.toml

@@ -24,24 +84,84 @@
   44     44   
path = "../aws-smithy-runtime-api"
   45     45   
features = ["client", "http-02x"]
   46     46   
version = "1.9.3"
   47     47   
   48     48   
[dependencies.aws-smithy-types]
   49     49   
path = "../aws-smithy-types"
   50     50   
version = "1.3.5"
   51     51   
   52     52   
[dependencies.aws-types]
   53     53   
path = "../aws-types"
   54         -
version = "1.3.11"
          54  +
version = "1.3.12"
   55     55   
   56     56   
[dependencies.bytes]
   57     57   
version = "1.4.0"
   58     58   
   59     59   
[dependencies.fastrand]
   60     60   
version = "2.0.0"
   61     61   
   62     62   
[dependencies.http]
   63     63   
version = "0.2.9"
   64     64