Struct aws_sdk_comprehend::types::PiiOutputDataConfig
source · #[non_exhaustive]pub struct PiiOutputDataConfig {
pub s3_uri: String,
pub kms_key_id: Option<String>,
}Expand description
Provides configuration parameters for the output of PII entity detection jobs.
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.s3_uri: StringWhen you use the PiiOutputDataConfig object with asynchronous operations, you specify the Amazon S3 location where you want to write the output data.
For a PII entity detection job, the output file is plain text, not a compressed archive. The output file name is the same as the input file, with .out appended at the end.
kms_key_id: Option<String>ID for the Amazon Web Services Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job.
Implementations§
source§impl PiiOutputDataConfig
impl PiiOutputDataConfig
sourcepub fn s3_uri(&self) -> &str
pub fn s3_uri(&self) -> &str
When you use the PiiOutputDataConfig object with asynchronous operations, you specify the Amazon S3 location where you want to write the output data.
For a PII entity detection job, the output file is plain text, not a compressed archive. The output file name is the same as the input file, with .out appended at the end.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
ID for the Amazon Web Services Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job.
source§impl PiiOutputDataConfig
impl PiiOutputDataConfig
sourcepub fn builder() -> PiiOutputDataConfigBuilder
pub fn builder() -> PiiOutputDataConfigBuilder
Creates a new builder-style object to manufacture PiiOutputDataConfig.
Trait Implementations§
source§impl Clone for PiiOutputDataConfig
impl Clone for PiiOutputDataConfig
source§fn clone(&self) -> PiiOutputDataConfig
fn clone(&self) -> PiiOutputDataConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PiiOutputDataConfig
impl Debug for PiiOutputDataConfig
source§impl PartialEq for PiiOutputDataConfig
impl PartialEq for PiiOutputDataConfig
source§fn eq(&self, other: &PiiOutputDataConfig) -> bool
fn eq(&self, other: &PiiOutputDataConfig) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PiiOutputDataConfig
Auto Trait Implementations§
impl Freeze for PiiOutputDataConfig
impl RefUnwindSafe for PiiOutputDataConfig
impl Send for PiiOutputDataConfig
impl Sync for PiiOutputDataConfig
impl Unpin for PiiOutputDataConfig
impl UnwindSafe for PiiOutputDataConfig
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more