aws-sdk-comprehendmedical 1.95.0

AWS SDK for AWS Comprehend Medical
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`InferSNOMEDCT`](crate::operation::infer_snomedct::builders::InferSNOMEDCTFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`text(impl Into<String>)`](crate::operation::infer_snomedct::builders::InferSNOMEDCTFluentBuilder::text) / [`set_text(Option<String>)`](crate::operation::infer_snomedct::builders::InferSNOMEDCTFluentBuilder::set_text):<br>required: **true**<br><p>The input text to be analyzed using InferSNOMEDCT.</p><br>
    /// - On success, responds with [`InferSnomedctOutput`](crate::operation::infer_snomedct::InferSnomedctOutput) with field(s):
    ///   - [`entities(Vec::<SnomedctEntity>)`](crate::operation::infer_snomedct::InferSnomedctOutput::entities): <p>The collection of medical concept entities extracted from the input text and their associated information. For each entity, the response provides the entity text, the entity category, where the entity text begins and ends, and the level of confidence that Amazon Comprehend Medical has in the detection and analysis. Attributes and traits of the entity are also returned.</p>
    ///   - [`pagination_token(Option<String>)`](crate::operation::infer_snomedct::InferSnomedctOutput::pagination_token): <p>If the result of the request is truncated, the pagination token can be used to fetch the next page of entities.</p>
    ///   - [`model_version(Option<String>)`](crate::operation::infer_snomedct::InferSnomedctOutput::model_version): <p>The version of the model used to analyze the documents, in the format n.n.n You can use this information to track the model used for a particular batch of documents.</p>
    ///   - [`snomedct_details(Option<SnomedctDetails>)`](crate::operation::infer_snomedct::InferSnomedctOutput::snomedct_details): <p>The details of the SNOMED-CT revision, including the edition, language, and version date.</p>
    ///   - [`characters(Option<Characters>)`](crate::operation::infer_snomedct::InferSnomedctOutput::characters): <p>The number of characters in the input request documentation.</p>
    /// - On failure, responds with [`SdkError<InferSNOMEDCTError>`](crate::operation::infer_snomedct::InferSNOMEDCTError)
    pub fn infer_snomedct(&self) -> crate::operation::infer_snomedct::builders::InferSNOMEDCTFluentBuilder {
        crate::operation::infer_snomedct::builders::InferSNOMEDCTFluentBuilder::new(self.handle.clone())
    }
}