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



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



