#[non_exhaustive]pub struct GetPromptFileOutputBuilder { /* private fields */ }
Expand description
A builder for GetPromptFileOutput
.
Implementations§
source§impl GetPromptFileOutputBuilder
impl GetPromptFileOutputBuilder
sourcepub fn prompt_presigned_url(self, input: impl Into<String>) -> Self
pub fn prompt_presigned_url(self, input: impl Into<String>) -> Self
A generated URL to the prompt that can be given to an unauthorized user so they can access the prompt in S3.
sourcepub fn set_prompt_presigned_url(self, input: Option<String>) -> Self
pub fn set_prompt_presigned_url(self, input: Option<String>) -> Self
A generated URL to the prompt that can be given to an unauthorized user so they can access the prompt in S3.
sourcepub fn get_prompt_presigned_url(&self) -> &Option<String>
pub fn get_prompt_presigned_url(&self) -> &Option<String>
A generated URL to the prompt that can be given to an unauthorized user so they can access the prompt in S3.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
The timestamp when this resource was last modified.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
The timestamp when this resource was last modified.
sourcepub fn get_last_modified_time(&self) -> &Option<DateTime>
pub fn get_last_modified_time(&self) -> &Option<DateTime>
The timestamp when this resource was last modified.
sourcepub fn last_modified_region(self, input: impl Into<String>) -> Self
pub fn last_modified_region(self, input: impl Into<String>) -> Self
The Amazon Web Services Region where this resource was last modified.
sourcepub fn set_last_modified_region(self, input: Option<String>) -> Self
pub fn set_last_modified_region(self, input: Option<String>) -> Self
The Amazon Web Services Region where this resource was last modified.
sourcepub fn get_last_modified_region(&self) -> &Option<String>
pub fn get_last_modified_region(&self) -> &Option<String>
The Amazon Web Services Region where this resource was last modified.
sourcepub fn build(self) -> GetPromptFileOutput
pub fn build(self) -> GetPromptFileOutput
Consumes the builder and constructs a GetPromptFileOutput
.
Trait Implementations§
source§impl Clone for GetPromptFileOutputBuilder
impl Clone for GetPromptFileOutputBuilder
source§fn clone(&self) -> GetPromptFileOutputBuilder
fn clone(&self) -> GetPromptFileOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetPromptFileOutputBuilder
impl Debug for GetPromptFileOutputBuilder
source§impl Default for GetPromptFileOutputBuilder
impl Default for GetPromptFileOutputBuilder
source§fn default() -> GetPromptFileOutputBuilder
fn default() -> GetPromptFileOutputBuilder
source§impl PartialEq for GetPromptFileOutputBuilder
impl PartialEq for GetPromptFileOutputBuilder
source§fn eq(&self, other: &GetPromptFileOutputBuilder) -> bool
fn eq(&self, other: &GetPromptFileOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetPromptFileOutputBuilder
Auto Trait Implementations§
impl Freeze for GetPromptFileOutputBuilder
impl RefUnwindSafe for GetPromptFileOutputBuilder
impl Send for GetPromptFileOutputBuilder
impl Sync for GetPromptFileOutputBuilder
impl Unpin for GetPromptFileOutputBuilder
impl UnwindSafe for GetPromptFileOutputBuilder
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