#[non_exhaustive]pub struct OutputFileUriValueBuilder { /* private fields */ }
Expand description
A builder for OutputFileUriValue
.
Implementations§
source§impl OutputFileUriValueBuilder
impl OutputFileUriValueBuilder
sourcepub fn file_name(self, input: impl Into<String>) -> Self
pub fn file_name(self, input: impl Into<String>) -> Self
The URI of the location where dataset contents are stored, usually the URI of a file in an S3 bucket.
This field is required.sourcepub fn set_file_name(self, input: Option<String>) -> Self
pub fn set_file_name(self, input: Option<String>) -> Self
The URI of the location where dataset contents are stored, usually the URI of a file in an S3 bucket.
sourcepub fn get_file_name(&self) -> &Option<String>
pub fn get_file_name(&self) -> &Option<String>
The URI of the location where dataset contents are stored, usually the URI of a file in an S3 bucket.
sourcepub fn build(self) -> Result<OutputFileUriValue, BuildError>
pub fn build(self) -> Result<OutputFileUriValue, BuildError>
Consumes the builder and constructs a OutputFileUriValue
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for OutputFileUriValueBuilder
impl Clone for OutputFileUriValueBuilder
source§fn clone(&self) -> OutputFileUriValueBuilder
fn clone(&self) -> OutputFileUriValueBuilder
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 OutputFileUriValueBuilder
impl Debug for OutputFileUriValueBuilder
source§impl Default for OutputFileUriValueBuilder
impl Default for OutputFileUriValueBuilder
source§fn default() -> OutputFileUriValueBuilder
fn default() -> OutputFileUriValueBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for OutputFileUriValueBuilder
impl PartialEq for OutputFileUriValueBuilder
source§fn eq(&self, other: &OutputFileUriValueBuilder) -> bool
fn eq(&self, other: &OutputFileUriValueBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OutputFileUriValueBuilder
Auto Trait Implementations§
impl RefUnwindSafe for OutputFileUriValueBuilder
impl Send for OutputFileUriValueBuilder
impl Sync for OutputFileUriValueBuilder
impl Unpin for OutputFileUriValueBuilder
impl UnwindSafe for OutputFileUriValueBuilder
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.