Interface AwsV4HttpSigner
-
- All Superinterfaces:
AwsV4FamilyHttpSigner<AwsCredentialsIdentity>,HttpSigner<AwsCredentialsIdentity>
- All Known Implementing Classes:
DefaultAwsV4HttpSigner
public interface AwsV4HttpSigner extends AwsV4FamilyHttpSigner<AwsCredentialsIdentity>
AnHttpSignerthat will use the AWS V4 signing algorithm to sign a request using anAwsCredentialsIdentity).The steps performed by this signer are documented here.
Using the AwsV4HttpSigner
Sign an HTTP request and send it to a service.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface software.amazon.awssdk.http.auth.aws.signer.AwsV4FamilyHttpSigner
AwsV4FamilyHttpSigner.AuthLocation
-
-
Field Summary
Fields Modifier and Type Field Description static SignerProperty<String>REGION_NAMEThe AWS region name to be used for computing the signature.-
Fields inherited from interface software.amazon.awssdk.http.auth.aws.signer.AwsV4FamilyHttpSigner
AUTH_LOCATION, CHECKSUM_ALGORITHM, CHUNK_ENCODING_ENABLED, DOUBLE_URL_ENCODE, EXPIRATION_DURATION, NORMALIZE_PATH, PAYLOAD_SIGNING_ENABLED, SERVICE_SIGNING_NAME
-
Fields inherited from interface software.amazon.awssdk.http.auth.spi.signer.HttpSigner
SIGNING_CLOCK
-
-
Method Summary
Static Methods Modifier and Type Method Description static AwsV4HttpSignercreate()Get a default implementation of aAwsV4HttpSigner
-
-
-
Field Detail
-
REGION_NAME
static final SignerProperty<String> REGION_NAME
The AWS region name to be used for computing the signature. This property is required.
-
-
Method Detail
-
create
static AwsV4HttpSigner create()
Get a default implementation of aAwsV4HttpSigner
-
-