AWS SDK

AWS SDK

rev. 27102829f69b2cfe3a9ca9e69ae64d1ea40f9865

Files changed:

tmp-codegen-diff/aws-sdk/sdk/transcribestreaming/src/operation/start_medical_stream_transcription.rs

@@ -245,245 +306,308 @@
  265    265   
  266    266   
        let params = crate::config::endpoint::Params::builder()
  267    267   
            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
  268    268   
            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
  269    269   
            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
  270    270   
            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
  271    271   
            .build()
  272    272   
            .map_err(|err| {
  273    273   
                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
  274    274   
            })?;
         275  +
  275    276   
        cfg.interceptor_state()
  276    277   
            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
         278  +
  277    279   
        ::std::result::Result::Ok(())
  278    280   
    }
  279    281   
}
  280    282   
  281    283   
// The get_* functions below are generated from JMESPath expressions in the
  282    284   
// operationContextParams trait. They target the operation's input shape.
  283    285   
  284    286   
/// Error type for the `StartMedicalStreamTranscriptionError` operation.
  285    287   
#[non_exhaustive]
  286    288   
#[derive(::std::fmt::Debug)]

tmp-codegen-diff/aws-sdk/sdk/transcribestreaming/src/operation/start_stream_transcription.rs

@@ -244,244 +305,307 @@
  264    264   
  265    265   
        let params = crate::config::endpoint::Params::builder()
  266    266   
            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
  267    267   
            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
  268    268   
            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
  269    269   
            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
  270    270   
            .build()
  271    271   
            .map_err(|err| {
  272    272   
                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
  273    273   
            })?;
         274  +
  274    275   
        cfg.interceptor_state()
  275    276   
            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
         277  +
  276    278   
        ::std::result::Result::Ok(())
  277    279   
    }
  278    280   
}
  279    281   
  280    282   
// The get_* functions below are generated from JMESPath expressions in the
  281    283   
// operationContextParams trait. They target the operation's input shape.
  282    284   
  283    285   
/// Error type for the `StartStreamTranscriptionError` operation.
  284    286   
#[non_exhaustive]
  285    287   
#[derive(::std::fmt::Debug)]

tmp-codegen-diff/aws-sdk/tests/no-default-features/Cargo.toml

@@ -12,12 +54,54 @@
   32     32   
version = "1.9.2"
   33     33   
   34     34   
[dev-dependencies.aws-smithy-http-client]
   35     35   
path = "../../sdk/aws-smithy-http-client"
   36     36   
features = ["test-util"]
   37     37   
version = "1.1.1"
   38     38   
   39     39   
[dev-dependencies.aws-credential-types]
   40     40   
path = "../../sdk/aws-credential-types"
   41     41   
features = ["test-util"]
   42         -
version = "1.2.6"
          42  +
version = "1.2.7"
   43     43   
   44     44   
[dev-dependencies.tokio]
   45     45   
version = "1.23.1"
   46     46   
features = ["full", "test-util"]
   47     47   
   48     48   
[dev-dependencies.tracing-subscriber]
   49     49   
version = "0.3.15"
   50     50   
features = ["env-filter"]
   51     51   
   52     52   
[dev-dependencies.http-1x]