Struct aws_sdk_translate::model::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
sourceimpl 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.
sourceimpl TerminologyDataLocation
impl TerminologyDataLocation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TerminologyDataLocation
Trait Implementations
sourceimpl Clone for TerminologyDataLocation
impl Clone for TerminologyDataLocation
sourcefn clone(&self) -> TerminologyDataLocation
fn clone(&self) -> TerminologyDataLocation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for TerminologyDataLocation
impl Debug for TerminologyDataLocation
sourceimpl PartialEq<TerminologyDataLocation> for TerminologyDataLocation
impl PartialEq<TerminologyDataLocation> for TerminologyDataLocation
sourcefn eq(&self, other: &TerminologyDataLocation) -> bool
fn eq(&self, other: &TerminologyDataLocation) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TerminologyDataLocation) -> bool
fn ne(&self, other: &TerminologyDataLocation) -> bool
This method tests for !=.
impl StructuralPartialEq for TerminologyDataLocation
Auto Trait Implementations
impl RefUnwindSafe for TerminologyDataLocation
impl Send for TerminologyDataLocation
impl Sync for TerminologyDataLocation
impl Unpin for TerminologyDataLocation
impl UnwindSafe for TerminologyDataLocation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more