aws-smithy-runtime-api 1.12.0

Smithy runtime types.
Documentation
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

//! Behavior version of the client

/// Behavior version of the client
///
/// Over time, new best-practice behaviors are introduced. However, these behaviors might not be
/// backwards compatible. For example, a change which introduces new default timeouts or a new
/// retry-mode for all operations might be the ideal behavior but could break existing applications.
#[derive(Copy, Clone, PartialEq)]
pub struct BehaviorVersion {
    inner: Inner,
}

#[derive(Copy, Clone, Debug, Ord, PartialOrd, Eq, PartialEq)]
enum Inner {
    // IMPORTANT: Order matters here for the `Ord` derive. Newer versions go to the bottom.
    V2023_11_09,
    V2024_03_28,
    V2025_01_17,
    V2025_08_07,
    V2026_01_12,
}

impl BehaviorVersion {
    /// This method will always return the latest major version.
    ///
    /// This is the recommend choice for customers who aren't reliant on extremely specific behavior
    /// characteristics. For example, if you are writing a CLI app, the latest behavior major
    /// version is probably the best setting for you.
    ///
    /// If, however, you're writing a service that is very latency sensitive, or that has written
    /// code to tune Rust SDK behaviors, consider pinning to a specific major version.
    ///
    /// The latest version is currently [`BehaviorVersion::v2026_01_12`]
    pub fn latest() -> Self {
        Self::v2026_01_12()
    }

    /// Behavior version for January 12th, 2026.
    ///
    /// This version enables retries by default for AWS SDK clients. Generic Smithy clients
    /// (non-AWS) do not have retries enabled by default.
    ///
    /// Additionally, this version sets a 3.1 second connect timeout for all clients.
    ///
    /// For more information about behavior versions and how they affect SDK behavior, see the
    /// [AWS SDK for Rust Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/behavior-versions.html).
    pub fn v2026_01_12() -> Self {
        Self {
            inner: Inner::V2026_01_12,
        }
    }

    /// Behavior version for August 7th, 2025.
    ///
    /// This version updates the default HTTPS client to support proxy environment variables
    /// (e.g. `HTTP_PROXY`, `HTTPS_PROXY`, `NO_PROXY`) by default.
    #[deprecated(
        since = "1.10.0",
        note = "Superseded by v2026_01_12, which enables retries by default for AWS SDK clients and sets a 3.1s connect timeout for all clients."
    )]
    pub fn v2025_08_07() -> Self {
        Self {
            inner: Inner::V2025_08_07,
        }
    }

    /// Behavior version for January 17th, 2025
    ///
    /// This version updates the default HTTP client and TLS stack. SDKs shipped with
    /// a pre 1.x version of hyper and rustls originally. This behavior version updates
    /// the HTTP+TLS stack to maintained versions.
    ///
    /// <div class="warning">
    /// NOTE: In a future release behavior versions prior to this will require enabling
    /// feature flags manually to keep the legacy Hyper stack as the default. Specifically the
    /// `aws-smithy-runtime/tls-rustls` feature flag combined with an older behavior version.
    /// </div>
    #[deprecated(
        since = "1.9.0",
        note = "Superseded by v2025_08_07, which enables automatic HTTP(S) proxy support from environment variables in the default HTTPS client."
    )]
    pub fn v2025_01_17() -> Self {
        Self {
            inner: Inner::V2025_01_17,
        }
    }

    /// Behavior version for March 28th, 2024.
    ///
    /// This version enables stalled stream protection for uploads (request bodies) by default.
    ///
    /// When a new behavior major version is released, this method will be deprecated.
    #[deprecated(
        since = "1.8.0",
        note = "Superseded by v2025_01_17, which updates the default HTTPS client stack."
    )]
    pub fn v2024_03_28() -> Self {
        Self {
            inner: Inner::V2024_03_28,
        }
    }

    /// Behavior version for November 9th, 2023.
    #[deprecated(
        since = "1.4.0",
        note = "Superseded by v2024_03_28, which enabled stalled stream protection for uploads (request bodies) by default."
    )]
    pub fn v2023_11_09() -> Self {
        Self {
            inner: Inner::V2023_11_09,
        }
    }

    /// True if this version is newer or equal to the given `other` version.
    pub fn is_at_least(&self, other: BehaviorVersion) -> bool {
        self.inner >= other.inner
    }
}

impl std::fmt::Debug for BehaviorVersion {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_tuple("BehaviorVersion").field(&self.inner).finish()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    #[allow(deprecated)]
    fn version_comparison() {
        assert!(BehaviorVersion::latest() == BehaviorVersion::latest());
        assert!(BehaviorVersion::v2023_11_09() == BehaviorVersion::v2023_11_09());
        assert!(BehaviorVersion::v2024_03_28() != BehaviorVersion::v2023_11_09());
        assert!(BehaviorVersion::v2025_01_17() != BehaviorVersion::v2024_03_28());
        assert!(BehaviorVersion::latest().is_at_least(BehaviorVersion::latest()));
        assert!(BehaviorVersion::latest().is_at_least(BehaviorVersion::v2023_11_09()));
        assert!(BehaviorVersion::latest().is_at_least(BehaviorVersion::v2024_03_28()));
        assert!(BehaviorVersion::latest().is_at_least(BehaviorVersion::v2025_01_17()));
        assert!(BehaviorVersion::latest().is_at_least(BehaviorVersion::v2025_08_07()));
        assert!(!BehaviorVersion::v2023_11_09().is_at_least(BehaviorVersion::v2024_03_28()));
        assert!(Inner::V2024_03_28 > Inner::V2023_11_09);
        assert!(Inner::V2023_11_09 < Inner::V2024_03_28);
        assert!(Inner::V2024_03_28 < Inner::V2025_01_17);
        assert!(Inner::V2025_01_17 < Inner::V2025_08_07);
        assert!(Inner::V2025_08_07 < Inner::V2026_01_12);
    }
}