[][src]Trait rusoto_comprehendmedical::ComprehendMedical

pub trait ComprehendMedical {
    fn detect_entities(
        &self,
        input: DetectEntitiesRequest
    ) -> RusotoFuture<DetectEntitiesResponse, DetectEntitiesError>;
fn detect_phi(
        &self,
        input: DetectPHIRequest
    ) -> RusotoFuture<DetectPHIResponse, DetectPHIError>; }

Trait representing the capabilities of the ComprehendMedical API. ComprehendMedical clients implement this trait.

Required methods

fn detect_entities(
    &self,
    input: DetectEntitiesRequest
) -> RusotoFuture<DetectEntitiesResponse, DetectEntitiesError>

Inspects the clinical text for a variety of medical entities and returns specific information about them such as entity category, location, and confidence score on that information .

fn detect_phi(
    &self,
    input: DetectPHIRequest
) -> RusotoFuture<DetectPHIResponse, DetectPHIError>

Inspects the clinical text for personal health information (PHI) entities and entity category, location, and confidence score on that information.

Loading content...

Implementors

impl ComprehendMedical for ComprehendMedicalClient[src]

fn detect_entities(
    &self,
    input: DetectEntitiesRequest
) -> RusotoFuture<DetectEntitiesResponse, DetectEntitiesError>
[src]

Inspects the clinical text for a variety of medical entities and returns specific information about them such as entity category, location, and confidence score on that information .

fn detect_phi(
    &self,
    input: DetectPHIRequest
) -> RusotoFuture<DetectPHIResponse, DetectPHIError>
[src]

Inspects the clinical text for personal health information (PHI) entities and entity category, location, and confidence score on that information.

Loading content...