DescribeInsight 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 = "devops-guru"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.setAuthAws(authAws)
// URL: https://devops-guru.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.connect("devops-guru.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: "DescribeInsight")
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestNoBodySb("GET", uriPath: "/insights/{Id}", 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 strVal: String?
var AppBoundaryKey: String?
var j: Int
var count_j: Int
var Description: String? = jResp.string(of: "ProactiveInsight.Description")
var Id: String? = jResp.string(of: "ProactiveInsight.Id")
var EndTime: Int = jResp.int(of: "ProactiveInsight.InsightTimeRange.EndTime").intValue
var StartTime: Int = jResp.int(of: "ProactiveInsight.InsightTimeRange.StartTime").intValue
var Name: String? = jResp.string(of: "ProactiveInsight.Name")
var PredictionTimeRangeEndTime: Int = jResp.int(of: "ProactiveInsight.PredictionTimeRange.EndTime").intValue
var PredictionTimeRangeStartTime: Int = jResp.int(of: "ProactiveInsight.PredictionTimeRange.StartTime").intValue
var Severity: String? = jResp.string(of: "ProactiveInsight.Severity")
var SsmOpsItemId: String? = jResp.string(of: "ProactiveInsight.SsmOpsItemId")
var Status: String? = jResp.string(of: "ProactiveInsight.Status")
var ReactiveInsightDescription: String? = jResp.string(of: "ReactiveInsight.Description")
var ReactiveInsightId: String? = jResp.string(of: "ReactiveInsight.Id")
var InsightTimeRangeEndTime: Int = jResp.int(of: "ReactiveInsight.InsightTimeRange.EndTime").intValue
var InsightTimeRangeStartTime: Int = jResp.int(of: "ReactiveInsight.InsightTimeRange.StartTime").intValue
var ReactiveInsightName: String? = jResp.string(of: "ReactiveInsight.Name")
var ReactiveInsightSeverity: String? = jResp.string(of: "ReactiveInsight.Severity")
var ReactiveInsightSsmOpsItemId: String? = jResp.string(of: "ReactiveInsight.SsmOpsItemId")
var ReactiveInsightStatus: String? = jResp.string(of: "ReactiveInsight.Status")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "ProactiveInsight.ResourceCollection.CloudFormation.StackNames").intValue
while i < count_i {
jResp.i = i
strVal = jResp.string(of: "ProactiveInsight.ResourceCollection.CloudFormation.StackNames[i]")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "ProactiveInsight.ResourceCollection.Tags").intValue
while i < count_i {
jResp.i = i
AppBoundaryKey = jResp.string(of: "ProactiveInsight.ResourceCollection.Tags[i].AppBoundaryKey")
j = 0
count_j = jResp.size(ofArray: "ProactiveInsight.ResourceCollection.Tags[i].TagValues").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "ProactiveInsight.ResourceCollection.Tags[i].TagValues[j]")
j = j + 1
}
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "ReactiveInsight.ResourceCollection.CloudFormation.StackNames").intValue
while i < count_i {
jResp.i = i
strVal = jResp.string(of: "ReactiveInsight.ResourceCollection.CloudFormation.StackNames[i]")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "ReactiveInsight.ResourceCollection.Tags").intValue
while i < count_i {
jResp.i = i
AppBoundaryKey = jResp.string(of: "ReactiveInsight.ResourceCollection.Tags[i].AppBoundaryKey")
j = 0
count_j = jResp.size(ofArray: "ReactiveInsight.ResourceCollection.Tags[i].TagValues").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "ReactiveInsight.ResourceCollection.Tags[i].TagValues[j]")
j = j + 1
}
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "ProactiveInsight": {
// "Description": "string",
// "Id": "string",
// "InsightTimeRange": {
// "EndTime": number,
// "StartTime": number
// },
// "Name": "string",
// "PredictionTimeRange": {
// "EndTime": number,
// "StartTime": number
// },
// "ResourceCollection": {
// "CloudFormation": {
// "StackNames": [
// "string"
// ]
// },
// "Tags": [
// {
// "AppBoundaryKey": "string",
// "TagValues": [
// "string"
// ]
// }
// ]
// },
// "Severity": "string",
// "SsmOpsItemId": "string",
// "Status": "string"
// },
// "ReactiveInsight": {
// "Description": "string",
// "Id": "string",
// "InsightTimeRange": {
// "EndTime": number,
// "StartTime": number
// },
// "Name": "string",
// "ResourceCollection": {
// "CloudFormation": {
// "StackNames": [
// "string"
// ]
// },
// "Tags": [
// {
// "AppBoundaryKey": "string",
// "TagValues": [
// "string"
// ]
// }
// ]
// },
// "Severity": "string",
// "SsmOpsItemId": "string",
// "Status": "string"
// }
// }
}