Chilkat Online Tools

GetRuleGroup C Example

AWS WAFV2

#include <C_CkRest.h>
#include <C_CkAuthAws.h>
#include <C_CkJsonObject.h>
#include <C_CkStringBuilder.h>

void ChilkatSample(void)
    {
    HCkRest rest;
    BOOL success;
    HCkAuthAws authAws;
    HCkJsonObject json;
    HCkStringBuilder sbRequestBody;
    HCkStringBuilder sbResponseBody;
    int respStatusCode;
    HCkJsonObject jResp;
    const char *CustomResponseBodyKey;
    int ResponseCode;
    int ImmunityTime;
    int Priority;
    const char *OversizeHandling;
    const char *MatchScope;
    const char *CookiesOversizeHandling;
    const char *HeadersMatchScope;
    const char *HeadersOversizeHandling;
    const char *InvalidFallbackBehavior;
    const char *JsonBodyMatchScope;
    const char *JsonBodyOversizeHandling;
    const char *SingleHeaderName;
    const char *SingleQueryArgumentName;
    const char *PositionalConstraint;
    int SearchString;
    const char *FallbackBehavior;
    const char *HeaderName;
    const char *IPSetReferenceStatementARN;
    const char *IPSetForwardedIPConfigFallbackBehavior;
    const char *IPSetForwardedIPConfigHeaderName;
    const char *Position;
    const char *Key;
    const char *Scope;
    const char *ManagedRuleGroupStatementName;
    const char *ScopeDownStatement;
    const char *VendorName;
    const char *Version;
    const char *Statement;
    const char *AggregateKeyType;
    const char *ForwardedIPConfigFallbackBehavior;
    const char *ForwardedIPConfigHeaderName;
    int Limit;
    const char *RateBasedStatementScopeDownStatement;
    const char *BodyOversizeHandling;
    const char *CookiesMatchScope;
    const char *JsonBodyInvalidFallbackBehavior;
    const char *RegexString;
    const char *RegexPatternSetReferenceStatementARN;
    const char *RuleGroupReferenceStatementARN;
    const char *ComparisonOperator;
    int Size;
    int VisibilityConfigCloudWatchMetricsEnabled;
    const char *VisibilityConfigMetricName;
    int VisibilityConfigSampledRequestsEnabled;
    int j;
    int count_j;
    const char *Value;
    const char *strVal;
    const char *v_Type;
    const char *LoginPath;
    const char *Identifier;
    const char *PayloadType;
    const char *UsernameFieldIdentifier;
    const char *LockToken;
    const char *ARN;
    int Capacity;
    const char *Content;
    const char *ContentType;
    const char *Description;
    const char *Id;
    const char *LabelNamespace;
    const char *Name;
    int CloudWatchMetricsEnabled;
    const char *MetricName;
    int SampledRequestsEnabled;
    int i;
    int count_i;

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

    rest = CkRest_Create();

    authAws = CkAuthAws_Create();
    CkAuthAws_putAccessKey(authAws,"AWS_ACCESS_KEY");
    CkAuthAws_putSecretKey(authAws,"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.)
    CkAuthAws_putRegion(authAws,"us-west-2");
    CkAuthAws_putServiceName(authAws,"wafv2");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    CkRest_SetAuthAws(rest,authAws);

    // URL: https://wafv2.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = CkRest_Connect(rest,"wafv2.us-west-2.amazonaws.com",443,TRUE,TRUE);
    if (success != TRUE) {
        printf("ConnectFailReason: %d\n",CkRest_getConnectFailReason(rest));
        printf("%s\n",CkRest_lastErrorText(rest));
        CkRest_Dispose(rest);
        CkAuthAws_Dispose(authAws);
        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

    json = CkJsonObject_Create();
    CkJsonObject_UpdateString(json,"ARN","string");
    CkJsonObject_UpdateString(json,"Id","string");
    CkJsonObject_UpdateString(json,"Name","string");
    CkJsonObject_UpdateString(json,"Scope","string");

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

    // {
    //   "ARN": "string",
    //   "Id": "string",
    //   "Name": "string",
    //   "Scope": "string"
    // }

    CkRest_AddHeader(rest,"Content-Type","application/x-amz-json-1.1");
    CkRest_AddHeader(rest,"X-Amz-Target","AWSWAF_20190729.GetRuleGroup");

    sbRequestBody = CkStringBuilder_Create();
    CkJsonObject_EmitSb(json,sbRequestBody);
    sbResponseBody = CkStringBuilder_Create();
    success = CkRest_FullRequestSb(rest,"POST","/",sbRequestBody,sbResponseBody);
    if (success != TRUE) {
        printf("%s\n",CkRest_lastErrorText(rest));
        CkRest_Dispose(rest);
        CkAuthAws_Dispose(authAws);
        CkJsonObject_Dispose(json);
        CkStringBuilder_Dispose(sbRequestBody);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    respStatusCode = CkRest_getResponseStatusCode(rest);
    printf("response status code = %d\n",respStatusCode);
    if (respStatusCode != 200) {
        printf("Response Header:\n");
        printf("%s\n",CkRest_responseHeader(rest));
        printf("Response Body:\n");
        printf("%s\n",CkStringBuilder_getAsString(sbResponseBody));
        CkRest_Dispose(rest);
        CkAuthAws_Dispose(authAws);
        CkJsonObject_Dispose(json);
        CkStringBuilder_Dispose(sbRequestBody);
        CkStringBuilder_Dispose(sbResponseBody);
        return;
    }

    jResp = CkJsonObject_Create();
    CkJsonObject_LoadSb(jResp,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.

    LockToken = CkJsonObject_stringOf(jResp,"LockToken");
    ARN = CkJsonObject_stringOf(jResp,"RuleGroup.ARN");
    Capacity = CkJsonObject_IntOf(jResp,"RuleGroup.Capacity");
    Content = CkJsonObject_stringOf(jResp,"RuleGroup.CustomResponseBodies.string.Content");
    ContentType = CkJsonObject_stringOf(jResp,"RuleGroup.CustomResponseBodies.string.ContentType");
    Description = CkJsonObject_stringOf(jResp,"RuleGroup.Description");
    Id = CkJsonObject_stringOf(jResp,"RuleGroup.Id");
    LabelNamespace = CkJsonObject_stringOf(jResp,"RuleGroup.LabelNamespace");
    Name = CkJsonObject_stringOf(jResp,"RuleGroup.Name");
    CloudWatchMetricsEnabled = CkJsonObject_IntOf(jResp,"RuleGroup.VisibilityConfig.CloudWatchMetricsEnabled");
    MetricName = CkJsonObject_stringOf(jResp,"RuleGroup.VisibilityConfig.MetricName");
    SampledRequestsEnabled = CkJsonObject_IntOf(jResp,"RuleGroup.VisibilityConfig.SampledRequestsEnabled");
    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"RuleGroup.AvailableLabels");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        Name = CkJsonObject_stringOf(jResp,"RuleGroup.AvailableLabels[i].Name");
        i = i + 1;
    }

    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"RuleGroup.ConsumedLabels");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        Name = CkJsonObject_stringOf(jResp,"RuleGroup.ConsumedLabels[i].Name");
        i = i + 1;
    }

    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        CustomResponseBodyKey = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Action.Block.CustomResponse.CustomResponseBodyKey");
        ResponseCode = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Action.Block.CustomResponse.ResponseCode");
        ImmunityTime = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].CaptchaConfig.ImmunityTimeProperty.ImmunityTime");
        Name = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Name");
        Priority = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Priority");
        OversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Body.OversizeHandling");
        MatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Cookies.MatchScope");
        CookiesOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Cookies.OversizeHandling");
        HeadersMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Headers.MatchScope");
        HeadersOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Headers.OversizeHandling");
        InvalidFallbackBehavior = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.JsonBody.InvalidFallbackBehavior");
        JsonBodyMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.JsonBody.MatchScope");
        JsonBodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.JsonBody.OversizeHandling");
        SingleHeaderName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.SingleHeader.Name");
        SingleQueryArgumentName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.SingleQueryArgument.Name");
        PositionalConstraint = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.PositionalConstraint");
        SearchString = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.SearchString");
        FallbackBehavior = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.GeoMatchStatement.ForwardedIPConfig.FallbackBehavior");
        HeaderName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.GeoMatchStatement.ForwardedIPConfig.HeaderName");
        IPSetReferenceStatementARN = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.IPSetReferenceStatement.ARN");
        IPSetForwardedIPConfigFallbackBehavior = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.IPSetReferenceStatement.IPSetForwardedIPConfig.FallbackBehavior");
        IPSetForwardedIPConfigHeaderName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.IPSetReferenceStatement.IPSetForwardedIPConfig.HeaderName");
        Position = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.IPSetReferenceStatement.IPSetForwardedIPConfig.Position");
        Key = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.LabelMatchStatement.Key");
        Scope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.LabelMatchStatement.Scope");
        ManagedRuleGroupStatementName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.Name");
        ScopeDownStatement = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.ScopeDownStatement");
        VendorName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.VendorName");
        Version = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.Version");
        Statement = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.NotStatement.Statement");
        AggregateKeyType = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RateBasedStatement.AggregateKeyType");
        ForwardedIPConfigFallbackBehavior = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RateBasedStatement.ForwardedIPConfig.FallbackBehavior");
        ForwardedIPConfigHeaderName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RateBasedStatement.ForwardedIPConfig.HeaderName");
        Limit = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Statement.RateBasedStatement.Limit");
        RateBasedStatementScopeDownStatement = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RateBasedStatement.ScopeDownStatement");
        BodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Body.OversizeHandling");
        CookiesMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Cookies.MatchScope");
        CookiesOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Cookies.OversizeHandling");
        HeadersMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Headers.MatchScope");
        HeadersOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Headers.OversizeHandling");
        JsonBodyInvalidFallbackBehavior = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.JsonBody.InvalidFallbackBehavior");
        JsonBodyMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.JsonBody.MatchScope");
        JsonBodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.JsonBody.OversizeHandling");
        SingleHeaderName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.SingleHeader.Name");
        SingleQueryArgumentName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.SingleQueryArgument.Name");
        RegexString = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.RegexString");
        RegexPatternSetReferenceStatementARN = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.ARN");
        BodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Body.OversizeHandling");
        CookiesMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Cookies.MatchScope");
        CookiesOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Cookies.OversizeHandling");
        HeadersMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Headers.MatchScope");
        HeadersOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Headers.OversizeHandling");
        JsonBodyInvalidFallbackBehavior = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.JsonBody.InvalidFallbackBehavior");
        JsonBodyMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.JsonBody.MatchScope");
        JsonBodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.JsonBody.OversizeHandling");
        SingleHeaderName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.SingleHeader.Name");
        SingleQueryArgumentName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.SingleQueryArgument.Name");
        RuleGroupReferenceStatementARN = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RuleGroupReferenceStatement.ARN");
        ComparisonOperator = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.ComparisonOperator");
        BodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Body.OversizeHandling");
        CookiesMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Cookies.MatchScope");
        CookiesOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Cookies.OversizeHandling");
        HeadersMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Headers.MatchScope");
        HeadersOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Headers.OversizeHandling");
        JsonBodyInvalidFallbackBehavior = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.JsonBody.InvalidFallbackBehavior");
        JsonBodyMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.JsonBody.MatchScope");
        JsonBodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.JsonBody.OversizeHandling");
        SingleHeaderName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.SingleHeader.Name");
        SingleQueryArgumentName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.SingleQueryArgument.Name");
        Size = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.Size");
        BodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Body.OversizeHandling");
        CookiesMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Cookies.MatchScope");
        CookiesOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Cookies.OversizeHandling");
        HeadersMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Headers.MatchScope");
        HeadersOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Headers.OversizeHandling");
        JsonBodyInvalidFallbackBehavior = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.JsonBody.InvalidFallbackBehavior");
        JsonBodyMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.JsonBody.MatchScope");
        JsonBodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.JsonBody.OversizeHandling");
        SingleHeaderName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.SingleHeader.Name");
        SingleQueryArgumentName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.SingleQueryArgument.Name");
        BodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Body.OversizeHandling");
        CookiesMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Cookies.MatchScope");
        CookiesOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Cookies.OversizeHandling");
        HeadersMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Headers.MatchScope");
        HeadersOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Headers.OversizeHandling");
        JsonBodyInvalidFallbackBehavior = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.JsonBody.InvalidFallbackBehavior");
        JsonBodyMatchScope = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.JsonBody.MatchScope");
        JsonBodyOversizeHandling = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.JsonBody.OversizeHandling");
        SingleHeaderName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.SingleHeader.Name");
        SingleQueryArgumentName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.SingleQueryArgument.Name");
        VisibilityConfigCloudWatchMetricsEnabled = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].VisibilityConfig.CloudWatchMetricsEnabled");
        VisibilityConfigMetricName = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].VisibilityConfig.MetricName");
        VisibilityConfigSampledRequestsEnabled = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].VisibilityConfig.SampledRequestsEnabled");
        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Action.Allow.CustomRequestHandling.InsertHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Name = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Action.Allow.CustomRequestHandling.InsertHeaders[j].Name");
            Value = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Action.Allow.CustomRequestHandling.InsertHeaders[j].Value");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Action.Block.CustomResponse.ResponseHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Name = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Action.Block.CustomResponse.ResponseHeaders[j].Name");
            Value = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Action.Block.CustomResponse.ResponseHeaders[j].Value");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Action.Captcha.CustomRequestHandling.InsertHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Name = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Action.Captcha.CustomRequestHandling.InsertHeaders[j].Name");
            Value = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Action.Captcha.CustomRequestHandling.InsertHeaders[j].Value");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Action.Count.CustomRequestHandling.InsertHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Name = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Action.Count.CustomRequestHandling.InsertHeaders[j].Name");
            Value = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Action.Count.CustomRequestHandling.InsertHeaders[j].Value");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].OverrideAction.Count.CustomRequestHandling.InsertHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Name = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].OverrideAction.Count.CustomRequestHandling.InsertHeaders[j].Name");
            Value = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].OverrideAction.Count.CustomRequestHandling.InsertHeaders[j].Value");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].RuleLabels");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Name = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].RuleLabels[j].Name");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.AndStatement.Statements");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.AndStatement.Statements[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.TextTransformations");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Priority = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.TextTransformations[j].Priority");
            v_Type = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ByteMatchStatement.TextTransformations[j].Type");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.GeoMatchStatement.CountryCodes");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.GeoMatchStatement.CountryCodes[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.ExcludedRules");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Name = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.ExcludedRules[j].Name");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.ManagedRuleGroupConfigs");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            LoginPath = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.ManagedRuleGroupConfigs[j].LoginPath");
            Identifier = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.ManagedRuleGroupConfigs[j].PasswordField.Identifier");
            PayloadType = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.ManagedRuleGroupConfigs[j].PayloadType");
            UsernameFieldIdentifier = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.ManagedRuleGroupStatement.ManagedRuleGroupConfigs[j].UsernameField.Identifier");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.OrStatement.Statements");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.OrStatement.Statements[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.TextTransformations");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Priority = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.TextTransformations[j].Priority");
            v_Type = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexMatchStatement.TextTransformations[j].Type");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.TextTransformations");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Priority = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.TextTransformations[j].Priority");
            v_Type = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RegexPatternSetReferenceStatement.TextTransformations[j].Type");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.RuleGroupReferenceStatement.ExcludedRules");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Name = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.RuleGroupReferenceStatement.ExcludedRules[j].Name");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.TextTransformations");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Priority = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.TextTransformations[j].Priority");
            v_Type = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SizeConstraintStatement.TextTransformations[j].Type");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.TextTransformations");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Priority = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.TextTransformations[j].Priority");
            v_Type = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.SqliMatchStatement.TextTransformations[j].Type");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Cookies.MatchPattern.ExcludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Cookies.MatchPattern.IncludedCookies[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Headers.MatchPattern.ExcludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.Headers.MatchPattern.IncludedHeaders[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            strVal = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.FieldToMatch.JsonBody.MatchPattern.IncludedPaths[j]");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.TextTransformations");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            Priority = CkJsonObject_IntOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.TextTransformations[j].Priority");
            v_Type = CkJsonObject_stringOf(jResp,"RuleGroup.Rules[i].Statement.XssMatchStatement.TextTransformations[j].Type");
            j = j + 1;
        }

        i = i + 1;
    }

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

    // {
    //   "LockToken": "string",
    //   "RuleGroup": {
    //     "ARN": "string",
    //     "AvailableLabels": [
    //       {
    //         "Name": "string"
    //       }
    //     ],
    //     "Capacity": number,
    //     "ConsumedLabels": [
    //       {
    //         "Name": "string"
    //       }
    //     ],
    //     "CustomResponseBodies": {
    //       "string": {
    //         "Content": "string",
    //         "ContentType": "string"
    //       }
    //     },
    //     "Description": "string",
    //     "Id": "string",
    //     "LabelNamespace": "string",
    //     "Name": "string",
    //     "Rules": [
    //       {
    //         "Action": {
    //           "Allow": {
    //             "CustomRequestHandling": {
    //               "InsertHeaders": [
    //                 {
    //                   "Name": "string",
    //                   "Value": "string"
    //                 }
    //               ]
    //             }
    //           },
    //           "Block": {
    //             "CustomResponse": {
    //               "CustomResponseBodyKey": "string",
    //               "ResponseCode": number,
    //               "ResponseHeaders": [
    //                 {
    //                   "Name": "string",
    //                   "Value": "string"
    //                 }
    //               ]
    //             }
    //           },
    //           "Captcha": {
    //             "CustomRequestHandling": {
    //               "InsertHeaders": [
    //                 {
    //                   "Name": "string",
    //                   "Value": "string"
    //                 }
    //               ]
    //             }
    //           },
    //           "Count": {
    //             "CustomRequestHandling": {
    //               "InsertHeaders": [
    //                 {
    //                   "Name": "string",
    //                   "Value": "string"
    //                 }
    //               ]
    //             }
    //           }
    //         },
    //         "CaptchaConfig": {
    //           "ImmunityTimeProperty": {
    //             "ImmunityTime": number
    //           }
    //         },
    //         "Name": "string",
    //         "OverrideAction": {
    //           "Count": {
    //             "CustomRequestHandling": {
    //               "InsertHeaders": [
    //                 {
    //                   "Name": "string",
    //                   "Value": "string"
    //                 }
    //               ]
    //             }
    //           },
    //           "None": {}
    //         },
    //         "Priority": number,
    //         "RuleLabels": [
    //           {
    //             "Name": "string"
    //           }
    //         ],
    //         "Statement": {
    //           "AndStatement": {
    //             "Statements": [
    //               "Statement"
    //             ]
    //           },
    //           "ByteMatchStatement": {
    //             "FieldToMatch": {
    //               "AllQueryArguments": {},
    //               "Body": {
    //                 "OversizeHandling": "string"
    //               },
    //               "Cookies": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedCookies": [
    //                     "string"
    //                   ],
    //                   "IncludedCookies": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Headers": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedHeaders": [
    //                     "string"
    //                   ],
    //                   "IncludedHeaders": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "JsonBody": {
    //                 "InvalidFallbackBehavior": "string",
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "IncludedPaths": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Method": {},
    //               "QueryString": {},
    //               "SingleHeader": {
    //                 "Name": "string"
    //               },
    //               "SingleQueryArgument": {
    //                 "Name": "string"
    //               },
    //               "UriPath": {}
    //             },
    //             "PositionalConstraint": "string",
    //             "SearchString": blob,
    //             "TextTransformations": [
    //               {
    //                 "Priority": number,
    //                 "Type": "string"
    //               }
    //             ]
    //           },
    //           "GeoMatchStatement": {
    //             "CountryCodes": [
    //               "string"
    //             ],
    //             "ForwardedIPConfig": {
    //               "FallbackBehavior": "string",
    //               "HeaderName": "string"
    //             }
    //           },
    //           "IPSetReferenceStatement": {
    //             "ARN": "string",
    //             "IPSetForwardedIPConfig": {
    //               "FallbackBehavior": "string",
    //               "HeaderName": "string",
    //               "Position": "string"
    //             }
    //           },
    //           "LabelMatchStatement": {
    //             "Key": "string",
    //             "Scope": "string"
    //           },
    //           "ManagedRuleGroupStatement": {
    //             "ExcludedRules": [
    //               {
    //                 "Name": "string"
    //               }
    //             ],
    //             "ManagedRuleGroupConfigs": [
    //               {
    //                 "LoginPath": "string",
    //                 "PasswordField": {
    //                   "Identifier": "string"
    //                 },
    //                 "PayloadType": "string",
    //                 "UsernameField": {
    //                   "Identifier": "string"
    //                 }
    //               }
    //             ],
    //             "Name": "string",
    //             "ScopeDownStatement": "Statement",
    //             "VendorName": "string",
    //             "Version": "string"
    //           },
    //           "NotStatement": {
    //             "Statement": "Statement"
    //           },
    //           "OrStatement": {
    //             "Statements": [
    //               "Statement"
    //             ]
    //           },
    //           "RateBasedStatement": {
    //             "AggregateKeyType": "string",
    //             "ForwardedIPConfig": {
    //               "FallbackBehavior": "string",
    //               "HeaderName": "string"
    //             },
    //             "Limit": number,
    //             "ScopeDownStatement": "Statement"
    //           },
    //           "RegexMatchStatement": {
    //             "FieldToMatch": {
    //               "AllQueryArguments": {},
    //               "Body": {
    //                 "OversizeHandling": "string"
    //               },
    //               "Cookies": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedCookies": [
    //                     "string"
    //                   ],
    //                   "IncludedCookies": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Headers": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedHeaders": [
    //                     "string"
    //                   ],
    //                   "IncludedHeaders": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "JsonBody": {
    //                 "InvalidFallbackBehavior": "string",
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "IncludedPaths": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Method": {},
    //               "QueryString": {},
    //               "SingleHeader": {
    //                 "Name": "string"
    //               },
    //               "SingleQueryArgument": {
    //                 "Name": "string"
    //               },
    //               "UriPath": {}
    //             },
    //             "RegexString": "string",
    //             "TextTransformations": [
    //               {
    //                 "Priority": number,
    //                 "Type": "string"
    //               }
    //             ]
    //           },
    //           "RegexPatternSetReferenceStatement": {
    //             "ARN": "string",
    //             "FieldToMatch": {
    //               "AllQueryArguments": {},
    //               "Body": {
    //                 "OversizeHandling": "string"
    //               },
    //               "Cookies": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedCookies": [
    //                     "string"
    //                   ],
    //                   "IncludedCookies": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Headers": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedHeaders": [
    //                     "string"
    //                   ],
    //                   "IncludedHeaders": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "JsonBody": {
    //                 "InvalidFallbackBehavior": "string",
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "IncludedPaths": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Method": {},
    //               "QueryString": {},
    //               "SingleHeader": {
    //                 "Name": "string"
    //               },
    //               "SingleQueryArgument": {
    //                 "Name": "string"
    //               },
    //               "UriPath": {}
    //             },
    //             "TextTransformations": [
    //               {
    //                 "Priority": number,
    //                 "Type": "string"
    //               }
    //             ]
    //           },
    //           "RuleGroupReferenceStatement": {
    //             "ARN": "string",
    //             "ExcludedRules": [
    //               {
    //                 "Name": "string"
    //               }
    //             ]
    //           },
    //           "SizeConstraintStatement": {
    //             "ComparisonOperator": "string",
    //             "FieldToMatch": {
    //               "AllQueryArguments": {},
    //               "Body": {
    //                 "OversizeHandling": "string"
    //               },
    //               "Cookies": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedCookies": [
    //                     "string"
    //                   ],
    //                   "IncludedCookies": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Headers": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedHeaders": [
    //                     "string"
    //                   ],
    //                   "IncludedHeaders": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "JsonBody": {
    //                 "InvalidFallbackBehavior": "string",
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "IncludedPaths": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Method": {},
    //               "QueryString": {},
    //               "SingleHeader": {
    //                 "Name": "string"
    //               },
    //               "SingleQueryArgument": {
    //                 "Name": "string"
    //               },
    //               "UriPath": {}
    //             },
    //             "Size": number,
    //             "TextTransformations": [
    //               {
    //                 "Priority": number,
    //                 "Type": "string"
    //               }
    //             ]
    //           },
    //           "SqliMatchStatement": {
    //             "FieldToMatch": {
    //               "AllQueryArguments": {},
    //               "Body": {
    //                 "OversizeHandling": "string"
    //               },
    //               "Cookies": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedCookies": [
    //                     "string"
    //                   ],
    //                   "IncludedCookies": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Headers": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedHeaders": [
    //                     "string"
    //                   ],
    //                   "IncludedHeaders": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "JsonBody": {
    //                 "InvalidFallbackBehavior": "string",
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "IncludedPaths": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Method": {},
    //               "QueryString": {},
    //               "SingleHeader": {
    //                 "Name": "string"
    //               },
    //               "SingleQueryArgument": {
    //                 "Name": "string"
    //               },
    //               "UriPath": {}
    //             },
    //             "TextTransformations": [
    //               {
    //                 "Priority": number,
    //                 "Type": "string"
    //               }
    //             ]
    //           },
    //           "XssMatchStatement": {
    //             "FieldToMatch": {
    //               "AllQueryArguments": {},
    //               "Body": {
    //                 "OversizeHandling": "string"
    //               },
    //               "Cookies": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedCookies": [
    //                     "string"
    //                   ],
    //                   "IncludedCookies": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Headers": {
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "ExcludedHeaders": [
    //                     "string"
    //                   ],
    //                   "IncludedHeaders": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "JsonBody": {
    //                 "InvalidFallbackBehavior": "string",
    //                 "MatchPattern": {
    //                   "All": {},
    //                   "IncludedPaths": [
    //                     "string"
    //                   ]
    //                 },
    //                 "MatchScope": "string",
    //                 "OversizeHandling": "string"
    //               },
    //               "Method": {},
    //               "QueryString": {},
    //               "SingleHeader": {
    //                 "Name": "string"
    //               },
    //               "SingleQueryArgument": {
    //                 "Name": "string"
    //               },
    //               "UriPath": {}
    //             },
    //             "TextTransformations": [
    //               {
    //                 "Priority": number,
    //                 "Type": "string"
    //               }
    //             ]
    //           }
    //         },
    //         "VisibilityConfig": {
    //           "CloudWatchMetricsEnabled": boolean,
    //           "MetricName": "string",
    //           "SampledRequestsEnabled": boolean
    //         }
    //       }
    //     ],
    //     "VisibilityConfig": {
    //       "CloudWatchMetricsEnabled": boolean,
    //       "MetricName": "string",
    //       "SampledRequestsEnabled": boolean
    //     }
    //   }
    // }


    CkRest_Dispose(rest);
    CkAuthAws_Dispose(authAws);
    CkJsonObject_Dispose(json);
    CkStringBuilder_Dispose(sbRequestBody);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonObject_Dispose(jResp);

    }