aws-memorydb-cluster/src/main/java/software/amazon/memorydb/cluster/Translator.java [234:241]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static UntagResourceRequest translateToUntagResourceRequest(String arn, Set<software.amazon.memorydb.cluster.Tag> tagsToRemove) {
        return UntagResourceRequest.builder()
                .resourceArn(arn)
                .tagKeys(tagsToRemove != null ? tagsToRemove.stream()
                        .map(tag -> tag.getKey())
                        .collect(Collectors.toList()) : null)
                .build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-memorydb-parametergroup/src/main/java/software/amazon/memorydb/parametergroup/Translator.java [183:190]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static UntagResourceRequest translateToUntagResourceRequest(String arn, Set<software.amazon.memorydb.parametergroup.Tag> tagsToRemove) {
    return UntagResourceRequest.builder()
            .resourceArn(arn)
            .tagKeys(tagsToRemove != null ? tagsToRemove.stream()
                    .map(tag -> tag.getKey())
                    .collect(Collectors.toList()) : null)
            .build();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-memorydb-subnetgroup/src/main/java/software/amazon/memorydb/subnetgroup/Translator.java [191:198]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static UntagResourceRequest translateToUntagResourceRequest(String arn, Set<software.amazon.memorydb.subnetgroup.Tag> tagsToRemove) {
    return UntagResourceRequest.builder()
            .resourceArn(arn)
            .tagKeys(tagsToRemove != null ? tagsToRemove.stream()
                    .map(tag -> tag.getKey())
                    .collect(Collectors.toList()) : null)
            .build();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



