Struct aws_sdk_connect::types::builders::DownloadUrlMetadataBuilder
source · #[non_exhaustive]pub struct DownloadUrlMetadataBuilder { /* private fields */ }
Expand description
A builder for DownloadUrlMetadata
.
Implementations§
source§impl DownloadUrlMetadataBuilder
impl DownloadUrlMetadataBuilder
sourcepub fn url(self, input: impl Into<String>) -> Self
pub fn url(self, input: impl Into<String>) -> Self
A pre-signed URL that should be used to download the attached file.
sourcepub fn set_url(self, input: Option<String>) -> Self
pub fn set_url(self, input: Option<String>) -> Self
A pre-signed URL that should be used to download the attached file.
sourcepub fn get_url(&self) -> &Option<String>
pub fn get_url(&self) -> &Option<String>
A pre-signed URL that should be used to download the attached file.
sourcepub fn url_expiry(self, input: impl Into<String>) -> Self
pub fn url_expiry(self, input: impl Into<String>) -> Self
The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
sourcepub fn set_url_expiry(self, input: Option<String>) -> Self
pub fn set_url_expiry(self, input: Option<String>) -> Self
The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
sourcepub fn get_url_expiry(&self) -> &Option<String>
pub fn get_url_expiry(&self) -> &Option<String>
The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
sourcepub fn build(self) -> DownloadUrlMetadata
pub fn build(self) -> DownloadUrlMetadata
Consumes the builder and constructs a DownloadUrlMetadata
.
Trait Implementations§
source§impl Clone for DownloadUrlMetadataBuilder
impl Clone for DownloadUrlMetadataBuilder
source§fn clone(&self) -> DownloadUrlMetadataBuilder
fn clone(&self) -> DownloadUrlMetadataBuilder
Returns a copy 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 DownloadUrlMetadataBuilder
impl Debug for DownloadUrlMetadataBuilder
source§impl Default for DownloadUrlMetadataBuilder
impl Default for DownloadUrlMetadataBuilder
source§fn default() -> DownloadUrlMetadataBuilder
fn default() -> DownloadUrlMetadataBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DownloadUrlMetadataBuilder
impl PartialEq for DownloadUrlMetadataBuilder
source§fn eq(&self, other: &DownloadUrlMetadataBuilder) -> bool
fn eq(&self, other: &DownloadUrlMetadataBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DownloadUrlMetadataBuilder
Auto Trait Implementations§
impl Freeze for DownloadUrlMetadataBuilder
impl RefUnwindSafe for DownloadUrlMetadataBuilder
impl Send for DownloadUrlMetadataBuilder
impl Sync for DownloadUrlMetadataBuilder
impl Unpin for DownloadUrlMetadataBuilder
impl UnwindSafe for DownloadUrlMetadataBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.