File tree Expand file tree Collapse file tree 3 files changed +1
-29
lines changed Expand file tree Collapse file tree 3 files changed +1
-29
lines changed Original file line number Diff line number Diff line change 1- da214d905b6f4a3ec20ed1faca84d5a7d8e24e0d
1+ 3e15e4a90cf9143c7e9b82b8594c4e731942a0dd
Original file line number Diff line number Diff line change @@ -50,9 +50,6 @@ version = "0.2"
5050version = " 0.1.7"
5151[dependencies .tower ]
5252version = " 0.4"
53- [dev-dependencies .aws-config ]
54- path = " ../aws-config"
55- version = " 0.5.0"
5653[features ]
5754rustls = [" aws-smithy-client/rustls" ]
5855native-tls = [" aws-smithy-client/native-tls" ]
Original file line number Diff line number Diff line change @@ -13,31 +13,6 @@ pub(crate) struct Handle<
1313///
1414/// Client for invoking operations on AWS Single Sign-On. Each operation on AWS Single Sign-On is a method on this
1515/// this struct. `.send()` MUST be invoked on the generated operations to dispatch the request to the service.
16- ///
17- /// # Examples
18- /// **Constructing a client and invoking an operation**
19- /// ```rust,no_run
20- /// # async fn docs() {
21- /// // create a shared configuration. This can be used & shared between multiple service clients.
22- /// let shared_config = aws_config::load_from_env().await;
23- /// let client = aws_sdk_sso::Client::new(&shared_config);
24- /// // invoke an operation
25- /// /* let rsp = client
26- /// .<operation_name>().
27- /// .<param>("some value")
28- /// .send().await; */
29- /// # }
30- /// ```
31- /// **Constructing a client with custom configuration**
32- /// ```rust,no_run
33- /// use aws_config::RetryConfig;
34- /// # async fn docs() {
35- /// let shared_config = aws_config::load_from_env().await;
36- /// let config = aws_sdk_sso::config::Builder::from(&shared_config)
37- /// .retry_config(RetryConfig::disabled())
38- /// .build();
39- /// let client = aws_sdk_sso::Client::from_conf(config);
40- /// # }
4116#[ derive( std:: fmt:: Debug ) ]
4217pub struct Client <
4318 C = aws_smithy_client:: erase:: DynConnector ,
You can’t perform that action at this time.
0 commit comments