Interface PresignRequest.Builder
-
- All Known Implementing Classes:
PresignRequest.DefaultBuilder
- Enclosing class:
- PresignRequest
public static interface PresignRequest.BuilderThe base interface for all presign request builders.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PresignRequestbuild()Build the presigned request, based on the configuration on this builder.PresignRequest.BuildersignatureDuration(Duration signatureDuration)Specifies the duration for which this presigned request should be valid.
-
-
-
Method Detail
-
signatureDuration
PresignRequest.Builder signatureDuration(Duration signatureDuration)
Specifies the duration for which this presigned request should be valid. After this time has expired, attempting to use the presigned request will fail.
-
build
PresignRequest build()
Build the presigned request, based on the configuration on this builder.
-
-