Struct aws_sdk_connect::operation::start_attached_file_upload::builders::StartAttachedFileUploadOutputBuilder
source · #[non_exhaustive]pub struct StartAttachedFileUploadOutputBuilder { /* private fields */ }
Expand description
A builder for StartAttachedFileUploadOutput
.
Implementations§
source§impl StartAttachedFileUploadOutputBuilder
impl StartAttachedFileUploadOutputBuilder
sourcepub fn file_arn(self, input: impl Into<String>) -> Self
pub fn file_arn(self, input: impl Into<String>) -> Self
The unique identifier of the attached file resource (ARN).
sourcepub fn set_file_arn(self, input: Option<String>) -> Self
pub fn set_file_arn(self, input: Option<String>) -> Self
The unique identifier of the attached file resource (ARN).
sourcepub fn get_file_arn(&self) -> &Option<String>
pub fn get_file_arn(&self) -> &Option<String>
The unique identifier of the attached file resource (ARN).
sourcepub fn file_id(self, input: impl Into<String>) -> Self
pub fn file_id(self, input: impl Into<String>) -> Self
The unique identifier of the attached file resource.
sourcepub fn set_file_id(self, input: Option<String>) -> Self
pub fn set_file_id(self, input: Option<String>) -> Self
The unique identifier of the attached file resource.
sourcepub fn get_file_id(&self) -> &Option<String>
pub fn get_file_id(&self) -> &Option<String>
The unique identifier of the attached file resource.
sourcepub fn creation_time(self, input: impl Into<String>) -> Self
pub fn creation_time(self, input: impl Into<String>) -> Self
The time of Creation of the file resource as an ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ
. For example, 2024-05-03T02:41:28.172Z
.
sourcepub fn set_creation_time(self, input: Option<String>) -> Self
pub fn set_creation_time(self, input: Option<String>) -> Self
The time of Creation of the file resource as an ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ
. For example, 2024-05-03T02:41:28.172Z
.
sourcepub fn get_creation_time(&self) -> &Option<String>
pub fn get_creation_time(&self) -> &Option<String>
The time of Creation of the file resource as an ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ
. For example, 2024-05-03T02:41:28.172Z
.
sourcepub fn file_status(self, input: FileStatusType) -> Self
pub fn file_status(self, input: FileStatusType) -> Self
The current status of the attached file.
sourcepub fn set_file_status(self, input: Option<FileStatusType>) -> Self
pub fn set_file_status(self, input: Option<FileStatusType>) -> Self
The current status of the attached file.
sourcepub fn get_file_status(&self) -> &Option<FileStatusType>
pub fn get_file_status(&self) -> &Option<FileStatusType>
The current status of the attached file.
sourcepub fn created_by(self, input: CreatedByInfo) -> Self
pub fn created_by(self, input: CreatedByInfo) -> Self
Represents the identity that created the file.
sourcepub fn set_created_by(self, input: Option<CreatedByInfo>) -> Self
pub fn set_created_by(self, input: Option<CreatedByInfo>) -> Self
Represents the identity that created the file.
sourcepub fn get_created_by(&self) -> &Option<CreatedByInfo>
pub fn get_created_by(&self) -> &Option<CreatedByInfo>
Represents the identity that created the file.
sourcepub fn upload_url_metadata(self, input: UploadUrlMetadata) -> Self
pub fn upload_url_metadata(self, input: UploadUrlMetadata) -> Self
Information to be used while uploading the attached file.
sourcepub fn set_upload_url_metadata(self, input: Option<UploadUrlMetadata>) -> Self
pub fn set_upload_url_metadata(self, input: Option<UploadUrlMetadata>) -> Self
Information to be used while uploading the attached file.
sourcepub fn get_upload_url_metadata(&self) -> &Option<UploadUrlMetadata>
pub fn get_upload_url_metadata(&self) -> &Option<UploadUrlMetadata>
Information to be used while uploading the attached file.
sourcepub fn build(self) -> StartAttachedFileUploadOutput
pub fn build(self) -> StartAttachedFileUploadOutput
Consumes the builder and constructs a StartAttachedFileUploadOutput
.
Trait Implementations§
source§impl Clone for StartAttachedFileUploadOutputBuilder
impl Clone for StartAttachedFileUploadOutputBuilder
source§fn clone(&self) -> StartAttachedFileUploadOutputBuilder
fn clone(&self) -> StartAttachedFileUploadOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for StartAttachedFileUploadOutputBuilder
impl Default for StartAttachedFileUploadOutputBuilder
source§fn default() -> StartAttachedFileUploadOutputBuilder
fn default() -> StartAttachedFileUploadOutputBuilder
source§impl PartialEq for StartAttachedFileUploadOutputBuilder
impl PartialEq for StartAttachedFileUploadOutputBuilder
source§fn eq(&self, other: &StartAttachedFileUploadOutputBuilder) -> bool
fn eq(&self, other: &StartAttachedFileUploadOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartAttachedFileUploadOutputBuilder
Auto Trait Implementations§
impl Freeze for StartAttachedFileUploadOutputBuilder
impl RefUnwindSafe for StartAttachedFileUploadOutputBuilder
impl Send for StartAttachedFileUploadOutputBuilder
impl Sync for StartAttachedFileUploadOutputBuilder
impl Unpin for StartAttachedFileUploadOutputBuilder
impl UnwindSafe for StartAttachedFileUploadOutputBuilder
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
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>
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>
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 more