Interface InferIcd10CmResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ComprehendMedicalResponse.Builder,CopyableBuilder<InferIcd10CmResponse.Builder,InferIcd10CmResponse>,SdkBuilder<InferIcd10CmResponse.Builder,InferIcd10CmResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- InferIcd10CmResponse
public static interface InferIcd10CmResponse.Builder extends ComprehendMedicalResponse.Builder, SdkPojo, CopyableBuilder<InferIcd10CmResponse.Builder,InferIcd10CmResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InferIcd10CmResponse.Builderentities(Collection<ICD10CMEntity> entities)The medical conditions detected in the text linked to ICD-10-CM concepts.InferIcd10CmResponse.Builderentities(Consumer<ICD10CMEntity.Builder>... entities)The medical conditions detected in the text linked to ICD-10-CM concepts.InferIcd10CmResponse.Builderentities(ICD10CMEntity... entities)The medical conditions detected in the text linked to ICD-10-CM concepts.InferIcd10CmResponse.BuildermodelVersion(String modelVersion)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.InferIcd10CmResponse.BuilderpaginationToken(String paginationToken)If the result of the previous request toInferICD10CMwas truncated, include thePaginationTokento fetch the next page of medical condition entities.-
Methods inherited from interface software.amazon.awssdk.services.comprehendmedical.model.ComprehendMedicalResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
entities
InferIcd10CmResponse.Builder entities(Collection<ICD10CMEntity> entities)
The medical conditions detected in the text linked to ICD-10-CM concepts. If the action is successful, the service sends back an HTTP 200 response, as well as the entities detected.
- Parameters:
entities- The medical conditions detected in the text linked to ICD-10-CM concepts. If the action is successful, the service sends back an HTTP 200 response, as well as the entities detected.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
InferIcd10CmResponse.Builder entities(ICD10CMEntity... entities)
The medical conditions detected in the text linked to ICD-10-CM concepts. If the action is successful, the service sends back an HTTP 200 response, as well as the entities detected.
- Parameters:
entities- The medical conditions detected in the text linked to ICD-10-CM concepts. If the action is successful, the service sends back an HTTP 200 response, as well as the entities detected.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
InferIcd10CmResponse.Builder entities(Consumer<ICD10CMEntity.Builder>... entities)
The medical conditions detected in the text linked to ICD-10-CM concepts. If the action is successful, the service sends back an HTTP 200 response, as well as the entities detected.
This is a convenience method that creates an instance of theICD10CMEntity.Builderavoiding the need to create one manually viaICD10CMEntity.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entities(List.) - Parameters:
entities- a consumer that will call methods onICD10CMEntity.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entities(java.util.Collection)
-
paginationToken
InferIcd10CmResponse.Builder paginationToken(String paginationToken)
If the result of the previous request to
InferICD10CMwas truncated, include thePaginationTokento fetch the next page of medical condition entities.- Parameters:
paginationToken- If the result of the previous request toInferICD10CMwas truncated, include thePaginationTokento fetch the next page of medical condition entities.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelVersion
InferIcd10CmResponse.Builder modelVersion(String modelVersion)
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.
- Parameters:
modelVersion- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-