Chilkat Online Tools

GetImagePipeline 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: "GetImagePipeline")

    let sbResponseBody = CkoStringBuilder()!
    success = rest.fullRequestNoBodySb("GET", uriPath: "/GetImagePipeline", 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 Arn: String? = jResp.string(of: "imagePipeline.arn")
    var ContainerRecipeArn: String? = jResp.string(of: "imagePipeline.containerRecipeArn")
    var DateCreated: String? = jResp.string(of: "imagePipeline.dateCreated")
    var DateLastRun: String? = jResp.string(of: "imagePipeline.dateLastRun")
    var DateNextRun: String? = jResp.string(of: "imagePipeline.dateNextRun")
    var DateUpdated: String? = jResp.string(of: "imagePipeline.dateUpdated")
    var Description: String? = jResp.string(of: "imagePipeline.description")
    var DistributionConfigurationArn: String? = jResp.string(of: "imagePipeline.distributionConfigurationArn")
    var EnhancedImageMetadataEnabled: Int = jResp.int(of: "imagePipeline.enhancedImageMetadataEnabled").intValue
    var ImageRecipeArn: String? = jResp.string(of: "imagePipeline.imageRecipeArn")
    var ImageTestsEnabled: Int = jResp.int(of: "imagePipeline.imageTestsConfiguration.imageTestsEnabled").intValue
    var TimeoutMinutes: Int = jResp.int(of: "imagePipeline.imageTestsConfiguration.timeoutMinutes").intValue
    var InfrastructureConfigurationArn: String? = jResp.string(of: "imagePipeline.infrastructureConfigurationArn")
    var Name: String? = jResp.string(of: "imagePipeline.name")
    var Platform: String? = jResp.string(of: "imagePipeline.platform")
    var PipelineExecutionStartCondition: String? = jResp.string(of: "imagePipeline.schedule.pipelineExecutionStartCondition")
    var ScheduleExpression: String? = jResp.string(of: "imagePipeline.schedule.scheduleExpression")
    var Timezone: String? = jResp.string(of: "imagePipeline.schedule.timezone")
    var Status: String? = jResp.string(of: "imagePipeline.status")
    var v_String: String? = jResp.string(of: "imagePipeline.tags.string")
    var requestId: String? = jResp.string(of: "requestId")

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

    // {
    //   "imagePipeline": {
    //     "arn": "string",
    //     "containerRecipeArn": "string",
    //     "dateCreated": "string",
    //     "dateLastRun": "string",
    //     "dateNextRun": "string",
    //     "dateUpdated": "string",
    //     "description": "string",
    //     "distributionConfigurationArn": "string",
    //     "enhancedImageMetadataEnabled": boolean,
    //     "imageRecipeArn": "string",
    //     "imageTestsConfiguration": {
    //       "imageTestsEnabled": boolean,
    //       "timeoutMinutes": number
    //     },
    //     "infrastructureConfigurationArn": "string",
    //     "name": "string",
    //     "platform": "string",
    //     "schedule": {
    //       "pipelineExecutionStartCondition": "string",
    //       "scheduleExpression": "string",
    //       "timezone": "string"
    //     },
    //     "status": "string",
    //     "tags": {
    //       "string": "string"
    //     }
    //   },
    //   "requestId": "string"
    // }

}