public List getTags()

in aws-acmpca-certificateauthority/src/main/java/software/amazon/acmpca/certificateauthority/AcmPcaClient.java [194:204]


    public List<Tag> getTags(final ResourceModel model) {
        val tags = model.getTags();

        if (Objects.isNull(tags)) {
            return Collections.emptyList();
        }

        return tags.stream()
            .map(tag -> mapper.map(tag, Tag.class))
            .collect(Collectors.toList());
    }