public static enum AwsSigningConfig.AwsSignatureType extends Enum<AwsSigningConfig.AwsSignatureType>
| Enum Constant and Description |
|---|
HTTP_REQUEST_CHUNK
Compute a signature for a payload chunk.
|
HTTP_REQUEST_EVENT
Compute a signature for an event stream event.
|
HTTP_REQUEST_VIA_HEADERS
A signature for a full http request should be computed, with header updates applied to the signing result.
|
HTTP_REQUEST_VIA_QUERY_PARAMS
A signature for a full http request should be computed, with query param updates applied to the signing result.
|
| Modifier and Type | Method and Description |
|---|---|
static AwsSigningConfig.AwsSignatureType |
getEnumValueFromInteger(int value) |
int |
getNativeValue() |
static AwsSigningConfig.AwsSignatureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AwsSigningConfig.AwsSignatureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AwsSigningConfig.AwsSignatureType HTTP_REQUEST_VIA_HEADERS
public static final AwsSigningConfig.AwsSignatureType HTTP_REQUEST_VIA_QUERY_PARAMS
public static final AwsSigningConfig.AwsSignatureType HTTP_REQUEST_CHUNK
public static final AwsSigningConfig.AwsSignatureType HTTP_REQUEST_EVENT
public static AwsSigningConfig.AwsSignatureType[] values()
for (AwsSigningConfig.AwsSignatureType c : AwsSigningConfig.AwsSignatureType.values()) System.out.println(c);
public static AwsSigningConfig.AwsSignatureType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getNativeValue()
public static AwsSigningConfig.AwsSignatureType getEnumValueFromInteger(int value)
Copyright © 2021. All rights reserved.