Chilkat Online Tools

GetInfrastructureConfiguration Swift3 Example

EC2 Image Builder

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

    // URL: https://imagebuilder.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.connect("imagebuilder.us-west-2.amazonaws.com", port: 443, tls: true, autoReconnect: true)
    if success != true {
        print("ConnectFailReason: \(rest.connectFailReason.intValue)")
        print("\(rest.lastErrorText!)")
        return
    }

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

    let sbResponseBody = CkoStringBuilder()!
    success = rest.fullRequestNoBodySb("GET", uriPath: "/GetInfrastructureConfiguration", sb: 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 Arn: String? = jResp.string(of: "infrastructureConfiguration.arn")
    var DateCreated: String? = jResp.string(of: "infrastructureConfiguration.dateCreated")
    var DateUpdated: String? = jResp.string(of: "infrastructureConfiguration.dateUpdated")
    var Description: String? = jResp.string(of: "infrastructureConfiguration.description")
    var HttpPutResponseHopLimit: Int = jResp.int(of: "infrastructureConfiguration.instanceMetadataOptions.httpPutResponseHopLimit").intValue
    var HttpTokens: String? = jResp.string(of: "infrastructureConfiguration.instanceMetadataOptions.httpTokens")
    var InstanceProfileName: String? = jResp.string(of: "infrastructureConfiguration.instanceProfileName")
    var KeyPair: String? = jResp.string(of: "infrastructureConfiguration.keyPair")
    var S3BucketName: String? = jResp.string(of: "infrastructureConfiguration.logging.s3Logs.s3BucketName")
    var S3KeyPrefix: String? = jResp.string(of: "infrastructureConfiguration.logging.s3Logs.s3KeyPrefix")
    var Name: String? = jResp.string(of: "infrastructureConfiguration.name")
    var v_String: String? = jResp.string(of: "infrastructureConfiguration.resourceTags.string")
    var SnsTopicArn: String? = jResp.string(of: "infrastructureConfiguration.snsTopicArn")
    var SubnetId: String? = jResp.string(of: "infrastructureConfiguration.subnetId")
    var TagsString: String? = jResp.string(of: "infrastructureConfiguration.tags.string")
    var TerminateInstanceOnFailure: Int = jResp.int(of: "infrastructureConfiguration.terminateInstanceOnFailure").intValue
    var requestId: String? = jResp.string(of: "requestId")
    var i: Int = 0
    var count_i: Int = jResp.size(ofArray: "infrastructureConfiguration.instanceTypes").intValue
    while i < count_i {
        jResp.i = i
        strVal = jResp.string(of: "infrastructureConfiguration.instanceTypes[i]")
        i = i + 1
    }

    i = 0
    count_i = jResp.size(ofArray: "infrastructureConfiguration.securityGroupIds").intValue
    while i < count_i {
        jResp.i = i
        strVal = jResp.string(of: "infrastructureConfiguration.securityGroupIds[i]")
        i = i + 1
    }

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

    // {
    //   "infrastructureConfiguration": {
    //     "arn": "string",
    //     "dateCreated": "string",
    //     "dateUpdated": "string",
    //     "description": "string",
    //     "instanceMetadataOptions": {
    //       "httpPutResponseHopLimit": number,
    //       "httpTokens": "string"
    //     },
    //     "instanceProfileName": "string",
    //     "instanceTypes": [
    //       "string"
    //     ],
    //     "keyPair": "string",
    //     "logging": {
    //       "s3Logs": {
    //         "s3BucketName": "string",
    //         "s3KeyPrefix": "string"
    //       }
    //     },
    //     "name": "string",
    //     "resourceTags": {
    //       "string": "string"
    //     },
    //     "securityGroupIds": [
    //       "string"
    //     ],
    //     "snsTopicArn": "string",
    //     "subnetId": "string",
    //     "tags": {
    //       "string": "string"
    //     },
    //     "terminateInstanceOnFailure": boolean
    //   },
    //   "requestId": "string"
    // }

}