Struct aws_sdk_s3::presigning::PresigningConfigBuilder
source · #[non_exhaustive]pub struct PresigningConfigBuilder { /* private fields */ }
Expand description
Builder used to create PresigningConfig
.
Implementations§
source§impl PresigningConfigBuilder
impl PresigningConfigBuilder
sourcepub fn start_time(self, start_time: SystemTime) -> Self
pub fn start_time(self, start_time: SystemTime) -> Self
Sets the start time for the presigned request.
The request will start to be valid at this time, and will cease to be valid after
the end time, which can be determined by adding the expires_in
duration to this
start time. If not specified, this will default to the current time.
Optional.
sourcepub fn set_start_time(&mut self, start_time: Option<SystemTime>)
pub fn set_start_time(&mut self, start_time: Option<SystemTime>)
Sets the start time for the presigned request.
The request will start to be valid at this time, and will cease to be valid after
the end time, which can be determined by adding the expires_in
duration to this
start time. If not specified, this will default to the current time.
Optional.
sourcepub fn expires_in(self, expires_in: Duration) -> Self
pub fn expires_in(self, expires_in: Duration) -> Self
Sets how long the request should be valid after the start_time
(which defaults
to the current time).
Credential expiration time takes priority over the expires_in
value.
If the credentials used to sign the request expire before the presigned request is
set to expire, then the presigned request will become invalid.
Required.
sourcepub fn set_expires_in(&mut self, expires_in: Option<Duration>)
pub fn set_expires_in(&mut self, expires_in: Option<Duration>)
Sets how long the request should be valid after the start_time
(which defaults
to the current time).
Credential expiration time takes priority over the expires_in
value.
If the credentials used to sign the request expire before the presigned request is
set to expire, then the presigned request will become invalid.
Required.
sourcepub fn build(self) -> Result<PresigningConfig, PresigningConfigError>
pub fn build(self) -> Result<PresigningConfig, PresigningConfigError>
Builds the PresigningConfig
. This will error if expires_in
is not
given, or if it’s longer than one week.