DescribeEvents 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 = "health"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.setAuthAws(authAws)
// URL: https://health.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.connect("health.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("filter.availabilityZones[0]", value: "string")
json.updateInt("filter.endTimes[0].from", value: 123)
json.updateInt("filter.endTimes[0].to", value: 123)
json.update("filter.entityArns[0]", value: "string")
json.update("filter.entityValues[0]", value: "string")
json.update("filter.eventArns[0]", value: "string")
json.update("filter.eventStatusCodes[0]", value: "string")
json.update("filter.eventTypeCategories[0]", value: "string")
json.update("filter.eventTypeCodes[0]", value: "string")
json.updateInt("filter.lastUpdatedTimes[0].from", value: 123)
json.updateInt("filter.lastUpdatedTimes[0].to", value: 123)
json.update("filter.regions[0]", value: "string")
json.update("filter.services[0]", value: "string")
json.updateInt("filter.startTimes[0].from", value: 123)
json.updateInt("filter.startTimes[0].to", value: 123)
json.update("filter.tags[0].string", value: "string")
json.update("locale", value: "string")
json.updateInt("maxResults", value: 123)
json.update("nextToken", value: "string")
// The JSON request body created by the above code:
// {
// "filter": {
// "availabilityZones": [
// "string"
// ],
// "endTimes": [
// {
// "from": number,
// "to": number
// }
// ],
// "entityArns": [
// "string"
// ],
// "entityValues": [
// "string"
// ],
// "eventArns": [
// "string"
// ],
// "eventStatusCodes": [
// "string"
// ],
// "eventTypeCategories": [
// "string"
// ],
// "eventTypeCodes": [
// "string"
// ],
// "lastUpdatedTimes": [
// {
// "from": number,
// "to": number
// }
// ],
// "regions": [
// "string"
// ],
// "services": [
// "string"
// ],
// "startTimes": [
// {
// "from": number,
// "to": number
// }
// ],
// "tags": [
// {
// "string": "string"
// }
// ]
// },
// "locale": "string",
// "maxResults": number,
// "nextToken": "string"
// }
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "AWSHealth_20160804.DescribeEvents")
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 arn: String?
var availabilityZone: String?
var endTime: Int
var eventScopeCode: String?
var eventTypeCategory: String?
var eventTypeCode: String?
var lastUpdatedTime: Int
var region: String?
var service: String?
var startTime: Int
var statusCode: String?
var nextToken: String? = jResp.string(of: "nextToken")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "events").intValue
while i < count_i {
jResp.i = i
arn = jResp.string(of: "events[i].arn")
availabilityZone = jResp.string(of: "events[i].availabilityZone")
endTime = jResp.int(of: "events[i].endTime").intValue
eventScopeCode = jResp.string(of: "events[i].eventScopeCode")
eventTypeCategory = jResp.string(of: "events[i].eventTypeCategory")
eventTypeCode = jResp.string(of: "events[i].eventTypeCode")
lastUpdatedTime = jResp.int(of: "events[i].lastUpdatedTime").intValue
region = jResp.string(of: "events[i].region")
service = jResp.string(of: "events[i].service")
startTime = jResp.int(of: "events[i].startTime").intValue
statusCode = jResp.string(of: "events[i].statusCode")
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "events": [
// {
// "arn": "string",
// "availabilityZone": "string",
// "endTime": number,
// "eventScopeCode": "string",
// "eventTypeCategory": "string",
// "eventTypeCode": "string",
// "lastUpdatedTime": number,
// "region": "string",
// "service": "string",
// "startTime": number,
// "statusCode": "string"
// }
// ],
// "nextToken": "string"
// }
}