pub struct BatchDocumentInputConfig {
pub gcs_source: Option<GcsSource>,
}Expand description
Input configuration for BatchTranslateDocument request.
This type is not used in any activity, and only used as part of another schema.
Fields§
§gcs_source: Option<GcsSource>Google Cloud Storage location for the source input. This can be a single file (for example, gs://translation-test/input.docx) or a wildcard (for example, gs://translation-test/*). File mime type is determined based on extension. Supported mime type includes: - pdf, application/pdf - docx, application/vnd.openxmlformats-officedocument.wordprocessingml.document - pptx, application/vnd.openxmlformats-officedocument.presentationml.presentation - xlsx, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet The max file size to support for .docx, .pptx and .xlsx is 100MB. The max file size to support for .pdf is 1GB and the max page limit is 1000 pages. The max file size to support for all input documents is 1GB.
Trait Implementations§
Source§impl Clone for BatchDocumentInputConfig
impl Clone for BatchDocumentInputConfig
Source§fn clone(&self) -> BatchDocumentInputConfig
fn clone(&self) -> BatchDocumentInputConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more