Uses of Class
software.amazon.awssdk.http.auth.spi.signer.SignerProperty
-
-
Uses of SignerProperty in software.amazon.awssdk.http.auth.spi.internal.scheme
Methods in software.amazon.awssdk.http.auth.spi.internal.scheme with parameters of type SignerProperty Modifier and Type Method Description <T> AuthSchemeOption.BuilderDefaultAuthSchemeOption.BuilderImpl. putSignerProperty(SignerProperty<T> key, T value)<T> AuthSchemeOption.BuilderDefaultAuthSchemeOption.BuilderImpl. putSignerPropertyIfAbsent(SignerProperty<T> key, T value)<T> TDefaultAuthSchemeOption. signerProperty(SignerProperty<T> property) -
Uses of SignerProperty in software.amazon.awssdk.http.auth.spi.internal.signer
Fields in software.amazon.awssdk.http.auth.spi.internal.signer with type parameters of type SignerProperty Modifier and Type Field Description protected Map<SignerProperty<?>,Object>DefaultBaseSignRequest. propertiesprotected Map<SignerProperty<?>,Object>DefaultBaseSignRequest. properties -
Uses of SignerProperty in software.amazon.awssdk.http.auth.spi.scheme
Methods in software.amazon.awssdk.http.auth.spi.scheme with parameters of type SignerProperty Modifier and Type Method Description <T> voidAuthSchemeOption.SignerPropertyConsumer. accept(SignerProperty<T> propertyKey, T propertyValue)A method to operate on aSignerPropertyand it's value.<T> AuthSchemeOption.BuilderAuthSchemeOption.Builder. putSignerProperty(SignerProperty<T> key, T value)Update or add the provided property value.<T> AuthSchemeOption.BuilderAuthSchemeOption.Builder. putSignerPropertyIfAbsent(SignerProperty<T> key, T value)Add the provided property value if the property does not already exist.<T> TAuthSchemeOption. signerProperty(SignerProperty<T> property)Retrieve the value of anSignerProperty. -
Uses of SignerProperty in software.amazon.awssdk.http.auth.spi.signer
Fields in software.amazon.awssdk.http.auth.spi.signer declared as SignerProperty Modifier and Type Field Description static SignerProperty<Clock>HttpSigner. SIGNING_CLOCKAClockto be used to derive the signing time.Methods in software.amazon.awssdk.http.auth.spi.signer that return SignerProperty Modifier and Type Method Description static <T> SignerProperty<T>SignerProperty. create(Class<?> namespace, String name)Create a property.Methods in software.amazon.awssdk.http.auth.spi.signer with parameters of type SignerProperty Modifier and Type Method Description default <T> booleanBaseSignRequest. hasProperty(SignerProperty<T> property)Ensure that theSignerPropertyis present in theBaseSignRequest.<T> TBaseSignRequest. property(SignerProperty<T> property)Returns the value of a property that theHttpSignercan use during signing.<T> BBaseSignRequest.Builder. putProperty(SignerProperty<T> key, T value)Set a property that theHttpSignercan use during signing.default <T> TBaseSignRequest. requireProperty(SignerProperty<T> property)Ensure that theSignerPropertyis present in theBaseSignRequest.default <T> TBaseSignRequest. requireProperty(SignerProperty<T> property, T defaultValue)Ensure that theSignerPropertyis present in theBaseSignRequest.
-