Struct aws_sdk_qconnect::operation::start_content_upload::builders::StartContentUploadOutputBuilder
source · #[non_exhaustive]pub struct StartContentUploadOutputBuilder { /* private fields */ }Expand description
A builder for StartContentUploadOutput.
Implementations§
source§impl StartContentUploadOutputBuilder
impl StartContentUploadOutputBuilder
sourcepub fn upload_id(self, input: impl Into<String>) -> Self
pub fn upload_id(self, input: impl Into<String>) -> Self
The identifier of the upload.
This field is required.sourcepub fn set_upload_id(self, input: Option<String>) -> Self
pub fn set_upload_id(self, input: Option<String>) -> Self
The identifier of the upload.
sourcepub fn get_upload_id(&self) -> &Option<String>
pub fn get_upload_id(&self) -> &Option<String>
The identifier of the upload.
sourcepub fn url(self, input: impl Into<String>) -> Self
pub fn url(self, input: impl Into<String>) -> Self
The URL of the upload.
This field is required.sourcepub fn url_expiry(self, input: DateTime) -> Self
pub fn url_expiry(self, input: DateTime) -> Self
The expiration time of the URL as an epoch timestamp.
This field is required.sourcepub fn set_url_expiry(self, input: Option<DateTime>) -> Self
pub fn set_url_expiry(self, input: Option<DateTime>) -> Self
The expiration time of the URL as an epoch timestamp.
sourcepub fn get_url_expiry(&self) -> &Option<DateTime>
pub fn get_url_expiry(&self) -> &Option<DateTime>
The expiration time of the URL as an epoch timestamp.
sourcepub fn headers_to_include(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn headers_to_include( self, k: impl Into<String>, v: impl Into<String> ) -> Self
Adds a key-value pair to headers_to_include.
To override the contents of this collection use set_headers_to_include.
The headers to include in the upload.
sourcepub fn set_headers_to_include(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_headers_to_include( self, input: Option<HashMap<String, String>> ) -> Self
The headers to include in the upload.
sourcepub fn get_headers_to_include(&self) -> &Option<HashMap<String, String>>
pub fn get_headers_to_include(&self) -> &Option<HashMap<String, String>>
The headers to include in the upload.
sourcepub fn build(self) -> Result<StartContentUploadOutput, BuildError>
pub fn build(self) -> Result<StartContentUploadOutput, BuildError>
Consumes the builder and constructs a StartContentUploadOutput.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for StartContentUploadOutputBuilder
impl Clone for StartContentUploadOutputBuilder
source§fn clone(&self) -> StartContentUploadOutputBuilder
fn clone(&self) -> StartContentUploadOutputBuilder
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 Default for StartContentUploadOutputBuilder
impl Default for StartContentUploadOutputBuilder
source§fn default() -> StartContentUploadOutputBuilder
fn default() -> StartContentUploadOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for StartContentUploadOutputBuilder
impl PartialEq for StartContentUploadOutputBuilder
source§fn eq(&self, other: &StartContentUploadOutputBuilder) -> bool
fn eq(&self, other: &StartContentUploadOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartContentUploadOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for StartContentUploadOutputBuilder
impl Send for StartContentUploadOutputBuilder
impl Sync for StartContentUploadOutputBuilder
impl Unpin for StartContentUploadOutputBuilder
impl UnwindSafe for StartContentUploadOutputBuilder
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>
Creates a shared type from an unshared type.