#[non_exhaustive]
pub struct ComprehendMedicalAsyncJobProperties {
Show 14 fields pub job_id: Option<String>, pub job_name: Option<String>, pub job_status: Option<JobStatus>, pub message: Option<String>, pub submit_time: Option<DateTime>, pub end_time: Option<DateTime>, pub expiration_time: Option<DateTime>, pub input_data_config: Option<InputDataConfig>, pub output_data_config: Option<OutputDataConfig>, pub language_code: Option<LanguageCode>, pub data_access_role_arn: Option<String>, pub manifest_file_path: Option<String>, pub kms_key: Option<String>, pub model_version: Option<String>,
}
Expand description

Provides information about a detection job.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
job_id: Option<String>

The identifier assigned to the detection job.

job_name: Option<String>

The name that you assigned to the detection job.

job_status: Option<JobStatus>

The current status of the detection job. If the status is FAILED, the Message field shows the reason for the failure.

message: Option<String>

A description of the status of a job.

submit_time: Option<DateTime>

The time that the detection job was submitted for processing.

end_time: Option<DateTime>

The time that the detection job completed.

expiration_time: Option<DateTime>

The date and time that job metadata is deleted from the server. Output files in your S3 bucket will not be deleted. After the metadata is deleted, the job will no longer appear in the results of the ListEntitiesDetectionV2Job or the ListPHIDetectionJobs operation.

input_data_config: Option<InputDataConfig>

The input data configuration that you supplied when you created the detection job.

output_data_config: Option<OutputDataConfig>

The output data configuration that you supplied when you created the detection job.

language_code: Option<LanguageCode>

The language code of the input documents.

data_access_role_arn: Option<String>

The Amazon Resource Name (ARN) that gives Comprehend Medical; read access to your input data.

manifest_file_path: Option<String>

The path to the file that describes the results of a batch job.

kms_key: Option<String>

The AWS Key Management Service key, if any, used to encrypt the output files.

model_version: Option<String>

The version of the model used to analyze the documents. The version number looks like X.X.X. You can use this information to track the model used for a particular batch of documents.

Implementations

The identifier assigned to the detection job.

The name that you assigned to the detection job.

The current status of the detection job. If the status is FAILED, the Message field shows the reason for the failure.

A description of the status of a job.

The time that the detection job was submitted for processing.

The time that the detection job completed.

The date and time that job metadata is deleted from the server. Output files in your S3 bucket will not be deleted. After the metadata is deleted, the job will no longer appear in the results of the ListEntitiesDetectionV2Job or the ListPHIDetectionJobs operation.

The input data configuration that you supplied when you created the detection job.

The output data configuration that you supplied when you created the detection job.

The language code of the input documents.

The Amazon Resource Name (ARN) that gives Comprehend Medical; read access to your input data.

The path to the file that describes the results of a batch job.

The AWS Key Management Service key, if any, used to encrypt the output files.

The version of the model used to analyze the documents. The version number looks like X.X.X. You can use this information to track the model used for a particular batch of documents.

Creates a new builder-style object to manufacture ComprehendMedicalAsyncJobProperties

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more