Chilkat Online Tools

RunPipelineActivity Swift3 Example

AWS IoT Analytics

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

    // URL: https://iotanalytics.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.connect("iotanalytics.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()!
ERROR: Undefined variable(blob)
ERROR: Undefined variable(blob)
ERROR: Undefined variable(blob)
ERROR: Undefined variable(blob)
ERROR: Undefined variable(blob)
ERROR: Undefined variable(blob)
    json.updateInt("payloads[0]", value: blob)ERROR: Undefined variable(blob)
ERROR: Undefined variable(blob)

    json.update("pipelineActivity.addAttributes.attributes.string", value: "string")
    json.update("pipelineActivity.addAttributes.name", value: "string")
    json.update("pipelineActivity.addAttributes.next", value: "string")
    json.update("pipelineActivity.channel.channelName", value: "string")
    json.update("pipelineActivity.channel.name", value: "string")
    json.update("pipelineActivity.channel.next", value: "string")
    json.update("pipelineActivity.datastore.datastoreName", value: "string")
    json.update("pipelineActivity.datastore.name", value: "string")
    json.update("pipelineActivity.deviceRegistryEnrich.attribute", value: "string")
    json.update("pipelineActivity.deviceRegistryEnrich.name", value: "string")
    json.update("pipelineActivity.deviceRegistryEnrich.next", value: "string")
    json.update("pipelineActivity.deviceRegistryEnrich.roleArn", value: "string")
    json.update("pipelineActivity.deviceRegistryEnrich.thingName", value: "string")
    json.update("pipelineActivity.deviceShadowEnrich.attribute", value: "string")
    json.update("pipelineActivity.deviceShadowEnrich.name", value: "string")
    json.update("pipelineActivity.deviceShadowEnrich.next", value: "string")
    json.update("pipelineActivity.deviceShadowEnrich.roleArn", value: "string")
    json.update("pipelineActivity.deviceShadowEnrich.thingName", value: "string")
    json.update("pipelineActivity.filter.filter", value: "string")
    json.update("pipelineActivity.filter.name", value: "string")
    json.update("pipelineActivity.filter.next", value: "string")
    json.updateInt("pipelineActivity.lambda.batchSize", value: 123)
    json.update("pipelineActivity.lambda.lambdaName", value: "string")
    json.update("pipelineActivity.lambda.name", value: "string")
    json.update("pipelineActivity.lambda.next", value: "string")
    json.update("pipelineActivity.math.attribute", value: "string")
    json.update("pipelineActivity.math.math", value: "string")
    json.update("pipelineActivity.math.name", value: "string")
    json.update("pipelineActivity.math.next", value: "string")
    json.update("pipelineActivity.removeAttributes.attributes[0]", value: "string")
    json.update("pipelineActivity.removeAttributes.name", value: "string")
    json.update("pipelineActivity.removeAttributes.next", value: "string")
    json.update("pipelineActivity.selectAttributes.attributes[0]", value: "string")
    json.update("pipelineActivity.selectAttributes.name", value: "string")
    json.update("pipelineActivity.selectAttributes.next", value: "string")

    // The JSON request body created by the above code:

    // {
    //   "payloads": [
    //     blob
    //   ],
    //   "pipelineActivity": {
    //     "addAttributes": {
    //       "attributes": {
    //         "string": "string"
    //       },
    //       "name": "string",
    //       "next": "string"
    //     },
    //     "channel": {
    //       "channelName": "string",
    //       "name": "string",
    //       "next": "string"
    //     },
    //     "datastore": {
    //       "datastoreName": "string",
    //       "name": "string"
    //     },
    //     "deviceRegistryEnrich": {
    //       "attribute": "string",
    //       "name": "string",
    //       "next": "string",
    //       "roleArn": "string",
    //       "thingName": "string"
    //     },
    //     "deviceShadowEnrich": {
    //       "attribute": "string",
    //       "name": "string",
    //       "next": "string",
    //       "roleArn": "string",
    //       "thingName": "string"
    //     },
    //     "filter": {
    //       "filter": "string",
    //       "name": "string",
    //       "next": "string"
    //     },
    //     "lambda": {
    //       "batchSize": number,
    //       "lambdaName": "string",
    //       "name": "string",
    //       "next": "string"
    //     },
    //     "math": {
    //       "attribute": "string",
    //       "math": "string",
    //       "name": "string",
    //       "next": "string"
    //     },
    //     "removeAttributes": {
    //       "attributes": [
    //         "string"
    //       ],
    //       "name": "string",
    //       "next": "string"
    //     },
    //     "selectAttributes": {
    //       "attributes": [
    //         "string"
    //       ],
    //       "name": "string",
    //       "next": "string"
    //     }
    //   }
    // }

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

    let sbRequestBody = CkoStringBuilder()!
    json.emitSb(sbRequestBody)
    let sbResponseBody = CkoStringBuilder()!
    success = rest.fullRequestSb("POST", uriPath: "/pipelineactivities/run", 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 intVal: Int

    var logResult: String? = jResp.string(of: "logResult")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "payloads").intValue
    while i < count_i {
        jResp.i = i
        intVal = jResp.int(of: "payloads[i]").intValue
        i = i + 1
    }

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

    // {
    //   "logResult": "string",
    //   "payloads": [
    //     blob
    //   ]
    // }

}