pub struct CreateParallelDataRequest {
pub client_token: String,
pub description: Option<String>,
pub encryption_key: Option<EncryptionKey>,
pub name: String,
pub parallel_data_config: ParallelDataConfig,
}Fields§
§client_token: StringA unique identifier for the request. This token is automatically generated when you use Amazon Translate through an AWS SDK.
description: Option<String>A custom description for the parallel data resource in Amazon Translate.
encryption_key: Option<EncryptionKey>§name: StringA custom name for the parallel data resource in Amazon Translate. You must assign a name that is unique in the account and region.
parallel_data_config: ParallelDataConfigSpecifies the format and S3 location of the parallel data input file.
Trait Implementations§
Source§impl Clone for CreateParallelDataRequest
impl Clone for CreateParallelDataRequest
Source§fn clone(&self) -> CreateParallelDataRequest
fn clone(&self) -> CreateParallelDataRequest
Returns a duplicate 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 CreateParallelDataRequest
impl Debug for CreateParallelDataRequest
Source§impl Default for CreateParallelDataRequest
impl Default for CreateParallelDataRequest
Source§fn default() -> CreateParallelDataRequest
fn default() -> CreateParallelDataRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateParallelDataRequest
Auto Trait Implementations§
impl Freeze for CreateParallelDataRequest
impl RefUnwindSafe for CreateParallelDataRequest
impl Send for CreateParallelDataRequest
impl Sync for CreateParallelDataRequest
impl Unpin for CreateParallelDataRequest
impl UnwindSafe for CreateParallelDataRequest
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