Class SignerProperty<T>
- java.lang.Object
-
- software.amazon.awssdk.http.auth.spi.signer.SignerProperty<T>
-
- Type Parameters:
T- The type of the property.
@SdkPublicApi @Immutable @ThreadSafe public final class SignerProperty<T> extends Object
A strongly-typed property for input to anHttpSigner.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> SignerProperty<T>create(Class<?> namespace, String name)Create a property.booleanequals(Object o)inthashCode()StringtoString()
-
-
-
Method Detail
-
create
public static <T> SignerProperty<T> create(Class<?> namespace, String name)
Create a property.- Type Parameters:
T- the type of the property.- Parameters:
namespace- the class *where* the property is being definedname- the name for the property- Throws:
IllegalArgumentException- if a property with this namespace and name already exist
-
-