pub struct AwsJobPresignedUrlConfig {
pub expires_in_sec: Option<i64>,
}Expand description
Configuration information for pre-signed URLs. Valid when protocols contains HTTP.
Fields§
§expires_in_sec: Option<i64>How long (in seconds) pre-signed URLs are valid. Valid values are 60 - 3600, the default value is 1800 seconds. Pre-signed URLs are generated when a request for the job document is received.
Trait Implementations§
Source§impl Clone for AwsJobPresignedUrlConfig
impl Clone for AwsJobPresignedUrlConfig
Source§fn clone(&self) -> AwsJobPresignedUrlConfig
fn clone(&self) -> AwsJobPresignedUrlConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AwsJobPresignedUrlConfig
impl Debug for AwsJobPresignedUrlConfig
Source§impl Default for AwsJobPresignedUrlConfig
impl Default for AwsJobPresignedUrlConfig
Source§fn default() -> AwsJobPresignedUrlConfig
fn default() -> AwsJobPresignedUrlConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsJobPresignedUrlConfig
impl<'de> Deserialize<'de> for AwsJobPresignedUrlConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsJobPresignedUrlConfig
impl PartialEq for AwsJobPresignedUrlConfig
Source§impl Serialize for AwsJobPresignedUrlConfig
impl Serialize for AwsJobPresignedUrlConfig
impl StructuralPartialEq for AwsJobPresignedUrlConfig
Auto Trait Implementations§
impl Freeze for AwsJobPresignedUrlConfig
impl RefUnwindSafe for AwsJobPresignedUrlConfig
impl Send for AwsJobPresignedUrlConfig
impl Sync for AwsJobPresignedUrlConfig
impl Unpin for AwsJobPresignedUrlConfig
impl UnwindSafe for AwsJobPresignedUrlConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more