Chilkat Online Tools

ListAnswers Swift3 Example

AWS Well-Architected Tool

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 = "wellarchitected"
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.setAuthAws(authAws)

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

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

    let sbResponseBody = CkoStringBuilder()!
    success = rest.fullRequestNoBodySb("GET", uriPath: "/workloads/{WorkloadId}/lensReviews/{LensAlias}/answers", sb: 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 IsApplicable: Int
    var PillarId: String?
    var QuestionId: String?
    var QuestionTitle: String?
    var Reason: String?
    var Risk: String?
    var j: Int
    var count_j: Int
    var ChoiceId: String?
    var Status: String?
    var Description: String?
    var DisplayText: String?
    var v_Url: String?
    var ImprovementPlanDisplayText: String?
    var ImprovementPlanUrl: String?
    var Title: String?
    var strVal: String?

    var LensAlias: String? = jResp.string(of: "LensAlias")
    var LensArn: String? = jResp.string(of: "LensArn")
    var MilestoneNumber: Int = jResp.int(of: "MilestoneNumber").intValue
    var NextToken: String? = jResp.string(of: "NextToken")
    var WorkloadId: String? = jResp.string(of: "WorkloadId")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "AnswerSummaries").intValue
    while i < count_i {
        jResp.i = i
        IsApplicable = jResp.int(of: "AnswerSummaries[i].IsApplicable").intValue
        PillarId = jResp.string(of: "AnswerSummaries[i].PillarId")
        QuestionId = jResp.string(of: "AnswerSummaries[i].QuestionId")
        QuestionTitle = jResp.string(of: "AnswerSummaries[i].QuestionTitle")
        Reason = jResp.string(of: "AnswerSummaries[i].Reason")
        Risk = jResp.string(of: "AnswerSummaries[i].Risk")
        j = 0
        count_j = jResp.size(ofArray: "AnswerSummaries[i].ChoiceAnswerSummaries").intValue
        while j < count_j {
            jResp.j = j
            ChoiceId = jResp.string(of: "AnswerSummaries[i].ChoiceAnswerSummaries[j].ChoiceId")
            Reason = jResp.string(of: "AnswerSummaries[i].ChoiceAnswerSummaries[j].Reason")
            Status = jResp.string(of: "AnswerSummaries[i].ChoiceAnswerSummaries[j].Status")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "AnswerSummaries[i].Choices").intValue
        while j < count_j {
            jResp.j = j
            ChoiceId = jResp.string(of: "AnswerSummaries[i].Choices[j].ChoiceId")
            Description = jResp.string(of: "AnswerSummaries[i].Choices[j].Description")
            DisplayText = jResp.string(of: "AnswerSummaries[i].Choices[j].HelpfulResource.DisplayText")
            v_Url = jResp.string(of: "AnswerSummaries[i].Choices[j].HelpfulResource.Url")
            ImprovementPlanDisplayText = jResp.string(of: "AnswerSummaries[i].Choices[j].ImprovementPlan.DisplayText")
            ImprovementPlanUrl = jResp.string(of: "AnswerSummaries[i].Choices[j].ImprovementPlan.Url")
            Title = jResp.string(of: "AnswerSummaries[i].Choices[j].Title")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "AnswerSummaries[i].SelectedChoices").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "AnswerSummaries[i].SelectedChoices[j]")
            j = j + 1
        }

        i = i + 1
    }

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

    // {
    //   "AnswerSummaries": [
    //     {
    //       "ChoiceAnswerSummaries": [
    //         {
    //           "ChoiceId": "string",
    //           "Reason": "string",
    //           "Status": "string"
    //         }
    //       ],
    //       "Choices": [
    //         {
    //           "ChoiceId": "string",
    //           "Description": "string",
    //           "HelpfulResource": {
    //             "DisplayText": "string",
    //             "Url": "string"
    //           },
    //           "ImprovementPlan": {
    //             "DisplayText": "string",
    //             "Url": "string"
    //           },
    //           "Title": "string"
    //         }
    //       ],
    //       "IsApplicable": boolean,
    //       "PillarId": "string",
    //       "QuestionId": "string",
    //       "QuestionTitle": "string",
    //       "Reason": "string",
    //       "Risk": "string",
    //       "SelectedChoices": [
    //         "string"
    //       ]
    //     }
    //   ],
    //   "LensAlias": "string",
    //   "LensArn": "string",
    //   "MilestoneNumber": number,
    //   "NextToken": "string",
    //   "WorkloadId": "string"
    // }

}