Struct aws_sdk_comprehend::types::PiiOutputDataConfig
source · #[non_exhaustive]pub struct PiiOutputDataConfig { /* private fields */ }Expand description
Provides configuration parameters for the output of PII entity detection jobs.
Implementations§
source§impl PiiOutputDataConfig
impl PiiOutputDataConfig
sourcepub fn s3_uri(&self) -> Option<&str>
pub fn s3_uri(&self) -> Option<&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
Returns a copy 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 PiiOutputDataConfig
impl Debug for PiiOutputDataConfig
source§impl PartialEq<PiiOutputDataConfig> for PiiOutputDataConfig
impl PartialEq<PiiOutputDataConfig> for PiiOutputDataConfig
source§fn eq(&self, other: &PiiOutputDataConfig) -> bool
fn eq(&self, other: &PiiOutputDataConfig) -> bool
This method tests for
self and other values to be equal, and is used
by ==.