GetAnswer Swift3 Example
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: "GetAnswer")
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestNoBodySb("GET", uriPath: "/workloads/{WorkloadId}/lensReviews/{LensAlias}/answers/{QuestionId}", 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 ChoiceId: String?
var Status: String?
var Description: String?
var DisplayText: String?
var v_Url: String?
var ImprovementPlanDisplayText: String?
var Title: String?
var strVal: String?
var HelpfulResourceDisplayText: String? = jResp.string(of: "Answer.HelpfulResourceDisplayText")
var HelpfulResourceUrl: String? = jResp.string(of: "Answer.HelpfulResourceUrl")
var ImprovementPlanUrl: String? = jResp.string(of: "Answer.ImprovementPlanUrl")
var IsApplicable: Int = jResp.int(of: "Answer.IsApplicable").intValue
var Notes: String? = jResp.string(of: "Answer.Notes")
var PillarId: String? = jResp.string(of: "Answer.PillarId")
var QuestionDescription: String? = jResp.string(of: "Answer.QuestionDescription")
var QuestionId: String? = jResp.string(of: "Answer.QuestionId")
var QuestionTitle: String? = jResp.string(of: "Answer.QuestionTitle")
var Reason: String? = jResp.string(of: "Answer.Reason")
var Risk: String? = jResp.string(of: "Answer.Risk")
var LensAlias: String? = jResp.string(of: "LensAlias")
var LensArn: String? = jResp.string(of: "LensArn")
var MilestoneNumber: Int = jResp.int(of: "MilestoneNumber").intValue
var WorkloadId: String? = jResp.string(of: "WorkloadId")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "Answer.ChoiceAnswers").intValue
while i < count_i {
jResp.i = i
ChoiceId = jResp.string(of: "Answer.ChoiceAnswers[i].ChoiceId")
Notes = jResp.string(of: "Answer.ChoiceAnswers[i].Notes")
Reason = jResp.string(of: "Answer.ChoiceAnswers[i].Reason")
Status = jResp.string(of: "Answer.ChoiceAnswers[i].Status")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "Answer.Choices").intValue
while i < count_i {
jResp.i = i
ChoiceId = jResp.string(of: "Answer.Choices[i].ChoiceId")
Description = jResp.string(of: "Answer.Choices[i].Description")
DisplayText = jResp.string(of: "Answer.Choices[i].HelpfulResource.DisplayText")
v_Url = jResp.string(of: "Answer.Choices[i].HelpfulResource.Url")
ImprovementPlanDisplayText = jResp.string(of: "Answer.Choices[i].ImprovementPlan.DisplayText")
ImprovementPlanUrl = jResp.string(of: "Answer.Choices[i].ImprovementPlan.Url")
Title = jResp.string(of: "Answer.Choices[i].Title")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "Answer.SelectedChoices").intValue
while i < count_i {
jResp.i = i
strVal = jResp.string(of: "Answer.SelectedChoices[i]")
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "Answer": {
// "ChoiceAnswers": [
// {
// "ChoiceId": "string",
// "Notes": "string",
// "Reason": "string",
// "Status": "string"
// }
// ],
// "Choices": [
// {
// "ChoiceId": "string",
// "Description": "string",
// "HelpfulResource": {
// "DisplayText": "string",
// "Url": "string"
// },
// "ImprovementPlan": {
// "DisplayText": "string",
// "Url": "string"
// },
// "Title": "string"
// }
// ],
// "HelpfulResourceDisplayText": "string",
// "HelpfulResourceUrl": "string",
// "ImprovementPlanUrl": "string",
// "IsApplicable": boolean,
// "Notes": "string",
// "PillarId": "string",
// "QuestionDescription": "string",
// "QuestionId": "string",
// "QuestionTitle": "string",
// "Reason": "string",
// "Risk": "string",
// "SelectedChoices": [
// "string"
// ]
// },
// "LensAlias": "string",
// "LensArn": "string",
// "MilestoneNumber": number,
// "WorkloadId": "string"
// }
}