UpdatePipeline 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 = "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()!
json.update("pipelineActivities[0].addAttributes.attributes.string", value: "string")
json.update("pipelineActivities[0].addAttributes.name", value: "string")
json.update("pipelineActivities[0].addAttributes.next", value: "string")
json.update("pipelineActivities[0].channel.channelName", value: "string")
json.update("pipelineActivities[0].channel.name", value: "string")
json.update("pipelineActivities[0].channel.next", value: "string")
json.update("pipelineActivities[0].datastore.datastoreName", value: "string")
json.update("pipelineActivities[0].datastore.name", value: "string")
json.update("pipelineActivities[0].deviceRegistryEnrich.attribute", value: "string")
json.update("pipelineActivities[0].deviceRegistryEnrich.name", value: "string")
json.update("pipelineActivities[0].deviceRegistryEnrich.next", value: "string")
json.update("pipelineActivities[0].deviceRegistryEnrich.roleArn", value: "string")
json.update("pipelineActivities[0].deviceRegistryEnrich.thingName", value: "string")
json.update("pipelineActivities[0].deviceShadowEnrich.attribute", value: "string")
json.update("pipelineActivities[0].deviceShadowEnrich.name", value: "string")
json.update("pipelineActivities[0].deviceShadowEnrich.next", value: "string")
json.update("pipelineActivities[0].deviceShadowEnrich.roleArn", value: "string")
json.update("pipelineActivities[0].deviceShadowEnrich.thingName", value: "string")
json.update("pipelineActivities[0].filter.filter", value: "string")
json.update("pipelineActivities[0].filter.name", value: "string")
json.update("pipelineActivities[0].filter.next", value: "string")
json.updateInt("pipelineActivities[0].lambda.batchSize", value: 123)
json.update("pipelineActivities[0].lambda.lambdaName", value: "string")
json.update("pipelineActivities[0].lambda.name", value: "string")
json.update("pipelineActivities[0].lambda.next", value: "string")
json.update("pipelineActivities[0].math.attribute", value: "string")
json.update("pipelineActivities[0].math.math", value: "string")
json.update("pipelineActivities[0].math.name", value: "string")
json.update("pipelineActivities[0].math.next", value: "string")
json.update("pipelineActivities[0].removeAttributes.attributes[0]", value: "string")
json.update("pipelineActivities[0].removeAttributes.name", value: "string")
json.update("pipelineActivities[0].removeAttributes.next", value: "string")
json.update("pipelineActivities[0].selectAttributes.attributes[0]", value: "string")
json.update("pipelineActivities[0].selectAttributes.name", value: "string")
json.update("pipelineActivities[0].selectAttributes.next", value: "string")
// The JSON request body created by the above code:
// {
// "pipelineActivities": [
// {
// "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: "UpdatePipeline")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestSb("PUT", uriPath: "/pipelines/{pipelineName}", 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
// A sample JSON response body parsed by the above code:
// {}
}