Sample code for 30+ languages & platforms
Xojo Plugin

AWS KMS List Keys

See more AWS KMS Examples

Gets a list of all KMS keys in the caller's AWS account and Region.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim success As Boolean
success = False

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

Dim rest As New Chilkat.Rest

// Connect to the Amazon AWS REST server.
// Make sure to use the region that is correct for you.
// such as https://kms.us-west-2.amazonaws.com/
Dim bTls As Boolean
bTls = True
Dim port As Int32
port = 443
Dim bAutoReconnect As Boolean
bAutoReconnect = True
success = rest.Connect("kms.us-west-2.amazonaws.com",port,bTls,bAutoReconnect)

// Provide AWS credentials for the REST call.
Dim authAws As New Chilkat.AuthAws
authAws.AccessKey = "AWS_ACCESS_KEY"
authAws.SecretKey = "AWS_SECRET_KEY"
// the region should match our URL above..
authAws.Region = "us-west-2"
authAws.ServiceName = "kms"

success = rest.SetAuthAws(authAws)

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

Dim strJson As String
strJson = rest.FullRequestString("POST","/","{}")
If (rest.LastMethodSuccess <> True) Then
    System.DebugLog(rest.LastErrorText)
    Return
End If

// A successful response will have a status code equal to 200.
If (rest.ResponseStatusCode <> 200) Then
    System.DebugLog("response status code = " + Str(rest.ResponseStatusCode))
    System.DebugLog("response status text = " + rest.ResponseStatusText)
    System.DebugLog("response header: " + rest.ResponseHeader)
    System.DebugLog("response body: " + strJson)
    Return
End If

// Examine the successful JSON response (shown below)
Dim json As New Chilkat.JsonObject
success = json.Load(strJson)
json.EmitCompact = False

System.DebugLog(json.Emit())

// Sample output:

// {
//   "KeyCount": 4,
//   "Keys": [
//     {
//       "KeyArn": "arn:aws:kms:us-west-2:954491834127:key/082f8520-7afc-4a09-b703-89b7243072e5",
//       "KeyId": "082f8520-7afc-4a09-b703-89b7243072e5"
//     },
//     {
//       "KeyArn": "arn:aws:kms:us-west-2:954491834127:key/17432483-ff08-4950-93d3-f46ebb5e17d1",
//       "KeyId": "17432483-ff08-4950-93d3-f46ebb5e17d1"
//     },
//     {
//       "KeyArn": "arn:aws:kms:us-west-2:954491834127:key/1b0e5b3c-0675-4510-adb6-a75b40a93da0",
//       "KeyId": "1b0e5b3c-0675-4510-adb6-a75b40a93da0"
//     },
//     {
//       "KeyArn": "arn:aws:kms:us-west-2:954491834127:key/265e3993-428b-4581-9466-b1030a53062f",
//       "KeyId": "265e3993-428b-4581-9466-b1030a53062f"
//     },
//   ],
//   "Truncated": false
// }

// Use this online tool to generate parsing code from sample JSON: 
// Generate Parsing Code from JSON

Dim KeyArn As String
Dim KeyId As String

Dim KeyCount As Int32
KeyCount = json.IntOf("KeyCount")
Dim Truncated As Boolean
Truncated = json.BoolOf("Truncated")
Dim i As Int32
i = 0
Dim count_i As Int32
count_i = json.SizeOfArray("Keys")
While i < count_i
    json.I = i
    KeyArn = json.StringOf("Keys[i].KeyArn")
    KeyId = json.StringOf("Keys[i].KeyId")
    i = i + 1
Wend