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: String
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.
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 ==
.