Chilkat Online Tools

GetImagePipeline Xojo Example

EC2 Image Builder

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Dim rest As New Chilkat.Rest
Dim success As Boolean

Dim authAws As New Chilkat.AuthAws
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
success = 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",443,True,True)
If (success <> True) Then
    System.DebugLog("ConnectFailReason: " + Str(rest.ConnectFailReason))
    System.DebugLog(rest.LastErrorText)
    Return
End If

success = rest.AddHeader("Content-Type","application/x-amz-json-1.1")
success = rest.AddHeader("X-Amz-Target","GetImagePipeline")

Dim sbResponseBody As New Chilkat.StringBuilder
success = rest.FullRequestNoBodySb("GET","/GetImagePipeline",sbResponseBody)
If (success <> True) Then
    System.DebugLog(rest.LastErrorText)
    Return
End If

Dim respStatusCode As Int32
respStatusCode = rest.ResponseStatusCode
System.DebugLog("response status code = " + Str(respStatusCode))
If (respStatusCode <> 200) Then
    System.DebugLog("Response Header:")
    System.DebugLog(rest.ResponseHeader)
    System.DebugLog("Response Body:")
    System.DebugLog(sbResponseBody.GetAsString())
    Return
End If

Dim jResp As New Chilkat.JsonObject
success = 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

Dim Arn As String
Arn = jResp.StringOf("imagePipeline.arn")
Dim ContainerRecipeArn As String
ContainerRecipeArn = jResp.StringOf("imagePipeline.containerRecipeArn")
Dim DateCreated As String
DateCreated = jResp.StringOf("imagePipeline.dateCreated")
Dim DateLastRun As String
DateLastRun = jResp.StringOf("imagePipeline.dateLastRun")
Dim DateNextRun As String
DateNextRun = jResp.StringOf("imagePipeline.dateNextRun")
Dim DateUpdated As String
DateUpdated = jResp.StringOf("imagePipeline.dateUpdated")
Dim Description As String
Description = jResp.StringOf("imagePipeline.description")
Dim DistributionConfigurationArn As String
DistributionConfigurationArn = jResp.StringOf("imagePipeline.distributionConfigurationArn")
Dim EnhancedImageMetadataEnabled As Int32
EnhancedImageMetadataEnabled = jResp.IntOf("imagePipeline.enhancedImageMetadataEnabled")
Dim ImageRecipeArn As String
ImageRecipeArn = jResp.StringOf("imagePipeline.imageRecipeArn")
Dim ImageTestsEnabled As Int32
ImageTestsEnabled = jResp.IntOf("imagePipeline.imageTestsConfiguration.imageTestsEnabled")
Dim TimeoutMinutes As Int32
TimeoutMinutes = jResp.IntOf("imagePipeline.imageTestsConfiguration.timeoutMinutes")
Dim InfrastructureConfigurationArn As String
InfrastructureConfigurationArn = jResp.StringOf("imagePipeline.infrastructureConfigurationArn")
Dim Name As String
Name = jResp.StringOf("imagePipeline.name")
Dim Platform As String
Platform = jResp.StringOf("imagePipeline.platform")
Dim PipelineExecutionStartCondition As String
PipelineExecutionStartCondition = jResp.StringOf("imagePipeline.schedule.pipelineExecutionStartCondition")
Dim ScheduleExpression As String
ScheduleExpression = jResp.StringOf("imagePipeline.schedule.scheduleExpression")
Dim Timezone As String
Timezone = jResp.StringOf("imagePipeline.schedule.timezone")
Dim Status As String
Status = jResp.StringOf("imagePipeline.status")
Dim v_String As String
v_String = jResp.StringOf("imagePipeline.tags.string")
Dim requestId As String
requestId = jResp.StringOf("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"
// }