Chilkat Online Tools

CreateResolver Swift Example

AWS AppSync

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

    // URL: https://appsync.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect("appsync.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.UpdateString("cachingConfig.cachingKeys[0]", value: "string")
    json.UpdateInt("cachingConfig.ttl", value: 123)
    json.UpdateString("dataSourceName", value: "string")
    json.UpdateString("fieldName", value: "string")
    json.UpdateString("kind", value: "string")
    json.UpdateInt("maxBatchSize", value: 123)
    json.UpdateString("pipelineConfig.functions[0]", value: "string")
    json.UpdateString("requestMappingTemplate", value: "string")
    json.UpdateString("responseMappingTemplate", value: "string")
    json.UpdateString("syncConfig.conflictDetection", value: "string")
    json.UpdateString("syncConfig.conflictHandler", value: "string")
    json.UpdateString("syncConfig.lambdaConflictHandlerConfig.lambdaConflictHandlerArn", value: "string")

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

    // {
    //   "cachingConfig": {
    //     "cachingKeys": [
    //       "string"
    //     ],
    //     "ttl": number
    //   },
    //   "dataSourceName": "string",
    //   "fieldName": "string",
    //   "kind": "string",
    //   "maxBatchSize": number,
    //   "pipelineConfig": {
    //     "functions": [
    //       "string"
    //     ]
    //   },
    //   "requestMappingTemplate": "string",
    //   "responseMappingTemplate": "string",
    //   "syncConfig": {
    //     "conflictDetection": "string",
    //     "conflictHandler": "string",
    //     "lambdaConflictHandlerConfig": {
    //       "lambdaConflictHandlerArn": "string"
    //     }
    //   }
    // }

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

    let sbRequestBody = CkoStringBuilder()
    json.EmitSb(sbRequestBody)
    let sbResponseBody = CkoStringBuilder()
    success = rest.FullRequestSb("POST", uriPath: "/v1/apis/{apiId}/types/{typeName}/resolvers", 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 strVal: String?

    var Ttl: Int = jResp.IntOf("resolver.cachingConfig.ttl").intValue
    var DataSourceName: String? = jResp.StringOf("resolver.dataSourceName")
    var FieldName: String? = jResp.StringOf("resolver.fieldName")
    var Kind: String? = jResp.StringOf("resolver.kind")
    var MaxBatchSize: Int = jResp.IntOf("resolver.maxBatchSize").intValue
    var RequestMappingTemplate: String? = jResp.StringOf("resolver.requestMappingTemplate")
    var ResolverArn: String? = jResp.StringOf("resolver.resolverArn")
    var ResponseMappingTemplate: String? = jResp.StringOf("resolver.responseMappingTemplate")
    var ConflictDetection: String? = jResp.StringOf("resolver.syncConfig.conflictDetection")
    var ConflictHandler: String? = jResp.StringOf("resolver.syncConfig.conflictHandler")
    var LambdaConflictHandlerArn: String? = jResp.StringOf("resolver.syncConfig.lambdaConflictHandlerConfig.lambdaConflictHandlerArn")
    var TypeName: String? = jResp.StringOf("resolver.typeName")
    var i: Int = 0
    var count_i: Int = jResp.SizeOfArray("resolver.cachingConfig.cachingKeys").intValue
    while i < count_i {
        jResp.I = i
        strVal = jResp.StringOf("resolver.cachingConfig.cachingKeys[i]")
        i = i + 1
    }

    i = 0
    count_i = jResp.SizeOfArray("resolver.pipelineConfig.functions").intValue
    while i < count_i {
        jResp.I = i
        strVal = jResp.StringOf("resolver.pipelineConfig.functions[i]")
        i = i + 1
    }

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

    // {
    //   "resolver": {
    //     "cachingConfig": {
    //       "cachingKeys": [
    //         "string"
    //       ],
    //       "ttl": number
    //     },
    //     "dataSourceName": "string",
    //     "fieldName": "string",
    //     "kind": "string",
    //     "maxBatchSize": number,
    //     "pipelineConfig": {
    //       "functions": [
    //         "string"
    //       ]
    //     },
    //     "requestMappingTemplate": "string",
    //     "resolverArn": "string",
    //     "responseMappingTemplate": "string",
    //     "syncConfig": {
    //       "conflictDetection": "string",
    //       "conflictHandler": "string",
    //       "lambdaConflictHandlerConfig": {
    //         "lambdaConflictHandlerArn": "string"
    //       }
    //     },
    //     "typeName": "string"
    //   }
    // }

}