AWS SDK

AWS SDK

rev. db10d8b7d1ddffb641e5651cb5b4c7c7d63bda6a (ignoring whitespace)

Files changed:

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

@@ -15,15 +75,75 @@
   35     35   
version = "0.61.4"
   36     36   
   37     37   
[dependencies.aws-smithy-runtime]
   38     38   
path = "../aws-smithy-runtime"
   39     39   
features = ["client"]
   40     40   
version = "1.8.6"
   41     41   
   42     42   
[dependencies.aws-smithy-runtime-api]
   43     43   
path = "../aws-smithy-runtime-api"
   44     44   
features = ["client", "http-02x"]
   45         -
version = "1.8.6"
          45  +
version = "1.8.7"
   46     46   
   47     47   
[dependencies.aws-smithy-types]
   48     48   
path = "../aws-smithy-types"
   49     49   
version = "1.3.2"
   50     50   
   51     51   
[dependencies.aws-types]
   52     52   
path = "../aws-types"
   53     53   
version = "1.3.8"
   54     54   
   55     55   
[dependencies.bytes]

tmp-codegen-diff/aws-sdk/sdk/ssooidc/src/config.rs

@@ -1315,1315 +1415,1415 @@
 1335   1335   
        builder = builder.region(input.region().cloned());
 1336   1336   
        builder.set_use_fips(input.use_fips());
 1337   1337   
        builder.set_use_dual_stack(input.use_dual_stack());
 1338   1338   
        if input.get_origin("endpoint_url").is_client_config() {
 1339   1339   
            builder.set_endpoint_url(input.endpoint_url().map(|s| s.to_string()));
 1340   1340   
        } else {
 1341   1341   
            builder.set_endpoint_url(
 1342   1342   
                input
 1343   1343   
                    .service_config()
 1344   1344   
                    .and_then(|conf| {
 1345         -
                        conf.load_config(service_config_key("AWS_ENDPOINT_URL", "endpoint_url"))
        1345  +
                        conf.load_config(service_config_key("SSO OIDC", "AWS_ENDPOINT_URL", "endpoint_url"))
 1346   1346   
                            .map(|it| it.parse().unwrap())
 1347   1347   
                    })
 1348   1348   
                    .or_else(|| input.endpoint_url().map(|s| s.to_string())),
 1349   1349   
            );
 1350   1350   
        }
 1351   1351   
        // resiliency
 1352   1352   
        builder.set_retry_config(input.retry_config().cloned());
 1353   1353   
        builder.set_timeout_config(input.timeout_config().cloned());
 1354   1354   
        builder.set_sleep_impl(input.sleep_impl());
 1355   1355   
 1356   1356   
        builder.set_http_client(input.http_client());
 1357   1357   
        builder.set_time_source(input.time_source());
 1358   1358   
        builder.set_behavior_version(input.behavior_version());
 1359   1359   
        builder.set_auth_scheme_preference(input.auth_scheme_preference().cloned());
 1360   1360   
        // setting `None` here removes the default
 1361   1361   
        if let Some(config) = input.stalled_stream_protection() {
 1362   1362   
            builder.set_stalled_stream_protection(Some(config));
 1363   1363   
        }
 1364   1364   
 1365   1365   
        if let Some(cache) = input.identity_cache() {
 1366   1366   
            builder.set_identity_cache(cache);
 1367   1367   
        }
 1368   1368   
        builder.set_app_name(input.app_name().cloned());
 1369   1369   
 1370   1370   
        builder
 1371   1371   
    }
 1372   1372   
}
 1373   1373   
 1374   1374   
impl From<&::aws_types::sdk_config::SdkConfig> for Config {
 1375   1375   
    fn from(sdk_config: &::aws_types::sdk_config::SdkConfig) -> Self {
 1376   1376   
        Builder::from(sdk_config).build()
 1377   1377   
    }
 1378   1378   
}
 1379   1379   
 1380   1380   
pub use ::aws_types::app_name::AppName;
 1381   1381   
 1382   1382   
#[allow(dead_code)]
 1383         -
fn service_config_key<'a>(env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
        1383  +
fn service_config_key<'a>(service_id: &'a str, env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
 1384   1384   
    ::aws_types::service_config::ServiceConfigKey::builder()
 1385         -
        .service_id("SSO OIDC")
        1385  +
        .service_id(service_id)
 1386   1386   
        .env(env)
 1387   1387   
        .profile(profile)
 1388   1388   
        .build()
 1389   1389   
        .expect("all field sets explicitly, can't fail")
 1390   1390   
}
 1391   1391   
 1392   1392   
pub use ::aws_smithy_async::rt::sleep::Sleep;
 1393   1393   
 1394   1394   
pub(crate) fn base_client_runtime_plugins(mut config: crate::Config) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
 1395   1395   
    let mut configured_plugins = ::std::vec::Vec::new();

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

@@ -19,19 +136,136 @@
   39     39   
version = "0.60.7"
   40     40   
   41     41   
[dependencies.aws-smithy-runtime]
   42     42   
path = "../aws-smithy-runtime"
   43     43   
features = ["client"]
   44     44   
version = "1.8.6"
   45     45   
   46     46   
[dependencies.aws-smithy-runtime-api]
   47     47   
path = "../aws-smithy-runtime-api"
   48     48   
features = ["client", "http-02x"]
   49         -
version = "1.8.6"
          49  +
version = "1.8.7"
   50     50   
   51     51   
[dependencies.aws-smithy-types]
   52     52   
path = "../aws-smithy-types"
   53     53   
version = "1.3.2"
   54     54   
   55     55   
[dependencies.aws-smithy-xml]
   56     56   
path = "../aws-smithy-xml"
   57     57   
version = "0.60.10"
   58     58   
   59     59   
[dependencies.aws-types]
   60     60   
path = "../aws-types"
   61     61   
version = "1.3.8"
   62     62   
   63     63   
[dependencies.fastrand]
   64     64   
version = "2.0.0"
   65     65   
   66     66   
[dependencies.http]
   67     67   
version = "0.2.9"
   68     68   
   69     69   
[dependencies.regex-lite]
   70     70   
version = "0.1.5"
   71     71   
   72     72   
[dependencies.tracing]
   73     73   
version = "0.1"
   74     74   
[dev-dependencies.aws-credential-types]
   75     75   
path = "../aws-credential-types"
   76     76   
features = ["test-util"]
   77     77   
version = "1.2.5"
   78     78   
   79     79   
[dev-dependencies.aws-runtime]
   80     80   
path = "../aws-runtime"
   81     81   
features = ["test-util"]
   82     82   
version = "1.5.10"
   83     83   
   84     84   
[dev-dependencies.aws-smithy-async]
   85     85   
path = "../aws-smithy-async"
   86     86   
features = ["test-util"]
   87     87   
version = "1.2.5"
   88     88   
   89     89   
[dev-dependencies.aws-smithy-http-client]
   90     90   
path = "../aws-smithy-http-client"
   91     91   
features = ["test-util", "wire-mock"]
   92     92   
version = "1.0.6"
   93     93   
   94     94   
[dev-dependencies.aws-smithy-protocol-test]
   95     95   
path = "../aws-smithy-protocol-test"
   96     96   
version = "0.63.4"
   97     97   
   98     98   
[dev-dependencies.aws-smithy-runtime]
   99     99   
path = "../aws-smithy-runtime"
  100    100   
features = ["test-util"]
  101    101   
version = "1.8.6"
  102    102   
  103    103   
[dev-dependencies.aws-smithy-runtime-api]
  104    104   
path = "../aws-smithy-runtime-api"
  105    105   
features = ["test-util"]
  106         -
version = "1.8.6"
         106  +
version = "1.8.7"
  107    107   
  108    108   
[dev-dependencies.aws-smithy-types]
  109    109   
path = "../aws-smithy-types"
  110    110   
features = ["test-util"]
  111    111   
version = "1.3.2"
  112    112   
  113    113   
[dev-dependencies.futures-util]
  114    114   
version = "0.3.25"
  115    115   
features = ["alloc"]
  116    116   
default-features = false

tmp-codegen-diff/aws-sdk/sdk/sts/src/config.rs

@@ -1315,1315 +1415,1415 @@
 1335   1335   
        builder = builder.region(input.region().cloned());
 1336   1336   
        builder.set_use_fips(input.use_fips());
 1337   1337   
        builder.set_use_dual_stack(input.use_dual_stack());
 1338   1338   
        if input.get_origin("endpoint_url").is_client_config() {
 1339   1339   
            builder.set_endpoint_url(input.endpoint_url().map(|s| s.to_string()));
 1340   1340   
        } else {
 1341   1341   
            builder.set_endpoint_url(
 1342   1342   
                input
 1343   1343   
                    .service_config()
 1344   1344   
                    .and_then(|conf| {
 1345         -
                        conf.load_config(service_config_key("AWS_ENDPOINT_URL", "endpoint_url"))
        1345  +
                        conf.load_config(service_config_key("STS", "AWS_ENDPOINT_URL", "endpoint_url"))
 1346   1346   
                            .map(|it| it.parse().unwrap())
 1347   1347   
                    })
 1348   1348   
                    .or_else(|| input.endpoint_url().map(|s| s.to_string())),
 1349   1349   
            );
 1350   1350   
        }
 1351   1351   
        // resiliency
 1352   1352   
        builder.set_retry_config(input.retry_config().cloned());
 1353   1353   
        builder.set_timeout_config(input.timeout_config().cloned());
 1354   1354   
        builder.set_sleep_impl(input.sleep_impl());
 1355   1355   
 1356   1356   
        builder.set_http_client(input.http_client());
 1357   1357   
        builder.set_time_source(input.time_source());
 1358   1358   
        builder.set_behavior_version(input.behavior_version());
 1359   1359   
        builder.set_auth_scheme_preference(input.auth_scheme_preference().cloned());
 1360   1360   
        // setting `None` here removes the default
 1361   1361   
        if let Some(config) = input.stalled_stream_protection() {
 1362   1362   
            builder.set_stalled_stream_protection(Some(config));
 1363   1363   
        }
 1364   1364   
 1365   1365   
        if let Some(cache) = input.identity_cache() {
 1366   1366   
            builder.set_identity_cache(cache);
 1367   1367   
        }
 1368   1368   
        builder.set_app_name(input.app_name().cloned());
 1369   1369   
 1370   1370   
        builder
 1371   1371   
    }
 1372   1372   
}
 1373   1373   
 1374   1374   
impl From<&::aws_types::sdk_config::SdkConfig> for Config {
 1375   1375   
    fn from(sdk_config: &::aws_types::sdk_config::SdkConfig) -> Self {
 1376   1376   
        Builder::from(sdk_config).build()
 1377   1377   
    }
 1378   1378   
}
 1379   1379   
 1380   1380   
pub use ::aws_types::app_name::AppName;
 1381   1381   
 1382   1382   
#[allow(dead_code)]
 1383         -
fn service_config_key<'a>(env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
        1383  +
fn service_config_key<'a>(service_id: &'a str, env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
 1384   1384   
    ::aws_types::service_config::ServiceConfigKey::builder()
 1385         -
        .service_id("STS")
        1385  +
        .service_id(service_id)
 1386   1386   
        .env(env)
 1387   1387   
        .profile(profile)
 1388   1388   
        .build()
 1389   1389   
        .expect("all field sets explicitly, can't fail")
 1390   1390   
}
 1391   1391   
 1392   1392   
pub use ::aws_smithy_async::rt::sleep::Sleep;
 1393   1393   
 1394   1394   
pub(crate) fn base_client_runtime_plugins(mut config: crate::Config) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
 1395   1395   
    let mut configured_plugins = ::std::vec::Vec::new();

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

@@ -15,15 +75,75 @@
   35     35   
version = "0.61.4"
   36     36   
   37     37   
[dependencies.aws-smithy-runtime]
   38     38   
path = "../aws-smithy-runtime"
   39     39   
features = ["client"]
   40     40   
version = "1.8.6"
   41     41   
   42     42   
[dependencies.aws-smithy-runtime-api]
   43     43   
path = "../aws-smithy-runtime-api"
   44     44   
features = ["client", "http-02x"]
   45         -
version = "1.8.6"
          45  +
version = "1.8.7"
   46     46   
   47     47   
[dependencies.aws-smithy-types]
   48     48   
path = "../aws-smithy-types"
   49     49   
version = "1.3.2"
   50     50   
   51     51   
[dependencies.aws-types]
   52     52   
path = "../aws-types"
   53     53   
version = "1.3.8"
   54     54   
   55     55   
[dependencies.bytes]
@@ -79,79 +139,139 @@
   99     99   
version = "0.63.4"
  100    100   
  101    101   
[dev-dependencies.aws-smithy-runtime]
  102    102   
path = "../aws-smithy-runtime"
  103    103   
features = ["test-util"]
  104    104   
version = "1.8.6"
  105    105   
  106    106   
[dev-dependencies.aws-smithy-runtime-api]
  107    107   
path = "../aws-smithy-runtime-api"
  108    108   
features = ["test-util"]
  109         -
version = "1.8.6"
         109  +
version = "1.8.7"
  110    110   
  111    111   
[dev-dependencies.aws-smithy-types]
  112    112   
path = "../aws-smithy-types"
  113    113   
features = ["test-util"]
  114    114   
version = "1.3.2"
  115    115   
  116    116   
[dev-dependencies.futures-util]
  117    117   
version = "0.3.25"
  118    118   
features = ["alloc"]
  119    119   
default-features = false

tmp-codegen-diff/aws-sdk/sdk/timestreamquery/src/config.rs

@@ -1333,1333 +1433,1433 @@
 1353   1353   
        builder = builder.region(input.region().cloned());
 1354   1354   
        builder.set_use_fips(input.use_fips());
 1355   1355   
        builder.set_use_dual_stack(input.use_dual_stack());
 1356   1356   
        if input.get_origin("endpoint_url").is_client_config() {
 1357   1357   
            builder.set_endpoint_url(input.endpoint_url().map(|s| s.to_string()));
 1358   1358   
        } else {
 1359   1359   
            builder.set_endpoint_url(
 1360   1360   
                input
 1361   1361   
                    .service_config()
 1362   1362   
                    .and_then(|conf| {
 1363         -
                        conf.load_config(service_config_key("AWS_ENDPOINT_URL", "endpoint_url"))
        1363  +
                        conf.load_config(service_config_key("Timestream Query", "AWS_ENDPOINT_URL", "endpoint_url"))
 1364   1364   
                            .map(|it| it.parse().unwrap())
 1365   1365   
                    })
 1366   1366   
                    .or_else(|| input.endpoint_url().map(|s| s.to_string())),
 1367   1367   
            );
 1368   1368   
        }
 1369   1369   
        // resiliency
 1370   1370   
        builder.set_retry_config(input.retry_config().cloned());
 1371   1371   
        builder.set_timeout_config(input.timeout_config().cloned());
 1372   1372   
        builder.set_sleep_impl(input.sleep_impl());
 1373   1373   
 1374   1374   
        builder.set_http_client(input.http_client());
 1375   1375   
        builder.set_time_source(input.time_source());
 1376   1376   
        builder.set_behavior_version(input.behavior_version());
 1377   1377   
        builder.set_auth_scheme_preference(input.auth_scheme_preference().cloned());
 1378   1378   
        // setting `None` here removes the default
 1379   1379   
        if let Some(config) = input.stalled_stream_protection() {
 1380   1380   
            builder.set_stalled_stream_protection(Some(config));
 1381   1381   
        }
 1382   1382   
 1383   1383   
        if let Some(cache) = input.identity_cache() {
 1384   1384   
            builder.set_identity_cache(cache);
 1385   1385   
        }
 1386   1386   
        builder.set_app_name(input.app_name().cloned());
 1387   1387   
 1388   1388   
        builder
 1389   1389   
    }
 1390   1390   
}
 1391   1391   
 1392   1392   
impl From<&::aws_types::sdk_config::SdkConfig> for Config {
 1393   1393   
    fn from(sdk_config: &::aws_types::sdk_config::SdkConfig) -> Self {
 1394   1394   
        Builder::from(sdk_config).build()
 1395   1395   
    }
 1396   1396   
}
 1397   1397   
 1398   1398   
pub use ::aws_types::app_name::AppName;
 1399   1399   
 1400   1400   
#[allow(dead_code)]
 1401         -
fn service_config_key<'a>(env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
        1401  +
fn service_config_key<'a>(service_id: &'a str, env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
 1402   1402   
    ::aws_types::service_config::ServiceConfigKey::builder()
 1403         -
        .service_id("Timestream Query")
        1403  +
        .service_id(service_id)
 1404   1404   
        .env(env)
 1405   1405   
        .profile(profile)
 1406   1406   
        .build()
 1407   1407   
        .expect("all field sets explicitly, can't fail")
 1408   1408   
}
 1409   1409   
 1410   1410   
pub use ::aws_smithy_async::rt::sleep::Sleep;
 1411   1411   
 1412   1412   
pub(crate) fn base_client_runtime_plugins(mut config: crate::Config) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
 1413   1413   
    let mut configured_plugins = ::std::vec::Vec::new();

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

@@ -15,15 +75,75 @@
   35     35   
version = "0.61.4"
   36     36   
   37     37   
[dependencies.aws-smithy-runtime]
   38     38   
path = "../aws-smithy-runtime"
   39     39   
features = ["client"]
   40     40   
version = "1.8.6"
   41     41   
   42     42   
[dependencies.aws-smithy-runtime-api]
   43     43   
path = "../aws-smithy-runtime-api"
   44     44   
features = ["client", "http-02x"]
   45         -
version = "1.8.6"
          45  +
version = "1.8.7"
   46     46   
   47     47   
[dependencies.aws-smithy-types]
   48     48   
path = "../aws-smithy-types"
   49     49   
version = "1.3.2"
   50     50   
   51     51   
[dependencies.aws-types]
   52     52   
path = "../aws-types"
   53     53   
version = "1.3.8"
   54     54   
   55     55   
[dependencies.bytes]

tmp-codegen-diff/aws-sdk/sdk/timestreamwrite/src/config.rs

@@ -1333,1333 +1433,1433 @@
 1353   1353   
        builder = builder.region(input.region().cloned());
 1354   1354   
        builder.set_use_fips(input.use_fips());
 1355   1355   
        builder.set_use_dual_stack(input.use_dual_stack());
 1356   1356   
        if input.get_origin("endpoint_url").is_client_config() {
 1357   1357   
            builder.set_endpoint_url(input.endpoint_url().map(|s| s.to_string()));
 1358   1358   
        } else {
 1359   1359   
            builder.set_endpoint_url(
 1360   1360   
                input
 1361   1361   
                    .service_config()
 1362   1362   
                    .and_then(|conf| {
 1363         -
                        conf.load_config(service_config_key("AWS_ENDPOINT_URL", "endpoint_url"))
        1363  +
                        conf.load_config(service_config_key("Timestream Write", "AWS_ENDPOINT_URL", "endpoint_url"))
 1364   1364   
                            .map(|it| it.parse().unwrap())
 1365   1365   
                    })
 1366   1366   
                    .or_else(|| input.endpoint_url().map(|s| s.to_string())),
 1367   1367   
            );
 1368   1368   
        }
 1369   1369   
        // resiliency
 1370   1370   
        builder.set_retry_config(input.retry_config().cloned());
 1371   1371   
        builder.set_timeout_config(input.timeout_config().cloned());
 1372   1372   
        builder.set_sleep_impl(input.sleep_impl());
 1373   1373   
 1374   1374   
        builder.set_http_client(input.http_client());
 1375   1375   
        builder.set_time_source(input.time_source());
 1376   1376   
        builder.set_behavior_version(input.behavior_version());
 1377   1377   
        builder.set_auth_scheme_preference(input.auth_scheme_preference().cloned());
 1378   1378   
        // setting `None` here removes the default
 1379   1379   
        if let Some(config) = input.stalled_stream_protection() {
 1380   1380   
            builder.set_stalled_stream_protection(Some(config));
 1381   1381   
        }
 1382   1382   
 1383   1383   
        if let Some(cache) = input.identity_cache() {
 1384   1384   
            builder.set_identity_cache(cache);
 1385   1385   
        }
 1386   1386   
        builder.set_app_name(input.app_name().cloned());
 1387   1387   
 1388   1388   
        builder
 1389   1389   
    }
 1390   1390   
}
 1391   1391   
 1392   1392   
impl From<&::aws_types::sdk_config::SdkConfig> for Config {
 1393   1393   
    fn from(sdk_config: &::aws_types::sdk_config::SdkConfig) -> Self {
 1394   1394   
        Builder::from(sdk_config).build()
 1395   1395   
    }
 1396   1396   
}
 1397   1397   
 1398   1398   
pub use ::aws_types::app_name::AppName;
 1399   1399   
 1400   1400   
#[allow(dead_code)]
 1401         -
fn service_config_key<'a>(env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
        1401  +
fn service_config_key<'a>(service_id: &'a str, env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
 1402   1402   
    ::aws_types::service_config::ServiceConfigKey::builder()
 1403         -
        .service_id("Timestream Write")
        1403  +
        .service_id(service_id)
 1404   1404   
        .env(env)
 1405   1405   
        .profile(profile)
 1406   1406   
        .build()
 1407   1407   
        .expect("all field sets explicitly, can't fail")
 1408   1408   
}
 1409   1409   
 1410   1410   
pub use ::aws_smithy_async::rt::sleep::Sleep;
 1411   1411   
 1412   1412   
pub(crate) fn base_client_runtime_plugins(mut config: crate::Config) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
 1413   1413   
    let mut configured_plugins = ::std::vec::Vec::new();

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

@@ -25,25 +85,85 @@
   45     45   
version = "0.61.4"
   46     46   
   47     47   
[dependencies.aws-smithy-runtime]
   48     48   
path = "../aws-smithy-runtime"
   49     49   
features = ["client"]
   50     50   
version = "1.8.6"
   51     51   
   52     52   
[dependencies.aws-smithy-runtime-api]
   53     53   
path = "../aws-smithy-runtime-api"
   54     54   
features = ["client", "http-02x"]
   55         -
version = "1.8.6"
          55  +
version = "1.8.7"
   56     56   
   57     57   
[dependencies.aws-smithy-types]
   58     58   
path = "../aws-smithy-types"
   59     59   
features = ["http-body-0-4-x"]
   60     60   
version = "1.3.2"
   61     61   
   62     62   
[dependencies.aws-types]
   63     63   
path = "../aws-types"
   64     64   
version = "1.3.8"
   65     65   
@@ -98,98 +158,158 @@
  118    118   
version = "0.63.4"
  119    119   
  120    120   
[dev-dependencies.aws-smithy-runtime]
  121    121   
path = "../aws-smithy-runtime"
  122    122   
features = ["test-util"]
  123    123   
version = "1.8.6"
  124    124   
  125    125   
[dev-dependencies.aws-smithy-runtime-api]
  126    126   
path = "../aws-smithy-runtime-api"
  127    127   
features = ["test-util"]
  128         -
version = "1.8.6"
         128  +
version = "1.8.7"
  129    129   
  130    130   
[dev-dependencies.aws-smithy-types]
  131    131   
path = "../aws-smithy-types"
  132    132   
features = ["test-util"]
  133    133   
version = "1.3.2"
  134    134   
  135    135   
[dev-dependencies.futures-core]
  136    136   
version = "0.3.25"
  137    137   
  138    138   
[dev-dependencies.futures-util]

tmp-codegen-diff/aws-sdk/sdk/transcribestreaming/src/config.rs

@@ -1315,1315 +1415,1415 @@
 1335   1335   
        builder = builder.region(input.region().cloned());
 1336   1336   
        builder.set_use_fips(input.use_fips());
 1337   1337   
        builder.set_use_dual_stack(input.use_dual_stack());
 1338   1338   
        if input.get_origin("endpoint_url").is_client_config() {
 1339   1339   
            builder.set_endpoint_url(input.endpoint_url().map(|s| s.to_string()));
 1340   1340   
        } else {
 1341   1341   
            builder.set_endpoint_url(
 1342   1342   
                input
 1343   1343   
                    .service_config()
 1344   1344   
                    .and_then(|conf| {
 1345         -
                        conf.load_config(service_config_key("AWS_ENDPOINT_URL", "endpoint_url"))
        1345  +
                        conf.load_config(service_config_key("Transcribe Streaming", "AWS_ENDPOINT_URL", "endpoint_url"))
 1346   1346   
                            .map(|it| it.parse().unwrap())
 1347   1347   
                    })
 1348   1348   
                    .or_else(|| input.endpoint_url().map(|s| s.to_string())),
 1349   1349   
            );
 1350   1350   
        }
 1351   1351   
        // resiliency
 1352   1352   
        builder.set_retry_config(input.retry_config().cloned());
 1353   1353   
        builder.set_timeout_config(input.timeout_config().cloned());
 1354   1354   
        builder.set_sleep_impl(input.sleep_impl());
 1355   1355   
 1356   1356   
        builder.set_http_client(input.http_client());
 1357   1357   
        builder.set_time_source(input.time_source());
 1358   1358   
        builder.set_behavior_version(input.behavior_version());
 1359   1359   
        builder.set_auth_scheme_preference(input.auth_scheme_preference().cloned());
 1360   1360   
        // setting `None` here removes the default
 1361   1361   
        if let Some(config) = input.stalled_stream_protection() {
 1362   1362   
            builder.set_stalled_stream_protection(Some(config));
 1363   1363   
        }
 1364   1364   
 1365   1365   
        if let Some(cache) = input.identity_cache() {
 1366   1366   
            builder.set_identity_cache(cache);
 1367   1367   
        }
 1368   1368   
        builder.set_app_name(input.app_name().cloned());
 1369   1369   
 1370   1370   
        builder
 1371   1371   
    }
 1372   1372   
}
 1373   1373   
 1374   1374   
impl From<&::aws_types::sdk_config::SdkConfig> for Config {
 1375   1375   
    fn from(sdk_config: &::aws_types::sdk_config::SdkConfig) -> Self {
 1376   1376   
        Builder::from(sdk_config).build()
 1377   1377   
    }
 1378   1378   
}
 1379   1379   
 1380   1380   
pub use ::aws_types::app_name::AppName;
 1381   1381   
 1382   1382   
#[allow(dead_code)]
 1383         -
fn service_config_key<'a>(env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
        1383  +
fn service_config_key<'a>(service_id: &'a str, env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
 1384   1384   
    ::aws_types::service_config::ServiceConfigKey::builder()
 1385         -
        .service_id("Transcribe Streaming")
        1385  +
        .service_id(service_id)
 1386   1386   
        .env(env)
 1387   1387   
        .profile(profile)
 1388   1388   
        .build()
 1389   1389   
        .expect("all field sets explicitly, can't fail")
 1390   1390   
}
 1391   1391   
 1392   1392   
pub use ::aws_smithy_async::rt::sleep::Sleep;
 1393   1393   
 1394   1394   
pub(crate) fn base_client_runtime_plugins(mut config: crate::Config) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
 1395   1395   
    let mut configured_plugins = ::std::vec::Vec::new();