Chilkat Online Tools

DescribeEntityRecognizer Swift3 Example

Amazon Comprehend

func chilkatTest() {
    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    let rest = CkoRest()!
    var success: Bool

    let authAws = CkoAuthAws()!
    authAws.accessKey = "AWS_ACCESS_KEY"
    authAws.secretKey = "AWS_SECRET_KEY"

    // Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
    authAws.region = "us-west-2"
    authAws.serviceName = "comprehend"
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.setAuthAws(authAws)

    // URL: https://comprehend.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.connect("comprehend.us-west-2.amazonaws.com", port: 443, tls: true, autoReconnect: true)
    if success != true {
        print("ConnectFailReason: \(rest.connectFailReason.intValue)")
        print("\(rest.lastErrorText!)")
        return
    }

    // The following code creates the JSON request body.
    // The JSON created by this code is shown below.

    // Use this online tool to generate code from sample JSON:
    // Generate Code to Create JSON

    let json = CkoJsonObject()!
    json.update("EntityRecognizerArn", value: "string")

    // The JSON request body created by the above code:

    // {
    //   "EntityRecognizerArn": "string"
    // }

    rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
    rest.addHeader("X-Amz-Target", value: "Comprehend_20171127.DescribeEntityRecognizer")

    let sbRequestBody = CkoStringBuilder()!
    json.emitSb(sbRequestBody)
    let sbResponseBody = CkoStringBuilder()!
    success = rest.fullRequestSb("POST", uriPath: "/", requestBody: sbRequestBody, responseBody: sbResponseBody)
    if success != true {
        print("\(rest.lastErrorText!)")
        return
    }

    var respStatusCode: Int = rest.responseStatusCode.intValue
    print("response status code = \(respStatusCode)")
    if respStatusCode != 200 {
        print("Response Header:")
        print("\(rest.responseHeader!)")
        print("Response Body:")
        print("\(sbResponseBody.getAsString()!)")
        return
    }

    let jResp = CkoJsonObject()!
    jResp.loadSb(sbResponseBody)

    // The following code parses the JSON response.
    // A sample JSON response is shown below the sample code.

    // Use this online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    var AnnotationDataS3Uri: String?
    var DocumentType: String?
    var SourceDocumentsS3Uri: String?
    var Split: String?
    var j: Int
    var count_j: Int
    var strVal: String?
    var v_Type: String?
    var EvaluationMetricsF1Score: Int
    var EvaluationMetricsPrecision: Int
    var EvaluationMetricsRecall: Int
    var NumberOfTrainMentions: Int

    var DataAccessRoleArn: String? = jResp.string(of: "EntityRecognizerProperties.DataAccessRoleArn")
    var EndTime: Int = jResp.int(of: "EntityRecognizerProperties.EndTime").intValue
    var EntityRecognizerArn: String? = jResp.string(of: "EntityRecognizerProperties.EntityRecognizerArn")
    var S3Uri: String? = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.Annotations.S3Uri")
    var TestS3Uri: String? = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.Annotations.TestS3Uri")
    var DataFormat: String? = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.DataFormat")
    var InputFormat: String? = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.Documents.InputFormat")
    var DocumentsS3Uri: String? = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.Documents.S3Uri")
    var DocumentsTestS3Uri: String? = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.Documents.TestS3Uri")
    var EntityListS3Uri: String? = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.EntityList.S3Uri")
    var LanguageCode: String? = jResp.string(of: "EntityRecognizerProperties.LanguageCode")
    var Message: String? = jResp.string(of: "EntityRecognizerProperties.Message")
    var ModelKmsKeyId: String? = jResp.string(of: "EntityRecognizerProperties.ModelKmsKeyId")
    var F1Score: Int = jResp.int(of: "EntityRecognizerProperties.RecognizerMetadata.EvaluationMetrics.F1Score").intValue
    var Precision: Int = jResp.int(of: "EntityRecognizerProperties.RecognizerMetadata.EvaluationMetrics.Precision").intValue
    var Recall: Int = jResp.int(of: "EntityRecognizerProperties.RecognizerMetadata.EvaluationMetrics.Recall").intValue
    var NumberOfTestDocuments: Int = jResp.int(of: "EntityRecognizerProperties.RecognizerMetadata.NumberOfTestDocuments").intValue
    var NumberOfTrainedDocuments: Int = jResp.int(of: "EntityRecognizerProperties.RecognizerMetadata.NumberOfTrainedDocuments").intValue
    var SourceModelArn: String? = jResp.string(of: "EntityRecognizerProperties.SourceModelArn")
    var Status: String? = jResp.string(of: "EntityRecognizerProperties.Status")
    var SubmitTime: Int = jResp.int(of: "EntityRecognizerProperties.SubmitTime").intValue
    var TrainingEndTime: Int = jResp.int(of: "EntityRecognizerProperties.TrainingEndTime").intValue
    var TrainingStartTime: Int = jResp.int(of: "EntityRecognizerProperties.TrainingStartTime").intValue
    var VersionName: String? = jResp.string(of: "EntityRecognizerProperties.VersionName")
    var VolumeKmsKeyId: String? = jResp.string(of: "EntityRecognizerProperties.VolumeKmsKeyId")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "EntityRecognizerProperties.InputDataConfig.AugmentedManifests").intValue
    while i < count_i {
        jResp.i = i
        AnnotationDataS3Uri = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.AugmentedManifests[i].AnnotationDataS3Uri")
        DocumentType = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.AugmentedManifests[i].DocumentType")
        S3Uri = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.AugmentedManifests[i].S3Uri")
        SourceDocumentsS3Uri = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.AugmentedManifests[i].SourceDocumentsS3Uri")
        Split = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.AugmentedManifests[i].Split")
        j = 0
        count_j = jResp.size(ofArray: "EntityRecognizerProperties.InputDataConfig.AugmentedManifests[i].AttributeNames").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.AugmentedManifests[i].AttributeNames[j]")
            j = j + 1
        }

        i = i + 1
    }

    i = 0
    count_i = jResp.size(ofArray: "EntityRecognizerProperties.InputDataConfig.EntityTypes").intValue
    while i < count_i {
        jResp.i = i
        v_Type = jResp.string(of: "EntityRecognizerProperties.InputDataConfig.EntityTypes[i].Type")
        i = i + 1
    }

    i = 0
    count_i = jResp.size(ofArray: "EntityRecognizerProperties.RecognizerMetadata.EntityTypes").intValue
    while i < count_i {
        jResp.i = i
        EvaluationMetricsF1Score = jResp.int(of: "EntityRecognizerProperties.RecognizerMetadata.EntityTypes[i].EvaluationMetrics.F1Score").intValue
        EvaluationMetricsPrecision = jResp.int(of: "EntityRecognizerProperties.RecognizerMetadata.EntityTypes[i].EvaluationMetrics.Precision").intValue
        EvaluationMetricsRecall = jResp.int(of: "EntityRecognizerProperties.RecognizerMetadata.EntityTypes[i].EvaluationMetrics.Recall").intValue
        NumberOfTrainMentions = jResp.int(of: "EntityRecognizerProperties.RecognizerMetadata.EntityTypes[i].NumberOfTrainMentions").intValue
        v_Type = jResp.string(of: "EntityRecognizerProperties.RecognizerMetadata.EntityTypes[i].Type")
        i = i + 1
    }

    i = 0
    count_i = jResp.size(ofArray: "EntityRecognizerProperties.VpcConfig.SecurityGroupIds").intValue
    while i < count_i {
        jResp.i = i
        strVal = jResp.string(of: "EntityRecognizerProperties.VpcConfig.SecurityGroupIds[i]")
        i = i + 1
    }

    i = 0
    count_i = jResp.size(ofArray: "EntityRecognizerProperties.VpcConfig.Subnets").intValue
    while i < count_i {
        jResp.i = i
        strVal = jResp.string(of: "EntityRecognizerProperties.VpcConfig.Subnets[i]")
        i = i + 1
    }

    // A sample JSON response body parsed by the above code:

    // {
    //   "EntityRecognizerProperties": {
    //     "DataAccessRoleArn": "string",
    //     "EndTime": number,
    //     "EntityRecognizerArn": "string",
    //     "InputDataConfig": {
    //       "Annotations": {
    //         "S3Uri": "string",
    //         "TestS3Uri": "string"
    //       },
    //       "AugmentedManifests": [
    //         {
    //           "AnnotationDataS3Uri": "string",
    //           "AttributeNames": [
    //             "string"
    //           ],
    //           "DocumentType": "string",
    //           "S3Uri": "string",
    //           "SourceDocumentsS3Uri": "string",
    //           "Split": "string"
    //         }
    //       ],
    //       "DataFormat": "string",
    //       "Documents": {
    //         "InputFormat": "string",
    //         "S3Uri": "string",
    //         "TestS3Uri": "string"
    //       },
    //       "EntityList": {
    //         "S3Uri": "string"
    //       },
    //       "EntityTypes": [
    //         {
    //           "Type": "string"
    //         }
    //       ]
    //     },
    //     "LanguageCode": "string",
    //     "Message": "string",
    //     "ModelKmsKeyId": "string",
    //     "RecognizerMetadata": {
    //       "EntityTypes": [
    //         {
    //           "EvaluationMetrics": {
    //             "F1Score": number,
    //             "Precision": number,
    //             "Recall": number
    //           },
    //           "NumberOfTrainMentions": number,
    //           "Type": "string"
    //         }
    //       ],
    //       "EvaluationMetrics": {
    //         "F1Score": number,
    //         "Precision": number,
    //         "Recall": number
    //       },
    //       "NumberOfTestDocuments": number,
    //       "NumberOfTrainedDocuments": number
    //     },
    //     "SourceModelArn": "string",
    //     "Status": "string",
    //     "SubmitTime": number,
    //     "TrainingEndTime": number,
    //     "TrainingStartTime": number,
    //     "VersionName": "string",
    //     "VolumeKmsKeyId": "string",
    //     "VpcConfig": {
    //       "SecurityGroupIds": [
    //         "string"
    //       ],
    //       "Subnets": [
    //         "string"
    //       ]
    //     }
    //   }
    // }

}