Struct aws_sdk_translate::types::TerminologyDataLocation
source · #[non_exhaustive]pub struct TerminologyDataLocation {
pub repository_type: Option<String>,
pub location: Option<String>,
}Expand description
The location of the custom terminology data.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.repository_type: Option<String>The repository type for the custom terminology data.
location: Option<String>The Amazon S3 location of the most recent custom terminology input file that was successfully imported into Amazon Translate. The location is returned as a presigned URL that has a 30-minute expiration .
Amazon Translate doesn't scan all input files for the risk of CSV injection attacks.
CSV injection occurs when a .csv or .tsv file is altered so that a record contains malicious code. The record begins with a special character, such as =, +, -, or @. When the file is opened in a spreadsheet program, the program might interpret the record as a formula and run the code within it.
Before you download an input file from Amazon S3, ensure that you recognize the file and trust its creator.
Implementations§
source§impl TerminologyDataLocation
impl TerminologyDataLocation
sourcepub fn repository_type(&self) -> Option<&str>
pub fn repository_type(&self) -> Option<&str>
The repository type for the custom terminology data.
sourcepub fn location(&self) -> Option<&str>
pub fn location(&self) -> Option<&str>
The Amazon S3 location of the most recent custom terminology input file that was successfully imported into Amazon Translate. The location is returned as a presigned URL that has a 30-minute expiration .
Amazon Translate doesn't scan all input files for the risk of CSV injection attacks.
CSV injection occurs when a .csv or .tsv file is altered so that a record contains malicious code. The record begins with a special character, such as =, +, -, or @. When the file is opened in a spreadsheet program, the program might interpret the record as a formula and run the code within it.
Before you download an input file from Amazon S3, ensure that you recognize the file and trust its creator.
source§impl TerminologyDataLocation
impl TerminologyDataLocation
sourcepub fn builder() -> TerminologyDataLocationBuilder
pub fn builder() -> TerminologyDataLocationBuilder
Creates a new builder-style object to manufacture TerminologyDataLocation.
Trait Implementations§
source§impl Clone for TerminologyDataLocation
impl Clone for TerminologyDataLocation
source§fn clone(&self) -> TerminologyDataLocation
fn clone(&self) -> TerminologyDataLocation
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TerminologyDataLocation
impl Debug for TerminologyDataLocation
source§impl PartialEq<TerminologyDataLocation> for TerminologyDataLocation
impl PartialEq<TerminologyDataLocation> for TerminologyDataLocation
source§fn eq(&self, other: &TerminologyDataLocation) -> bool
fn eq(&self, other: &TerminologyDataLocation) -> bool
self and other values to be equal, and is used
by ==.