[][src]Struct rusoto_comprehendmedical::StartRxNormInferenceJobRequest

pub struct StartRxNormInferenceJobRequest {
    pub client_request_token: Option<String>,
    pub data_access_role_arn: String,
    pub input_data_config: InputDataConfig,
    pub job_name: Option<String>,
    pub kms_key: Option<String>,
    pub language_code: String,
    pub output_data_config: OutputDataConfig,
}

Fields

client_request_token: Option<String>

A unique identifier for the request. If you don't set the client request token, Amazon Comprehend Medical 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 Medical read access to your input data. For more information, see Role-Based Permissions Required for Asynchronous Operations.

input_data_config: InputDataConfig

Specifies the format and location of the input data for the job.

job_name: Option<String>

The identifier of the job.

kms_key: Option<String>

An AWS Key Management Service key to encrypt your output files. If you do not specify a key, the files are written in plain text.

language_code: String

The language of the input documents. All documents must be in the same language.

output_data_config: OutputDataConfig

Specifies where to send the output files.

Trait Implementations

impl Clone for StartRxNormInferenceJobRequest[src]

impl Debug for StartRxNormInferenceJobRequest[src]

impl Default for StartRxNormInferenceJobRequest[src]

impl PartialEq<StartRxNormInferenceJobRequest> for StartRxNormInferenceJobRequest[src]

impl Serialize for StartRxNormInferenceJobRequest[src]

impl StructuralPartialEq for StartRxNormInferenceJobRequest[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> 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.