GetExperimentTemplate VB6 Example
' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim rest As New ChilkatRest
Dim success As Long
Dim authAws As New ChilkatAuthAws
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 = "fis"
' SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
success = rest.SetAuthAws(authAws)
' URL: https://fis.us-west-2.amazonaws.com/
' Use the same region as specified above.
success = rest.Connect("fis.us-west-2.amazonaws.com",443,1,1)
If (success <> 1) Then
Debug.Print "ConnectFailReason: " & rest.ConnectFailReason
Debug.Print rest.LastErrorText
Exit Sub
End If
success = rest.AddHeader("Content-Type","application/x-amz-json-1.1")
success = rest.AddHeader("X-Amz-Target","GetExperimentTemplate")
Dim sbResponseBody As New ChilkatStringBuilder
success = rest.FullRequestNoBodySb("GET","/experimentTemplates/{id}",sbResponseBody)
If (success <> 1) Then
Debug.Print rest.LastErrorText
Exit Sub
End If
Dim respStatusCode As Long
respStatusCode = rest.ResponseStatusCode
Debug.Print "response status code = " & respStatusCode
If (respStatusCode <> 200) Then
Debug.Print "Response Header:"
Debug.Print rest.ResponseHeader
Debug.Print "Response Body:"
Debug.Print sbResponseBody.GetAsString()
Exit Sub
End If
Dim jResp As New ChilkatJsonObject
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 strVal As String
Dim source As String
Dim value As String
Dim path As String
Dim j As Long
Dim count_j As Long
Dim ActionId As String
ActionId = jResp.StringOf("experimentTemplate.actions.string.actionId")
Dim Description As String
Description = jResp.StringOf("experimentTemplate.actions.string.description")
Dim v_String As String
v_String = jResp.StringOf("experimentTemplate.actions.string.parameters.string")
Dim TargetsString As String
TargetsString = jResp.StringOf("experimentTemplate.actions.string.targets.string")
Dim CreationTime As Long
CreationTime = jResp.IntOf("experimentTemplate.creationTime")
Dim experimentTemplateDescription As String
experimentTemplateDescription = jResp.StringOf("experimentTemplate.description")
Dim Id As String
Id = jResp.StringOf("experimentTemplate.id")
Dim LastUpdateTime As Long
LastUpdateTime = jResp.IntOf("experimentTemplate.lastUpdateTime")
Dim LogGroupArn As String
LogGroupArn = jResp.StringOf("experimentTemplate.logConfiguration.cloudWatchLogsConfiguration.logGroupArn")
Dim LogSchemaVersion As Long
LogSchemaVersion = jResp.IntOf("experimentTemplate.logConfiguration.logSchemaVersion")
Dim BucketName As String
BucketName = jResp.StringOf("experimentTemplate.logConfiguration.s3Configuration.bucketName")
Dim Prefix As String
Prefix = jResp.StringOf("experimentTemplate.logConfiguration.s3Configuration.prefix")
Dim RoleArn As String
RoleArn = jResp.StringOf("experimentTemplate.roleArn")
Dim TagsString As String
TagsString = jResp.StringOf("experimentTemplate.tags.string")
Dim ParametersString As String
ParametersString = jResp.StringOf("experimentTemplate.targets.string.parameters.string")
Dim ResourceTagsString As String
ResourceTagsString = jResp.StringOf("experimentTemplate.targets.string.resourceTags.string")
Dim ResourceType As String
ResourceType = jResp.StringOf("experimentTemplate.targets.string.resourceType")
Dim SelectionMode As String
SelectionMode = jResp.StringOf("experimentTemplate.targets.string.selectionMode")
Dim i As Long
i = 0
Dim count_i As Long
count_i = jResp.SizeOfArray("experimentTemplate.actions.string.startAfter")
Do While i < count_i
jResp.I = i
strVal = jResp.StringOf("experimentTemplate.actions.string.startAfter[i]")
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("experimentTemplate.stopConditions")
Do While i < count_i
jResp.I = i
source = jResp.StringOf("experimentTemplate.stopConditions[i].source")
value = jResp.StringOf("experimentTemplate.stopConditions[i].value")
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("experimentTemplate.targets.string.filters")
Do While i < count_i
jResp.I = i
path = jResp.StringOf("experimentTemplate.targets.string.filters[i].path")
j = 0
count_j = jResp.SizeOfArray("experimentTemplate.targets.string.filters[i].values")
Do While j < count_j
jResp.J = j
strVal = jResp.StringOf("experimentTemplate.targets.string.filters[i].values[j]")
j = j + 1
Loop
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("experimentTemplate.targets.string.resourceArns")
Do While i < count_i
jResp.I = i
strVal = jResp.StringOf("experimentTemplate.targets.string.resourceArns[i]")
i = i + 1
Loop
' A sample JSON response body parsed by the above code:
' {
' "experimentTemplate": {
' "actions": {
' "string": {
' "actionId": "string",
' "description": "string",
' "parameters": {
' "string": "string"
' },
' "startAfter": [
' "string"
' ],
' "targets": {
' "string": "string"
' }
' }
' },
' "creationTime": number,
' "description": "string",
' "id": "string",
' "lastUpdateTime": number,
' "logConfiguration": {
' "cloudWatchLogsConfiguration": {
' "logGroupArn": "string"
' },
' "logSchemaVersion": number,
' "s3Configuration": {
' "bucketName": "string",
' "prefix": "string"
' }
' },
' "roleArn": "string",
' "stopConditions": [
' {
' "source": "string",
' "value": "string"
' }
' ],
' "tags": {
' "string": "string"
' },
' "targets": {
' "string": {
' "filters": [
' {
' "path": "string",
' "values": [
' "string"
' ]
' }
' ],
' "parameters": {
' "string": "string"
' },
' "resourceArns": [
' "string"
' ],
' "resourceTags": {
' "string": "string"
' },
' "resourceType": "string",
' "selectionMode": "string"
' }
' }
' }
' }