Chilkat Online Tools

DescribeFirewallPolicy unicodeCpp Example

AWS Network Firewall

#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"network-firewall");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://network-firewall.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect(L"network-firewall.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.UpdateString(L"FirewallPolicyArn",L"string");
    json.UpdateString(L"FirewallPolicyName",L"string");

    // The JSON request body created by the above code:

    // {
    //   "FirewallPolicyArn": "string",
    //   "FirewallPolicyName": "string"
    // }

    rest.AddHeader(L"Content-Type",L"application/x-amz-json-1.0");
    rest.AddHeader(L"X-Amz-Target",L"NetworkFirewall_20201112.DescribeFirewallPolicy");

    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 *strVal = 0;
    const wchar_t *Action = 0;
    int Priority;
    const wchar_t *ResourceArn = 0;
    const wchar_t *ActionName = 0;
    int j;
    int count_j;
    const wchar_t *Value = 0;
    const wchar_t *Key = 0;

    const wchar_t *RuleOrder = jResp.stringOf(L"FirewallPolicy.StatefulEngineOptions.RuleOrder");
    int ConsumedStatefulRuleCapacity = jResp.IntOf(L"FirewallPolicyResponse.ConsumedStatefulRuleCapacity");
    int ConsumedStatelessRuleCapacity = jResp.IntOf(L"FirewallPolicyResponse.ConsumedStatelessRuleCapacity");
    const wchar_t *Description = jResp.stringOf(L"FirewallPolicyResponse.Description");
    const wchar_t *KeyId = jResp.stringOf(L"FirewallPolicyResponse.EncryptionConfiguration.KeyId");
    const wchar_t *v_Type = jResp.stringOf(L"FirewallPolicyResponse.EncryptionConfiguration.Type");
    const wchar_t *FirewallPolicyArn = jResp.stringOf(L"FirewallPolicyResponse.FirewallPolicyArn");
    const wchar_t *FirewallPolicyId = jResp.stringOf(L"FirewallPolicyResponse.FirewallPolicyId");
    const wchar_t *FirewallPolicyName = jResp.stringOf(L"FirewallPolicyResponse.FirewallPolicyName");
    const wchar_t *FirewallPolicyStatus = jResp.stringOf(L"FirewallPolicyResponse.FirewallPolicyStatus");
    int LastModifiedTime = jResp.IntOf(L"FirewallPolicyResponse.LastModifiedTime");
    int NumberOfAssociations = jResp.IntOf(L"FirewallPolicyResponse.NumberOfAssociations");
    const wchar_t *UpdateToken = jResp.stringOf(L"UpdateToken");
    int i = 0;
    int count_i = jResp.SizeOfArray(L"FirewallPolicy.StatefulDefaultActions");
    while (i < count_i) {
        jResp.put_I(i);
        strVal = jResp.stringOf(L"FirewallPolicy.StatefulDefaultActions[i]");
        i = i + 1;
    }

    i = 0;
    count_i = jResp.SizeOfArray(L"FirewallPolicy.StatefulRuleGroupReferences");
    while (i < count_i) {
        jResp.put_I(i);
        Action = jResp.stringOf(L"FirewallPolicy.StatefulRuleGroupReferences[i].Override.Action");
        Priority = jResp.IntOf(L"FirewallPolicy.StatefulRuleGroupReferences[i].Priority");
        ResourceArn = jResp.stringOf(L"FirewallPolicy.StatefulRuleGroupReferences[i].ResourceArn");
        i = i + 1;
    }

    i = 0;
    count_i = jResp.SizeOfArray(L"FirewallPolicy.StatelessCustomActions");
    while (i < count_i) {
        jResp.put_I(i);
        ActionName = jResp.stringOf(L"FirewallPolicy.StatelessCustomActions[i].ActionName");
        j = 0;
        count_j = jResp.SizeOfArray(L"FirewallPolicy.StatelessCustomActions[i].ActionDefinition.PublishMetricAction.Dimensions");
        while (j < count_j) {
            jResp.put_J(j);
            Value = jResp.stringOf(L"FirewallPolicy.StatelessCustomActions[i].ActionDefinition.PublishMetricAction.Dimensions[j].Value");
            j = j + 1;
        }

        i = i + 1;
    }

    i = 0;
    count_i = jResp.SizeOfArray(L"FirewallPolicy.StatelessDefaultActions");
    while (i < count_i) {
        jResp.put_I(i);
        strVal = jResp.stringOf(L"FirewallPolicy.StatelessDefaultActions[i]");
        i = i + 1;
    }

    i = 0;
    count_i = jResp.SizeOfArray(L"FirewallPolicy.StatelessFragmentDefaultActions");
    while (i < count_i) {
        jResp.put_I(i);
        strVal = jResp.stringOf(L"FirewallPolicy.StatelessFragmentDefaultActions[i]");
        i = i + 1;
    }

    i = 0;
    count_i = jResp.SizeOfArray(L"FirewallPolicy.StatelessRuleGroupReferences");
    while (i < count_i) {
        jResp.put_I(i);
        Priority = jResp.IntOf(L"FirewallPolicy.StatelessRuleGroupReferences[i].Priority");
        ResourceArn = jResp.stringOf(L"FirewallPolicy.StatelessRuleGroupReferences[i].ResourceArn");
        i = i + 1;
    }

    i = 0;
    count_i = jResp.SizeOfArray(L"FirewallPolicyResponse.Tags");
    while (i < count_i) {
        jResp.put_I(i);
        Key = jResp.stringOf(L"FirewallPolicyResponse.Tags[i].Key");
        Value = jResp.stringOf(L"FirewallPolicyResponse.Tags[i].Value");
        i = i + 1;
    }

    // A sample JSON response body parsed by the above code:

    // {
    //   "FirewallPolicy": {
    //     "StatefulDefaultActions": [
    //       "string"
    //     ],
    //     "StatefulEngineOptions": {
    //       "RuleOrder": "string"
    //     },
    //     "StatefulRuleGroupReferences": [
    //       {
    //         "Override": {
    //           "Action": "string"
    //         },
    //         "Priority": number,
    //         "ResourceArn": "string"
    //       }
    //     ],
    //     "StatelessCustomActions": [
    //       {
    //         "ActionDefinition": {
    //           "PublishMetricAction": {
    //             "Dimensions": [
    //               {
    //                 "Value": "string"
    //               }
    //             ]
    //           }
    //         },
    //         "ActionName": "string"
    //       }
    //     ],
    //     "StatelessDefaultActions": [
    //       "string"
    //     ],
    //     "StatelessFragmentDefaultActions": [
    //       "string"
    //     ],
    //     "StatelessRuleGroupReferences": [
    //       {
    //         "Priority": number,
    //         "ResourceArn": "string"
    //       }
    //     ]
    //   },
    //   "FirewallPolicyResponse": {
    //     "ConsumedStatefulRuleCapacity": number,
    //     "ConsumedStatelessRuleCapacity": number,
    //     "Description": "string",
    //     "EncryptionConfiguration": {
    //       "KeyId": "string",
    //       "Type": "string"
    //     },
    //     "FirewallPolicyArn": "string",
    //     "FirewallPolicyId": "string",
    //     "FirewallPolicyName": "string",
    //     "FirewallPolicyStatus": "string",
    //     "LastModifiedTime": number,
    //     "NumberOfAssociations": number,
    //     "Tags": [
    //       {
    //         "Key": "string",
    //         "Value": "string"
    //       }
    //     ]
    //   },
    //   "UpdateToken": "string"
    // }
    }