CreateServer unicodeCpp Example
#include <CkRestW.h>
#include <CkAuthAwsW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
void ChilkatSample(void)
{
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkRestW rest;
bool success;
CkAuthAwsW authAws;
authAws.put_AccessKey(L"AWS_ACCESS_KEY");
authAws.put_SecretKey(L"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.put_Region(L"us-west-2");
authAws.put_ServiceName(L"opsworks-cm");
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.SetAuthAws(authAws);
// URL: https://opsworks-cm.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect(L"opsworks-cm.us-west-2.amazonaws.com",443,true,true);
if (success != true) {
wprintf(L"ConnectFailReason: %d\n",rest.get_ConnectFailReason());
wprintf(L"%s\n",rest.lastErrorText());
return;
}
// The following code creates the JSON request body.
// The JSON created by this code is shown below.
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
CkJsonObjectW json;
json.UpdateInt(L"AssociatePublicIpAddress",123);
json.UpdateString(L"BackupId",L"string");
json.UpdateInt(L"BackupRetentionCount",123);
json.UpdateString(L"CustomCertificate",L"string");
json.UpdateString(L"CustomDomain",L"string");
json.UpdateString(L"CustomPrivateKey",L"string");
json.UpdateInt(L"DisableAutomatedBackup",123);
json.UpdateString(L"Engine",L"string");
json.UpdateString(L"EngineAttributes[0].Name",L"string");
json.UpdateString(L"EngineAttributes[0].Value",L"string");
json.UpdateString(L"EngineModel",L"string");
json.UpdateString(L"EngineVersion",L"string");
json.UpdateString(L"InstanceProfileArn",L"string");
json.UpdateString(L"InstanceType",L"string");
json.UpdateString(L"KeyPair",L"string");
json.UpdateString(L"PreferredBackupWindow",L"string");
json.UpdateString(L"PreferredMaintenanceWindow",L"string");
json.UpdateString(L"SecurityGroupIds[0]",L"string");
json.UpdateString(L"ServerName",L"string");
json.UpdateString(L"ServiceRoleArn",L"string");
json.UpdateString(L"SubnetIds[0]",L"string");
json.UpdateString(L"Tags[0].Key",L"string");
json.UpdateString(L"Tags[0].Value",L"string");
// The JSON request body created by the above code:
// {
// "AssociatePublicIpAddress": boolean,
// "BackupId": "string",
// "BackupRetentionCount": number,
// "CustomCertificate": "string",
// "CustomDomain": "string",
// "CustomPrivateKey": "string",
// "DisableAutomatedBackup": boolean,
// "Engine": "string",
// "EngineAttributes": [
// {
// "Name": "string",
// "Value": "string"
// }
// ],
// "EngineModel": "string",
// "EngineVersion": "string",
// "InstanceProfileArn": "string",
// "InstanceType": "string",
// "KeyPair": "string",
// "PreferredBackupWindow": "string",
// "PreferredMaintenanceWindow": "string",
// "SecurityGroupIds": [
// "string"
// ],
// "ServerName": "string",
// "ServiceRoleArn": "string",
// "SubnetIds": [
// "string"
// ],
// "Tags": [
// {
// "Key": "string",
// "Value": "string"
// }
// ]
// }
rest.AddHeader(L"Content-Type",L"application/x-amz-json-1.1");
rest.AddHeader(L"X-Amz-Target",L"OpsWorksCM_V2016_11_01.CreateServer");
CkStringBuilderW sbRequestBody;
json.EmitSb(sbRequestBody);
CkStringBuilderW sbResponseBody;
success = rest.FullRequestSb(L"POST",L"/",sbRequestBody,sbResponseBody);
if (success != true) {
wprintf(L"%s\n",rest.lastErrorText());
return;
}
int respStatusCode = rest.get_ResponseStatusCode();
wprintf(L"response status code = %d\n",respStatusCode);
if (respStatusCode != 200) {
wprintf(L"Response Header:\n");
wprintf(L"%s\n",rest.responseHeader());
wprintf(L"Response Body:\n");
wprintf(L"%s\n",sbResponseBody.getAsString());
return;
}
CkJsonObjectW jResp;
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
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
// See this example explaining how this memory should be used: const char * functions.
const wchar_t *Name = 0;
const wchar_t *Value = 0;
const wchar_t *strVal = 0;
int AssociatePublicIpAddress = jResp.IntOf(L"Server.AssociatePublicIpAddress");
int BackupRetentionCount = jResp.IntOf(L"Server.BackupRetentionCount");
const wchar_t *CloudFormationStackArn = jResp.stringOf(L"Server.CloudFormationStackArn");
int CreatedAt = jResp.IntOf(L"Server.CreatedAt");
const wchar_t *CustomDomain = jResp.stringOf(L"Server.CustomDomain");
int DisableAutomatedBackup = jResp.IntOf(L"Server.DisableAutomatedBackup");
const wchar_t *Endpoint = jResp.stringOf(L"Server.Endpoint");
const wchar_t *Engine = jResp.stringOf(L"Server.Engine");
const wchar_t *EngineModel = jResp.stringOf(L"Server.EngineModel");
const wchar_t *EngineVersion = jResp.stringOf(L"Server.EngineVersion");
const wchar_t *InstanceProfileArn = jResp.stringOf(L"Server.InstanceProfileArn");
const wchar_t *InstanceType = jResp.stringOf(L"Server.InstanceType");
const wchar_t *KeyPair = jResp.stringOf(L"Server.KeyPair");
const wchar_t *MaintenanceStatus = jResp.stringOf(L"Server.MaintenanceStatus");
const wchar_t *PreferredBackupWindow = jResp.stringOf(L"Server.PreferredBackupWindow");
const wchar_t *PreferredMaintenanceWindow = jResp.stringOf(L"Server.PreferredMaintenanceWindow");
const wchar_t *ServerArn = jResp.stringOf(L"Server.ServerArn");
const wchar_t *ServerName = jResp.stringOf(L"Server.ServerName");
const wchar_t *ServiceRoleArn = jResp.stringOf(L"Server.ServiceRoleArn");
const wchar_t *Status = jResp.stringOf(L"Server.Status");
const wchar_t *StatusReason = jResp.stringOf(L"Server.StatusReason");
int i = 0;
int count_i = jResp.SizeOfArray(L"Server.EngineAttributes");
while (i < count_i) {
jResp.put_I(i);
Name = jResp.stringOf(L"Server.EngineAttributes[i].Name");
Value = jResp.stringOf(L"Server.EngineAttributes[i].Value");
i = i + 1;
}
i = 0;
count_i = jResp.SizeOfArray(L"Server.SecurityGroupIds");
while (i < count_i) {
jResp.put_I(i);
strVal = jResp.stringOf(L"Server.SecurityGroupIds[i]");
i = i + 1;
}
i = 0;
count_i = jResp.SizeOfArray(L"Server.SubnetIds");
while (i < count_i) {
jResp.put_I(i);
strVal = jResp.stringOf(L"Server.SubnetIds[i]");
i = i + 1;
}
// A sample JSON response body parsed by the above code:
// {
// "Server": {
// "AssociatePublicIpAddress": boolean,
// "BackupRetentionCount": number,
// "CloudFormationStackArn": "string",
// "CreatedAt": number,
// "CustomDomain": "string",
// "DisableAutomatedBackup": boolean,
// "Endpoint": "string",
// "Engine": "string",
// "EngineAttributes": [
// {
// "Name": "string",
// "Value": "string"
// }
// ],
// "EngineModel": "string",
// "EngineVersion": "string",
// "InstanceProfileArn": "string",
// "InstanceType": "string",
// "KeyPair": "string",
// "MaintenanceStatus": "string",
// "PreferredBackupWindow": "string",
// "PreferredMaintenanceWindow": "string",
// "SecurityGroupIds": [
// "string"
// ],
// "ServerArn": "string",
// "ServerName": "string",
// "ServiceRoleArn": "string",
// "Status": "string",
// "StatusReason": "string",
// "SubnetIds": [
// "string"
// ]
// }
// }
}