aws-route53recoverycontrol-safetyrule/src/main/java/software/amazon/route53recoverycontrol/safetyrule/Translator.java [305:312]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  static List<Tag> buildCreateClusterRequestTags(List<software.amazon.route53recoverycontrol.safetyrule.Tag> tags) {
    return tags.stream()
        .map(modelTag -> Tag.builder()
            .key(modelTag.getKey())
            .value(modelTag.getValue())
            .build())
        .collect(Collectors.toList());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-route53recoverycontrol-cluster/src/main/java/software/amazon/route53recoverycontrol/cluster/Translator.java [80:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  static List<Tag> buildCreateClusterRequestTags(List<software.amazon.route53recoverycontrol.cluster.Tag> tags) {
    return tags.stream()
        .map(modelTag -> Tag.builder()
            .key(modelTag.getKey())
            .value(modelTag.getValue())
            .build())
        .collect(Collectors.toList());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-route53recoverycontrol-controlpanel/src/main/java/software/amazon/route53recoverycontrol/controlpanel/Translator.java [115:122]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  static List<Tag> buildCreateControlPanelRequestTags(List<software.amazon.route53recoverycontrol.controlpanel.Tag> tags) {
    return tags.stream()
        .map(modelTag -> Tag.builder()
            .key(modelTag.getKey())
            .value(modelTag.getValue())
            .build())
        .collect(Collectors.toList());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



