Class DefaultAuthSchemeOption
java.lang.Object
software.amazon.awssdk.http.auth.spi.internal.scheme.DefaultAuthSchemeOption
- All Implemented Interfaces:
 AuthSchemeOption,ToCopyableBuilder<AuthSchemeOption.Builder,AuthSchemeOption> 
- 
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface software.amazon.awssdk.http.auth.spi.scheme.AuthSchemeOption
AuthSchemeOption.Builder, AuthSchemeOption.IdentityPropertyConsumer, AuthSchemeOption.SignerPropertyConsumer - 
Method Summary
Modifier and TypeMethodDescriptionstatic AuthSchemeOption.Builderbuilder()voidA method to operate on allIdentityPropertyvalues of this AuthSchemeOption.voidA method to operate on allSignerPropertyvalues of this AuthSchemeOption.<T> TidentityProperty(IdentityProperty<T> property) Retrieve the value of anIdentityProperty.schemeId()Retrieve the scheme ID, a unique identifier for the authentication scheme (aws.auth#sigv4, smithy.api#httpBearerAuth).<T> TsignerProperty(SignerProperty<T> property) Retrieve the value of anSignerProperty.Take this object and create a builder that contains all of the current property values of this object.toString()Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy 
- 
Method Details
- 
builder
 - 
schemeId
Description copied from interface:AuthSchemeOptionRetrieve the scheme ID, a unique identifier for the authentication scheme (aws.auth#sigv4, smithy.api#httpBearerAuth).- Specified by:
 schemeIdin interfaceAuthSchemeOption
 - 
identityProperty
Description copied from interface:AuthSchemeOptionRetrieve the value of anIdentityProperty.- Specified by:
 identityPropertyin interfaceAuthSchemeOption- Type Parameters:
 T- The type of the IdentityProperty.- Parameters:
 property- The IdentityProperty to retrieve the value of.
 - 
signerProperty
Description copied from interface:AuthSchemeOptionRetrieve the value of anSignerProperty.- Specified by:
 signerPropertyin interfaceAuthSchemeOption- Type Parameters:
 T- The type of the SignerProperty.- Parameters:
 property- The SignerProperty to retrieve the value of.
 - 
forEachIdentityProperty
Description copied from interface:AuthSchemeOptionA method to operate on allIdentityPropertyvalues of this AuthSchemeOption.- Specified by:
 forEachIdentityPropertyin interfaceAuthSchemeOption- Parameters:
 consumer- The method to apply to each IdentityProperty.
 - 
forEachSignerProperty
Description copied from interface:AuthSchemeOptionA method to operate on allSignerPropertyvalues of this AuthSchemeOption.- Specified by:
 forEachSignerPropertyin interfaceAuthSchemeOption- Parameters:
 consumer- The method to apply to each SignerProperty.
 - 
toBuilder
Description copied from interface:ToCopyableBuilderTake this object and create a builder that contains all of the current property values of this object.- Specified by:
 toBuilderin interfaceToCopyableBuilder<AuthSchemeOption.Builder,AuthSchemeOption> - Returns:
 - a builder for type T
 
 - 
toString
 
 -