aws-wafv2-rulegroup/src/main/java/com/amazonaws/wafv2/rulegroup/converters/StatementCommonsConverter.java [81:134]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    default SdkBytes convertSearchString(String value) {
        return SdkBytes.fromUtf8String(value);
    }

    default String invertSearchString(SdkBytes value) {
        return value.asUtf8String();
    }

    default QueryString convertQueryString(Map<String, Object> value) {
        return QueryString.builder().build();
    }

    default Map<String, Object> invertQueryString(QueryString value) {
        return (value == null) ? null : ImmutableMap.of();
    }

    default AllQueryArguments convertAllQueryArguments(Map<String, Object> value) {
        return AllQueryArguments.builder().build();
    }

    default Map<String, Object> invertAllQueryArguments(AllQueryArguments value) {
        return (value == null) ? null : ImmutableMap.of();
    }

    default UriPath convertUriPath(Map<String, Object> value) {
        return UriPath.builder().build();
    }

    default Map<String, Object> invertUriPath(UriPath value) {
        return (value == null) ? null : ImmutableMap.of();
    }

    default Body convertBody(Map<String, Object> value) {
        return Body.builder().build();
    }

    default Map<String, Object> invertBody(Body value) {
        return (value == null) ? null : ImmutableMap.of();
    }

    default Method convertMethod(Map<String, Object> value) {
        return Method.builder().build();
    }

    default Map<String, Object> invertMethod(Method value) {
        return (value == null) ? null : ImmutableMap.of();
    }

    default All convertJsonMatchAll(Map<String, Object> value) {
        return All.builder().build();
    }

    default Map<String, Object> invertJsonMatchAll(All value) {
        return (value == null) ? null : ImmutableMap.of();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-wafv2-webacl/src/main/java/com/amazonaws/wafv2/webacl/converters/StatementCommonsConverter.java [122:175]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    default SdkBytes convertSearchString(String value) {
        return SdkBytes.fromUtf8String(value);
    }

    default String invertSearchString(SdkBytes value) {
        return value.asUtf8String();
    }

    default QueryString convertQueryString(Map<String, Object> value) {
        return QueryString.builder().build();
    }

    default Map<String, Object> invertQueryString(QueryString value) {
        return (value == null) ? null : ImmutableMap.of();
    }

    default AllQueryArguments convertAllQueryArguments(Map<String, Object> value) {
        return AllQueryArguments.builder().build();
    }

    default Map<String, Object> invertAllQueryArguments(AllQueryArguments value) {
        return (value == null) ? null : ImmutableMap.of();
    }

    default UriPath convertUriPath(Map<String, Object> value) {
        return UriPath.builder().build();
    }

    default Map<String, Object> invertUriPath(UriPath value) {
        return (value == null) ? null : ImmutableMap.of();
    }

    default Body convertBody(Map<String, Object> value) {
        return Body.builder().build();
    }

    default Map<String, Object> invertBody(Body value) {
        return (value == null) ? null : ImmutableMap.of();
    }

    default Method convertMethod(Map<String, Object> value) {
        return Method.builder().build();
    }

    default Map<String, Object> invertMethod(Method value) {
        return (value == null) ? null : ImmutableMap.of();
    }

    default All convertJsonMatchAll(Map<String, Object> value) {
        return All.builder().build();
    }

    default Map<String, Object> invertJsonMatchAll(All value) {
        return (value == null) ? null : ImmutableMap.of();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



