GetSampledRequests 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 = "wafv2"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.setAuthAws(authAws)
// URL: https://wafv2.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.connect("wafv2.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.updateInt("MaxItems", value: 123)
json.update("RuleMetricName", value: "string")
json.update("Scope", value: "string")
json.updateInt("TimeWindow.EndTime", value: 123)
json.updateInt("TimeWindow.StartTime", value: 123)
json.update("WebAclArn", value: "string")
// The JSON request body created by the above code:
// {
// "MaxItems": number,
// "RuleMetricName": "string",
// "Scope": "string",
// "TimeWindow": {
// "EndTime": number,
// "StartTime": number
// },
// "WebAclArn": "string"
// }
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "AWSWAF_20190729.GetSampledRequests")
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 Action: String?
var FailureReason: String?
var ResponseCode: Int
var SolveTimestamp: Int
var ClientIP: String?
var Country: String?
var HTTPVersion: String?
var Method: String?
var URI: String?
var ResponseCodeSent: Int
var RuleNameWithinRuleGroup: String?
var Timestamp: Int
var Weight: Int
var j: Int
var count_j: Int
var Name: String?
var Value: String?
var PopulationSize: Int = jResp.int(of: "PopulationSize").intValue
var EndTime: Int = jResp.int(of: "TimeWindow.EndTime").intValue
var StartTime: Int = jResp.int(of: "TimeWindow.StartTime").intValue
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "SampledRequests").intValue
while i < count_i {
jResp.i = i
Action = jResp.string(of: "SampledRequests[i].Action")
FailureReason = jResp.string(of: "SampledRequests[i].CaptchaResponse.FailureReason")
ResponseCode = jResp.int(of: "SampledRequests[i].CaptchaResponse.ResponseCode").intValue
SolveTimestamp = jResp.int(of: "SampledRequests[i].CaptchaResponse.SolveTimestamp").intValue
ClientIP = jResp.string(of: "SampledRequests[i].Request.ClientIP")
Country = jResp.string(of: "SampledRequests[i].Request.Country")
HTTPVersion = jResp.string(of: "SampledRequests[i].Request.HTTPVersion")
Method = jResp.string(of: "SampledRequests[i].Request.Method")
URI = jResp.string(of: "SampledRequests[i].Request.URI")
ResponseCodeSent = jResp.int(of: "SampledRequests[i].ResponseCodeSent").intValue
RuleNameWithinRuleGroup = jResp.string(of: "SampledRequests[i].RuleNameWithinRuleGroup")
Timestamp = jResp.int(of: "SampledRequests[i].Timestamp").intValue
Weight = jResp.int(of: "SampledRequests[i].Weight").intValue
j = 0
count_j = jResp.size(ofArray: "SampledRequests[i].Labels").intValue
while j < count_j {
jResp.j = j
Name = jResp.string(of: "SampledRequests[i].Labels[j].Name")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "SampledRequests[i].Request.Headers").intValue
while j < count_j {
jResp.j = j
Name = jResp.string(of: "SampledRequests[i].Request.Headers[j].Name")
Value = jResp.string(of: "SampledRequests[i].Request.Headers[j].Value")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "SampledRequests[i].RequestHeadersInserted").intValue
while j < count_j {
jResp.j = j
Name = jResp.string(of: "SampledRequests[i].RequestHeadersInserted[j].Name")
Value = jResp.string(of: "SampledRequests[i].RequestHeadersInserted[j].Value")
j = j + 1
}
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "PopulationSize": number,
// "SampledRequests": [
// {
// "Action": "string",
// "CaptchaResponse": {
// "FailureReason": "string",
// "ResponseCode": number,
// "SolveTimestamp": number
// },
// "Labels": [
// {
// "Name": "string"
// }
// ],
// "Request": {
// "ClientIP": "string",
// "Country": "string",
// "Headers": [
// {
// "Name": "string",
// "Value": "string"
// }
// ],
// "HTTPVersion": "string",
// "Method": "string",
// "URI": "string"
// },
// "RequestHeadersInserted": [
// {
// "Name": "string",
// "Value": "string"
// }
// ],
// "ResponseCodeSent": number,
// "RuleNameWithinRuleGroup": "string",
// "Timestamp": number,
// "Weight": number
// }
// ],
// "TimeWindow": {
// "EndTime": number,
// "StartTime": number
// }
// }
}