[][src]Struct rusoto_comprehend::StartPiiEntitiesDetectionJobRequest

pub struct StartPiiEntitiesDetectionJobRequest {
    pub client_request_token: Option<String>,
    pub data_access_role_arn: String,
    pub input_data_config: InputDataConfig,
    pub job_name: Option<String>,
    pub language_code: String,
    pub mode: String,
    pub output_data_config: OutputDataConfig,
    pub redaction_config: Option<RedactionConfig>,
}

Fields

client_request_token: Option<String>

A unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.

data_access_role_arn: String

The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Amazon Comprehend read access to your input data.

input_data_config: InputDataConfig

The input properties for a PII entities detection job.

job_name: Option<String>

The identifier of the job.

language_code: String

The language of the input documents.

mode: String

Specifies whether the output provides the locations (offsets) of PII entities or a file in which PII entities are redacted.

output_data_config: OutputDataConfig

Provides configuration parameters for the output of PII entity detection jobs.

redaction_config: Option<RedactionConfig>

Provides configuration parameters for PII entity redaction.

This parameter is required if you set the Mode parameter to ONLY_REDACTION. In that case, you must provide a RedactionConfig definition that includes the PiiEntityTypes parameter.

Trait Implementations

impl Clone for StartPiiEntitiesDetectionJobRequest[src]

impl Debug for StartPiiEntitiesDetectionJobRequest[src]

impl Default for StartPiiEntitiesDetectionJobRequest[src]

impl PartialEq<StartPiiEntitiesDetectionJobRequest> for StartPiiEntitiesDetectionJobRequest[src]

impl Serialize for StartPiiEntitiesDetectionJobRequest[src]

impl StructuralPartialEq for StartPiiEntitiesDetectionJobRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.