File tree Expand file tree Collapse file tree
docs/source-2.0/guides/client-guidance/identity-auth Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ identification would sign an outgoing HTTP request by presenting the value of
7373the token in the ` Authorization ` header.
7474
7575All signers require, at a minimum, a request to sign and an identity with which
76- to sign. A Signer should be modeled like so:
76+ to sign. A ` Signer ` should be modeled like so:
7777
7878``` java
7979// This example interface modifies the transport message in-place with the
@@ -87,7 +87,7 @@ public interface Signer<TIdentity extends Identity, TMessage extends Message> {
8787
8888## AuthScheme
8989
90- An AuthScheme self-describes a single flow (combination of an identity resolver
90+ An ` AuthScheme ` self-describes a single flow (combination of an identity resolver
9191and signer) through which a Smithy client authenticates a request:
9292
9393``` java
@@ -119,9 +119,9 @@ public interface IdentityResolverConfig {
119119}
120120```
121121
122- A list of supported AuthSchemes should be configurable by the end-user of the
122+ A list of supported ` AuthScheme ` s should be configurable by the end-user of the
123123Smithy client. The default "constructor" for a Smithy client should typically
124- pre-load a list of supported AuthSchemes on client configuration.
124+ pre-load a list of supported ` AuthScheme ` s on client configuration.
125125
126126``` java
127127// in this example, the service supports some combination of
You can’t perform that action at this time.
0 commit comments