![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(C) AWS Secrets Manager - List SecretsSee more AWS Secrets Manager ExamplesLists the secrets that are stored by Secrets Manager in the AWS account. Lists the secrets that are stored by Secrets Manager in the AWS account.Note: This example requires Chilkat v11.1.0 or greater. For more information, see https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_ListSecrets.html
#include <C_CkRest.h> #include <C_CkAuthAws.h> #include <C_CkJsonObject.h> #include <C_CkJsonArray.h> void ChilkatSample(void) { BOOL success; HCkRest rest; BOOL bTls; int port; BOOL bAutoReconnect; HCkAuthAws authAws; const char *strResponse; int respStatusCode; HCkJsonObject jResp; const char *ARN; const char *Description; const char *LastChangedDate; const char *Name; const char *strVal; HCkJsonObject json2; HCkJsonArray jarr; int i; int count_i; int count; int j; const char *versionName; const char *stage; success = FALSE; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // Sends the following sample request. // Note: Chilkat will automatically add Content-Length, X-Amz-Date, Accept-Encoding, and Authorization // POST / HTTP/1.1 // Host: secretsmanager.region.domain // Accept-Encoding: identity // X-Amz-Target: secretsmanager.ListSecrets // Content-Type: application/x-amz-json-1.1 // X-Amz-Date: <date> // Authorization: AWS4-HMAC-SHA256 Credential=<credentials>,SignedHeaders=<headers>, Signature=<signature> // Content-Length: <payload-size-bytes> // // {} rest = CkRest_Create(); // Connect to the Amazon AWS REST server. // such as https://secretsmanager.us-west-2.amazonaws.com/ bTls = TRUE; port = 443; bAutoReconnect = TRUE; success = CkRest_Connect(rest,"secretsmanager.us-west-2.amazonaws.com",port,bTls,bAutoReconnect); // Provide AWS credentials for the REST call. authAws = CkAuthAws_Create(); CkAuthAws_putAccessKey(authAws,"AWS_ACCESS_KEY"); CkAuthAws_putSecretKey(authAws,"AWS_SECRET_KEY"); // the region should match our URL above.. CkAuthAws_putRegion(authAws,"us-west-2"); CkAuthAws_putServiceName(authAws,"secretsmanager"); CkRest_SetAuthAws(rest,authAws); CkRest_AddHeader(rest,"Content-Type","application/x-amz-json-1.1"); CkRest_AddHeader(rest,"X-Amz-Target","secretsmanager.ListSecrets"); strResponse = CkRest_fullRequestString(rest,"POST","/","{}"); if (CkRest_getLastMethodSuccess(rest) == FALSE) { printf("%s\n",CkRest_lastErrorText(rest)); CkRest_Dispose(rest); CkAuthAws_Dispose(authAws); return; } respStatusCode = CkRest_getResponseStatusCode(rest); printf("response status code = %d\n",respStatusCode); jResp = CkJsonObject_Create(); CkJsonObject_putEmitCompact(jResp,FALSE); CkJsonObject_Load(jResp,strResponse); if (respStatusCode >= 400) { printf("Response Status Code = %d\n",respStatusCode); printf("Response Header:\n"); printf("%s\n",CkRest_responseHeader(rest)); printf("Response Body:\n"); printf("%s\n",CkJsonObject_emit(jResp)); CkRest_Dispose(rest); CkAuthAws_Dispose(authAws); CkJsonObject_Dispose(jResp); return; } printf("Response Body:\n"); printf("%s\n",CkJsonObject_emit(jResp)); // Sample response body: // { // "SecretList":[ // { // "ARN":"arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3", // "Description":"My test database secret", // "LastChangedDate":1.523477145729E9, // "Name":"MyTestDatabaseSecret", // "SecretVersionsToStages":{ // "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE":["AWSCURRENT"] // } // }, // { // "ARN":"arn:aws:secretsmanager:us-west-2:123456789012:secret:AnotherDatabaseSecret-d4e5f6", // "Description":"Another secret created for a different database", // "LastChangedDate":1.523482025685E9, // "Name":"AnotherDatabaseSecret", // "SecretVersionsToStages":{ // "EXAMPLE3-90ab-cdef-fedc-ba987EXAMPLE":["AWSCURRENT"] // } // } // ] // } json2 = CkJsonObject_Create(); jarr = CkJsonArray_Create(); i = 0; count_i = CkJsonObject_SizeOfArray(jResp,"SecretList"); while (i < count_i) { CkJsonObject_putI(jResp,i); ARN = CkJsonObject_stringOf(jResp,"SecretList[i].ARN"); Description = CkJsonObject_stringOf(jResp,"SecretList[i].Description"); LastChangedDate = CkJsonObject_stringOf(jResp,"SecretList[i].LastChangedDate"); Name = CkJsonObject_stringOf(jResp,"SecretList[i].Name"); CkJsonObject_ObjectOf2(jResp,"SecretList[i].SecretVersionsToStages",json2); count = CkJsonObject_getSize(json2); j = 0; while (j < count) { versionName = CkJsonObject_nameAt(json2,j); CkJsonObject_ArrayOf2(json2,versionName,jarr); stage = CkJsonArray_stringAt(jarr,0); printf("versionName = %s\n",versionName); printf("stage = %s\n",stage); j = j + 1; } i = i + 1; } CkRest_Dispose(rest); CkAuthAws_Dispose(authAws); CkJsonObject_Dispose(jResp); CkJsonObject_Dispose(json2); CkJsonArray_Dispose(jarr); } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.