Skip to content

Commit

Permalink
Update design docs
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-rust-ci committed Oct 13, 2023
1 parent 19469dc commit 75bcb43
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions design/client/identity_and_auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ <h3 id="the-configuration-stage"><a class="header" href="#the-configuration-stag
<li><strong>IdentityResolver:</strong> resolves an identity for use in authentication.
There can be multiple identity resolvers that need to be selected from.</li>
<li><strong>Signer:</strong> a signing implementation that signs a HTTP request.</li>
<li><strong>AuthSchemeOptionResolver:</strong> resolves a list of auth scheme options for a given operation and its inputs.</li>
<li><strong>ResolveAuthSchemeOptions:</strong> resolves a list of auth scheme options for a given operation and its inputs.</li>
</ul>
</li>
</ul>
Expand All @@ -230,7 +230,7 @@ <h3 id="the-execution-stage"><a class="header" href="#the-execution-stage">The e
<ol>
<li>Retrieve the <code>AuthSchemeOptionResolverParams</code> from the config bag. The <code>AuthSchemeOptionResolverParams</code> allow client
config and operation inputs to play a role in which auth scheme option is selected.</li>
<li>Retrieve the <code>AuthSchemeOptionResolver</code> from the config bag, and use it to resolve the auth scheme options available
<li>Retrieve the <code>ResolveAuthSchemeOptions</code> impl from the config bag, and use it to resolve the auth scheme options available
with the <code>AuthSchemeOptionResolverParams</code>. The returned auth scheme options are in priority order.</li>
<li>Retrieve the <code>IdentityResolvers</code> list from the config bag.</li>
<li>For each auth scheme option:
Expand Down Expand Up @@ -260,7 +260,7 @@ <h2 id="how-this-looks-in-rust"><a class="header" href="#how-this-looks-in-rust"
scheme_id: &amp;'static str,
}

pub trait AuthSchemeOptionResolver: Send + Sync + Debug {
pub trait ResolveAuthSchemeOptions: Send + Sync + Debug {
fn resolve_auth_scheme_options&lt;'a&gt;(
&amp;'a self,
params: &amp;AuthSchemeOptionResolverParams,
Expand Down
6 changes: 3 additions & 3 deletions design/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ <h3 id="the-configuration-stage"><a class="header" href="#the-configuration-stag
<li><strong>IdentityResolver:</strong> resolves an identity for use in authentication.
There can be multiple identity resolvers that need to be selected from.</li>
<li><strong>Signer:</strong> a signing implementation that signs a HTTP request.</li>
<li><strong>AuthSchemeOptionResolver:</strong> resolves a list of auth scheme options for a given operation and its inputs.</li>
<li><strong>ResolveAuthSchemeOptions:</strong> resolves a list of auth scheme options for a given operation and its inputs.</li>
</ul>
</li>
</ul>
Expand All @@ -1107,7 +1107,7 @@ <h3 id="the-execution-stage"><a class="header" href="#the-execution-stage">The e
<ol>
<li>Retrieve the <code>AuthSchemeOptionResolverParams</code> from the config bag. The <code>AuthSchemeOptionResolverParams</code> allow client
config and operation inputs to play a role in which auth scheme option is selected.</li>
<li>Retrieve the <code>AuthSchemeOptionResolver</code> from the config bag, and use it to resolve the auth scheme options available
<li>Retrieve the <code>ResolveAuthSchemeOptions</code> impl from the config bag, and use it to resolve the auth scheme options available
with the <code>AuthSchemeOptionResolverParams</code>. The returned auth scheme options are in priority order.</li>
<li>Retrieve the <code>IdentityResolvers</code> list from the config bag.</li>
<li>For each auth scheme option:
Expand Down Expand Up @@ -1137,7 +1137,7 @@ <h2 id="how-this-looks-in-rust"><a class="header" href="#how-this-looks-in-rust"
scheme_id: &amp;'static str,
}

pub trait AuthSchemeOptionResolver: Send + Sync + Debug {
pub trait ResolveAuthSchemeOptions: Send + Sync + Debug {
fn resolve_auth_scheme_options&lt;'a&gt;(
&amp;'a self,
params: &amp;AuthSchemeOptionResolverParams,
Expand Down
2 changes: 1 addition & 1 deletion design/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion design/searchindex.json

Large diffs are not rendered by default.

0 comments on commit 75bcb43

Please sign in to comment.