Chilkat Online Tools

DescribeStacks Swift3 Example

Amazon AppStream

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

    // URL: https://appstream2.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.connect("appstream2.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("Names[0]", value: "string")
    json.update("NextToken", value: "string")

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

    // {
    //   "Names": [
    //     "string"
    //   ],
    //   "NextToken": "string"
    // }

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

    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 Enabled: Int
    var S3BucketName: String?
    var SettingsGroup: String?
    var Arn: String?
    var CreatedTime: Int
    var Description: String?
    var DisplayName: String?
    var FeedbackURL: String?
    var Name: String?
    var RedirectURL: String?
    var j: Int
    var count_j: Int
    var EndpointType: String?
    var VpceId: String?
    var strVal: String?
    var ErrorCode: String?
    var ErrorMessage: String?
    var ConnectorType: String?
    var ResourceIdentifier: String?
    var k: Int
    var count_k: Int
    var Action: String?
    var Permission: String?

    var NextToken: String? = jResp.string(of: "NextToken")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "Stacks").intValue
    while i < count_i {
        jResp.i = i
        Enabled = jResp.int(of: "Stacks[i].ApplicationSettings.Enabled").intValue
        S3BucketName = jResp.string(of: "Stacks[i].ApplicationSettings.S3BucketName")
        SettingsGroup = jResp.string(of: "Stacks[i].ApplicationSettings.SettingsGroup")
        Arn = jResp.string(of: "Stacks[i].Arn")
        CreatedTime = jResp.int(of: "Stacks[i].CreatedTime").intValue
        Description = jResp.string(of: "Stacks[i].Description")
        DisplayName = jResp.string(of: "Stacks[i].DisplayName")
        FeedbackURL = jResp.string(of: "Stacks[i].FeedbackURL")
        Name = jResp.string(of: "Stacks[i].Name")
        RedirectURL = jResp.string(of: "Stacks[i].RedirectURL")
        j = 0
        count_j = jResp.size(ofArray: "Stacks[i].AccessEndpoints").intValue
        while j < count_j {
            jResp.j = j
            EndpointType = jResp.string(of: "Stacks[i].AccessEndpoints[j].EndpointType")
            VpceId = jResp.string(of: "Stacks[i].AccessEndpoints[j].VpceId")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "Stacks[i].EmbedHostDomains").intValue
        while j < count_j {
            jResp.j = j
            strVal = jResp.string(of: "Stacks[i].EmbedHostDomains[j]")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "Stacks[i].StackErrors").intValue
        while j < count_j {
            jResp.j = j
            ErrorCode = jResp.string(of: "Stacks[i].StackErrors[j].ErrorCode")
            ErrorMessage = jResp.string(of: "Stacks[i].StackErrors[j].ErrorMessage")
            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "Stacks[i].StorageConnectors").intValue
        while j < count_j {
            jResp.j = j
            ConnectorType = jResp.string(of: "Stacks[i].StorageConnectors[j].ConnectorType")
            ResourceIdentifier = jResp.string(of: "Stacks[i].StorageConnectors[j].ResourceIdentifier")
            k = 0
            count_k = jResp.size(ofArray: "Stacks[i].StorageConnectors[j].Domains").intValue
            while k < count_k {
                jResp.k = k
                strVal = jResp.string(of: "Stacks[i].StorageConnectors[j].Domains[k]")
                k = k + 1
            }

            j = j + 1
        }

        j = 0
        count_j = jResp.size(ofArray: "Stacks[i].UserSettings").intValue
        while j < count_j {
            jResp.j = j
            Action = jResp.string(of: "Stacks[i].UserSettings[j].Action")
            Permission = jResp.string(of: "Stacks[i].UserSettings[j].Permission")
            j = j + 1
        }

        i = i + 1
    }

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

    // {
    //   "NextToken": "string",
    //   "Stacks": [
    //     {
    //       "AccessEndpoints": [
    //         {
    //           "EndpointType": "string",
    //           "VpceId": "string"
    //         }
    //       ],
    //       "ApplicationSettings": {
    //         "Enabled": boolean,
    //         "S3BucketName": "string",
    //         "SettingsGroup": "string"
    //       },
    //       "Arn": "string",
    //       "CreatedTime": number,
    //       "Description": "string",
    //       "DisplayName": "string",
    //       "EmbedHostDomains": [
    //         "string"
    //       ],
    //       "FeedbackURL": "string",
    //       "Name": "string",
    //       "RedirectURL": "string",
    //       "StackErrors": [
    //         {
    //           "ErrorCode": "string",
    //           "ErrorMessage": "string"
    //         }
    //       ],
    //       "StorageConnectors": [
    //         {
    //           "ConnectorType": "string",
    //           "Domains": [
    //             "string"
    //           ],
    //           "ResourceIdentifier": "string"
    //         }
    //       ],
    //       "UserSettings": [
    //         {
    //           "Action": "string",
    //           "Permission": "string"
    //         }
    //       ]
    //     }
    //   ]
    // }

}