Struct aws_sdk_translate::types::ParallelDataConfig
source · #[non_exhaustive]pub struct ParallelDataConfig {
pub s3_uri: Option<String>,
pub format: Option<ParallelDataFormat>,
}
Expand description
Specifies the format and S3 location of the parallel data input file.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.s3_uri: Option<String>
The URI of the Amazon S3 folder that contains the parallel data input file. The folder must be in the same Region as the API endpoint you are calling.
format: Option<ParallelDataFormat>
The format of the parallel data input file.
Implementations§
source§impl ParallelDataConfig
impl ParallelDataConfig
sourcepub fn builder() -> ParallelDataConfigBuilder
pub fn builder() -> ParallelDataConfigBuilder
Creates a new builder-style object to manufacture ParallelDataConfig
.
Trait Implementations§
source§impl Clone for ParallelDataConfig
impl Clone for ParallelDataConfig
source§fn clone(&self) -> ParallelDataConfig
fn clone(&self) -> ParallelDataConfig
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 ParallelDataConfig
impl Debug for ParallelDataConfig
source§impl PartialEq for ParallelDataConfig
impl PartialEq for ParallelDataConfig
source§fn eq(&self, other: &ParallelDataConfig) -> bool
fn eq(&self, other: &ParallelDataConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ParallelDataConfig
Auto Trait Implementations§
impl RefUnwindSafe for ParallelDataConfig
impl Send for ParallelDataConfig
impl Sync for ParallelDataConfig
impl Unpin for ParallelDataConfig
impl UnwindSafe for ParallelDataConfig
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.