Skip to content

Commit

Permalink
remove mentions of xanadu
Browse files Browse the repository at this point in the history
  • Loading branch information
Velfi committed Dec 3, 2024
1 parent e170084 commit a61500a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aws/rust-runtime/aws-inlineable/src/dsql_auth_token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

//! Code related to creating signed URLs for logging in to Xanadu.
//! Code related to creating signed URLs for logging in to DSQL.
use aws_credential_types::provider::{ProvideCredentials, SharedCredentialsProvider};
use aws_sigv4::http_request;
Expand Down Expand Up @@ -45,7 +45,7 @@ pub struct AuthTokenGenerator {
config: Config,
}

/// An auth token usable as a password for a Xanadu database.
/// An auth token usable as a password for a DSQL database.
///
/// This struct can be converted into a `&str` by calling `as_str`
/// or converted into a `String` by calling `to_string()`.
Expand All @@ -69,7 +69,7 @@ impl fmt::Display for AuthToken {
}

impl AuthTokenGenerator {
/// Given a `Config`, create a new Xanadu database login URL signer.
/// Given a `Config`, create a new DSQL database login URL signer.
pub fn new(config: Config) -> Self {
Self { config }
}
Expand Down Expand Up @@ -141,7 +141,7 @@ impl AuthTokenGenerator {
}
}

/// Configuration for a Xanadu auth URL signer.
/// Configuration for a DSQL auth URL signer.
#[derive(Debug, Clone)]
pub struct Config {
/// The AWS credentials to sign requests with.
Expand Down

0 comments on commit a61500a

Please sign in to comment.