Skip to content

Commit 45ba84d

Browse files
rcohjdisanti
andcommitted
[autosync] Add SSO to the list of circular dep supressions (#1089)
* Add SSO to the list of circular dep supressions * Update CHANGELOG.next.toml Co-authored-by: John DiSanti <jdisanti@amazon.com> Co-authored-by: John DiSanti <jdisanti@amazon.com>
1 parent 5ae6ee0 commit 45ba84d

File tree

3 files changed

+1
-29
lines changed

3 files changed

+1
-29
lines changed

.smithyrs-githash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
da214d905b6f4a3ec20ed1faca84d5a7d8e24e0d
1+
3e15e4a90cf9143c7e9b82b8594c4e731942a0dd

sdk/sso/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ version = "0.2"
5050
version = "0.1.7"
5151
[dependencies.tower]
5252
version = "0.4"
53-
[dev-dependencies.aws-config]
54-
path = "../aws-config"
55-
version = "0.5.0"
5653
[features]
5754
rustls = ["aws-smithy-client/rustls"]
5855
native-tls = ["aws-smithy-client/native-tls"]

sdk/sso/src/client.rs

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff 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)]
4217
pub struct Client<
4318
C = aws_smithy_client::erase::DynConnector,

0 commit comments

Comments
 (0)